From 04f558b36fce9e38979fd786d1fffb58f380eb92 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 23 Mar 2024 16:28:32 -0400 Subject: [PATCH 001/165] Switched to PCAN --- Bolt_Dash/imports/Backend/can.cpp | 23 ++++++++++------------- Bolt_Dash/imports/Backend/can.h | 14 +++++++------- 2 files changed, 17 insertions(+), 20 deletions(-) diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index ec60c12..71d7ddf 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -51,31 +51,28 @@ namespace can { m.lock(); switch (frame.can_id) { case can_ids.aux_battery: - data.aux_voltage = frame.data[0]; - data.aux_percent = frame.data[1]; + data.aux_voltage = frame.data[0] + (frame.data[1] << 8); + data.aux_percent = data.aux_voltage / 25; break; case can_ids.main_battery: - data.pack_state_of_charge = frame.data[0]; + data.pack_state_of_charge = frame.data[4]; break; case can_ids.main_pack_temp: - data.high_cell_temp = frame.data[0]; - data.low_cell_temp = frame.data[1]; + data.high_cell_temp = frame.data[0] + frame.data[1] << 8; + data.low_cell_temp = frame.data[3] + frame.data[4] << 8; break; case can_ids.motor_temp: - data.motor_temperature = frame.data[0] << 8; - data.motor_temperature += frame.data[1]; + data.motor_temperature = frame.data[4] + frame.data[5] << 8; break; case can_ids.bms_temp: - data.bms_temperature = frame.data[0] << 8; - data.bms_temperature += frame.data[1]; + data.bms_temperature = frame.data[4] + frame.data[5] << 8; break; case can_ids.rpm: - data.motor_speed = frame.data[0] << 8; - data.motor_speed += frame.data[1]; + data.motor_speed = frame.data[2] + frame.data[3] << 8; + data.bike_speed = frame.data[2] + frame.data[3] << 8; break; case can_ids.speed: - data.bike_speed = frame.data[0] << 8; - data.bike_speed += frame.data[1]; + data.bike_speed = frame.data[2] + frame.data[3] << 8; break; default: unknown_data = new int8_t[frame.can_dlc]; diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index 78f89f0..c5e3e47 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -31,13 +31,13 @@ struct our_candata { // ID's for each CAN thing constexpr struct { - canid_t aux_battery{0xB1}; - canid_t main_battery{0xB2}; - canid_t main_pack_temp{0xF1}; - canid_t motor_temp{0xF2}; - canid_t bms_temp{0xF3}; - canid_t rpm{0xA1}; - canid_t speed{0xA2}; + canid_t aux_battery{0x700}; + canid_t main_battery{0x6B0}; + canid_t main_pack_temp{0x6B4}; + canid_t motor_temp{0xA2}; + canid_t bms_temp{0x6B1}; + canid_t rpm{0xA5}; + canid_t speed{0x00}; } can_ids; extern std::mutex m; From 6ed4ab12069793fdcbb4a823df96a21a0045a83e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 23 Mar 2024 16:32:35 -0400 Subject: [PATCH 002/165] Update readme with run instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a578b36..65b7b11 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Then, we install Qt by running `sudo apt install qt6-base-dev` ## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. +To run this, open [QT Creator](https://www.qt.io/download-qt-installer-oss?utm_referrer=https%3A%2F%2Fwww.qt.io%2F). Click on file->Open File or Project and select the top-level CMakeLists.txt in the Bolt_Dash folder. Then, press the run button on the bottom right and the application should run. ## Roadmap From 4ffc1694c0685ac64a96b12a7b2e111f02e11d67 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 23 Mar 2024 16:33:31 -0400 Subject: [PATCH 003/165] Update readme with run instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65b7b11..8ca116a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Then, we install Qt by running `sudo apt install qt6-base-dev` ## Usage -To run this, open [QT Creator](https://www.qt.io/download-qt-installer-oss?utm_referrer=https%3A%2F%2Fwww.qt.io%2F). Click on file->Open File or Project and select the top-level CMakeLists.txt in the Bolt_Dash folder. Then, press the run button on the bottom right and the application should run. +To run this, open [QT Creator](https://www.qt.io/download-qt-installer-oss?utm_referrer=https%3A%2F%2Fwww.qt.io%2F). Click on file->Open File or Project and select the top-level CMakeLists.txt in the Bolt_Dash folder. If a screen comes up asking what you want to do, select configure project at the bottom right. Then, press the run button on the bottom right and the application should run. ## Roadmap From 5ecb510c1a57f90c2e805a40d40c6046298980ac Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 23 Mar 2024 16:37:04 -0400 Subject: [PATCH 004/165] Removed bug --- Bolt_Dash/content/Screen01.ui.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index ed7def6..ea343ab 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -22,7 +22,6 @@ Rectangle { fullness: backend.motorSpeed / 2619 // Expected max speed of 2619 RPM x: 50 y: 24 - fullness: backend.bikeSpeed /250 } Backend { From 1b404cd201a0eb50f4282ffc7f2f1bbe121d1800 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:17:02 -0400 Subject: [PATCH 005/165] Adjusted realistic maxes --- Bolt_Dash/imports/Backend/backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 5a8f0da..29706d1 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -20,12 +20,12 @@ void Backend::updateVars() { setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius - setMotorSpeed(data.motor_speed); // rpm + setMotorSpeed(data.motor_speed / 10); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(100)); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); } } From 0dfdb4bfe7910fa2e34b31436e3cefe3191c7af6 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:30:08 -0400 Subject: [PATCH 006/165] Fix scaling --- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- Bolt_Dash/imports/Backend/can.cpp | 10 +++++----- Bolt_Dash/main.qml | 1 + Bolt_Dash/src/main.cpp | 5 +++-- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 69800db..1293df1 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -54,7 +54,7 @@ Rectangle { x: 28 y: 175 scale: 0.5 - fullness: backend.packSOC / 100 // Percent to decimal + fullness: backend.packSOC // Percent to decimal } BatterySlider { @@ -62,7 +62,7 @@ Rectangle { x: 98 y: 175 scale: 0.5 - fullness: backend.auxPercent / 100 // Percent to decimal + fullness: backend.auxPercent // Percent to decimal } Text { diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 71d7ddf..352c266 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -52,7 +52,7 @@ namespace can { switch (frame.can_id) { case can_ids.aux_battery: data.aux_voltage = frame.data[0] + (frame.data[1] << 8); - data.aux_percent = data.aux_voltage / 25; + data.aux_percent = data.aux_voltage / 2.5; break; case can_ids.main_battery: data.pack_state_of_charge = frame.data[4]; @@ -83,13 +83,13 @@ namespace can { m.unlock(); // Print the can ID and len of data - //printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); + // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); // Print the data in the CAN message -// for (i = 0; i < frame.can_dlc; i++) - //printf("%02X ", frame.data[i]); + // for (i = 0; i < frame.can_dlc; i++) + // printf("%02X ", frame.data[i]); - //printf("\r\n"); + // printf("\r\n"); } // Close socket diff --git a/Bolt_Dash/main.qml b/Bolt_Dash/main.qml index 2c4f857..14ce61a 100644 --- a/Bolt_Dash/main.qml +++ b/Bolt_Dash/main.qml @@ -5,4 +5,5 @@ import QtQuick import content App { + visibility: "FullScreen" } diff --git a/Bolt_Dash/src/main.cpp b/Bolt_Dash/src/main.cpp index 53c355b..a938f29 100644 --- a/Bolt_Dash/src/main.cpp +++ b/Bolt_Dash/src/main.cpp @@ -8,8 +8,7 @@ #include "import_qml_components_plugins.h" #include "import_qml_plugins.h" -int main(int argc, char *argv[]) -{ +int main(int argc, char *argv[]) { set_qt_environment(); QGuiApplication app(argc, argv); @@ -24,6 +23,8 @@ int main(int argc, char *argv[]) }, Qt::QueuedConnection); + app.showFullScreen(); + engine.addImportPath(QCoreApplication::applicationDirPath() + "/qml"); engine.addImportPath(":/"); From 40f10d9f0dbc555024a98f3085ff2f3755c886b0 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:38:39 -0400 Subject: [PATCH 007/165] Fixed fullscreen borked --- Bolt_Dash/imports/Backend/backend.cpp | 4 ++-- Bolt_Dash/src/main.cpp | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 29706d1..f28ffe1 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -13,9 +13,9 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius + setMotorTemp(data.motor_temperature); // celsius setAuxVoltage(data.aux_voltage / 10); // volts - setAuxPercent(data.aux_percent / 255.0); // percent + setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 255.0); // percent setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius diff --git a/Bolt_Dash/src/main.cpp b/Bolt_Dash/src/main.cpp index a938f29..f4187a3 100644 --- a/Bolt_Dash/src/main.cpp +++ b/Bolt_Dash/src/main.cpp @@ -23,8 +23,6 @@ int main(int argc, char *argv[]) { }, Qt::QueuedConnection); - app.showFullScreen(); - engine.addImportPath(QCoreApplication::applicationDirPath() + "/qml"); engine.addImportPath(":/"); From 039012450254a5972f0d45a23c48d4a6d9eda894 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:40:54 -0400 Subject: [PATCH 008/165] Lowered refresh time --- Bolt_Dash/imports/Backend/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index f28ffe1..aefcf84 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -25,7 +25,7 @@ void Backend::updateVars() { m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(10)); + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } } From a39071c05451e19197ae59115197639d3fd51f32 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:48:45 -0400 Subject: [PATCH 009/165] Update motor temp scaling --- Bolt_Dash/imports/Backend/backend.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index aefcf84..2e515a5 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -13,14 +13,14 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature); // celsius - setAuxVoltage(data.aux_voltage / 10); // volts + setMotorTemp(data.motor_temperature / 1000.0); // celsius + setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 255.0); // percent setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius - setMotorSpeed(data.motor_speed / 10); // rpm + setMotorSpeed(data.motor_speed / 10.0); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph m.unlock(); // Debug Message From b8b2aa4de214cad25a7a8751841140ccb2ba39bd Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:52:00 -0400 Subject: [PATCH 010/165] Update BMS temp scaling --- Bolt_Dash/imports/Backend/backend.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 2e515a5..d5e2d0f 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -19,13 +19,14 @@ void Backend::updateVars() { setPackSOC(data.pack_state_of_charge / 255.0); // percent setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius - setBmsTemp(data.bms_temperature); // celsius + setBmsTemp(data.bms_temperature / 1000.0); // celsius setMotorSpeed(data.motor_speed / 10.0); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; std::this_thread::sleep_for(std::chrono::milliseconds(1)); + s } } From c200947d311a6c52ce97946ca3f72b6e1c7de58f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 21:52:20 -0400 Subject: [PATCH 011/165] Update BMS temp label to be accurate --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 1293df1..c28bce0 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -120,7 +120,7 @@ Rectangle { y: 444 width: 48 height: 29 - text: qsTr("MC") + text: qsTr("BMS") font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } From 125540fc764d1d77850a7b89e93036acc391c46c Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 22:00:28 -0400 Subject: [PATCH 012/165] Changed BMS temp to MC temp --- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- Bolt_Dash/imports/Backend/backend.cpp | 14 +++++++++++++- Bolt_Dash/imports/Backend/backend.h | 5 +++++ Bolt_Dash/imports/Backend/can.cpp | 2 ++ Bolt_Dash/imports/Backend/can.h | 4 +++- 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index c28bce0..59ee957 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -111,7 +111,7 @@ Rectangle { x: 644 y: 175 scale: 0.5 - fullness: backend.bmsTemp / 100 // Abosulte max of 100C + fullness: backend.mcTemp / 100 // Abosulte max of 100C } Text { @@ -120,7 +120,7 @@ Rectangle { y: 444 width: 48 height: 29 - text: qsTr("BMS") + text: qsTr("MC") font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index d5e2d0f..d5c9afb 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -3,7 +3,7 @@ // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, - m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{} { + m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); } @@ -22,6 +22,7 @@ void Backend::updateVars() { setBmsTemp(data.bms_temperature / 1000.0); // celsius setMotorSpeed(data.motor_speed / 10.0); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph + setMcTemp(data.mc_temperature / 1000.0); // celsius m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; @@ -67,6 +68,10 @@ double Backend::motorSpeed() const { double Backend::bikeSpeed() const { return m_bikeSpeed; } + +double Backend::mcTemp() const { + return m_mcTemp; +} // } // Setter Functions @@ -133,6 +138,13 @@ void Backend::setBikeSpeed(const double speed) { emit bikeSpeedChanged(); } } + +void Backend::setMcTemp(const double temp) { + if (m_mcTemp != temp) { + m_mcTemp = temp; + emit mcTempChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/imports/Backend/backend.h b/Bolt_Dash/imports/Backend/backend.h index 327552e..fd9bd7b 100644 --- a/Bolt_Dash/imports/Backend/backend.h +++ b/Bolt_Dash/imports/Backend/backend.h @@ -20,6 +20,7 @@ class Backend : public QObject { Q_PROPERTY(double bmsTemp READ bmsTemp WRITE setBmsTemp NOTIFY bmsTempChanged); Q_PROPERTY(double motorSpeed READ motorSpeed WRITE setMotorSpeed NOTIFY motorSpeedChanged); Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); + Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); public: explicit Backend(QObject *parent = nullptr); @@ -32,6 +33,7 @@ class Backend : public QObject { double bmsTemp() const; double motorSpeed() const; double bikeSpeed() const; + double mcTemp() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -42,6 +44,7 @@ class Backend : public QObject { void setBmsTemp(const double temp); void setMotorSpeed(const double speed); void setBikeSpeed(const double speed); + void setMcTemp(const double temp); signals: void motorTempChanged(); @@ -53,6 +56,7 @@ class Backend : public QObject { void bmsTempChanged(); void motorSpeedChanged(); void bikeSpeedChanged(); + void mcTempChanged(); private: void updateVars(); @@ -65,6 +69,7 @@ class Backend : public QObject { double m_bmsTemp; double m_motorSpeed; double m_bikeSpeed; + double m_mcTemp; }; #endif // BACKEND_H diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 352c266..11c5fe5 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -74,6 +74,8 @@ namespace can { case can_ids.speed: data.bike_speed = frame.data[2] + frame.data[3] << 8; break; + case can_ids.mc_temp: + data.mc_temperature = frame.data[0] + frame.data[1] << 8; default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index c5e3e47..fdfc49c 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -3,12 +3,12 @@ #include #include +#include #include #include #include #include #include -#include #include #include @@ -25,6 +25,7 @@ struct our_candata { uint16_t low_cell_temp{}; int16_t motor_temperature{}; uint16_t bms_temperature{}; + uint16_t mc_temperature{}; int16_t motor_speed{}; int16_t bike_speed{}; }; @@ -36,6 +37,7 @@ constexpr struct { canid_t main_pack_temp{0x6B4}; canid_t motor_temp{0xA2}; canid_t bms_temp{0x6B1}; + canid_t mc_temp{0xA1}; canid_t rpm{0xA5}; canid_t speed{0x00}; } can_ids; From c970122e45044f06eb950250f8ec9c5e70a079cf Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 22:02:12 -0400 Subject: [PATCH 013/165] Removed random 's' in backend.cpp --- Bolt_Dash/imports/Backend/backend.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index d5c9afb..c7b98d3 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -27,7 +27,6 @@ void Backend::updateVars() { // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; std::this_thread::sleep_for(std::chrono::milliseconds(1)); - s } } From 99764264eb688ff741bcf77b6a73e0d9ee1c976b Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 22:03:55 -0400 Subject: [PATCH 014/165] Fixed scaling for pack temperatures --- Bolt_Dash/imports/Backend/backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index c7b98d3..7c96792 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -17,8 +17,8 @@ void Backend::updateVars() { setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 255.0); // percent - setHighCellTemp(data.high_cell_temp); // celsius - setLowCellTemp(data.low_cell_temp); // celsius + setHighCellTemp(data.high_cell_temp / 1000.0); // celsius + setLowCellTemp(data.low_cell_temp / 1000.0); // celsius setBmsTemp(data.bms_temperature / 1000.0); // celsius setMotorSpeed(data.motor_speed / 10.0); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph From f1adc35bfb5521c9f9b84e9d222fe0792c13817b Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 2 Apr 2024 22:31:31 -0400 Subject: [PATCH 015/165] Added label for pack soc --- Bolt_Dash/content/Screen01.ui.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 59ee957..cbdfd90 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -76,6 +76,17 @@ Rectangle { horizontalAlignment: Text.AlignHCenter } + Text { + id: packLabel2 + x: 36 + y: 473 + width: 48 + height: 29 + text: backend.packSOC + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + Text { id: auxLabel x: 104 From 635aa69655bad542d9f5ed254ec0e85e8ee00fb3 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 08:45:52 -0400 Subject: [PATCH 016/165] Added labels to sliders --- Bolt_Dash/content/Screen01.ui.qml | 73 ++++++++++++++++++++++++++----- 1 file changed, 61 insertions(+), 12 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index cbdfd90..eb4a388 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -17,6 +17,10 @@ Rectangle { color: Constants.backgroundColor + readonly property int textLabelY: 435 + readonly property int sliderY: 175 + readonly property int valueLabelY: textLabelY+20 + Speedometer { id: speedometer fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM @@ -52,7 +56,7 @@ Rectangle { BatterySlider { id: packSlider x: 28 - y: 175 + y: sliderY scale: 0.5 fullness: backend.packSOC // Percent to decimal } @@ -60,7 +64,7 @@ Rectangle { BatterySlider { id: auxSlider x: 98 - y: 175 + y: sliderY scale: 0.5 fullness: backend.auxPercent // Percent to decimal } @@ -68,7 +72,7 @@ Rectangle { Text { id: packLabel x: 36 - y: 444 + y: textLabelY width: 48 height: 29 text: qsTr("PACK") @@ -79,10 +83,10 @@ Rectangle { Text { id: packLabel2 x: 36 - y: 473 + y: valueLabelY width: 48 height: 29 - text: backend.packSOC + text: qsTr("%1\%").arg(Math.round(backend.packSOC)) font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } @@ -90,7 +94,7 @@ Rectangle { Text { id: auxLabel x: 104 - y: 443 + y: textLabelY width: 48 height: 29 text: qsTr("AUX") @@ -98,10 +102,22 @@ Rectangle { horizontalAlignment: Text.AlignHCenter } + + Text { + id: auxLabel2 + x: 104 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1\%").arg(Math.round(backend.auxPercent)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + TempSlider { id: packTempSlider x: 715 - y: 175 + y: sliderY scale: 0.5 fullness: (backend.highCellTemp+backend.lowCellTemp) / 200 // Abosulte max of 100C and divide by 2 for avg } @@ -109,7 +125,7 @@ Rectangle { Text { id: packTempLabel x: 723 - y: 444 + y: textLabelY width: 48 height: 29 text: qsTr("PACK") @@ -117,10 +133,21 @@ Rectangle { horizontalAlignment: Text.AlignHCenter } + Text { + id: packTempLabel2 + x: 723 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round((backend.highCellTemp+backend.lowCellTemp) / 2)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + TempSlider { id: mCTempSlider x: 644 - y: 175 + y: sliderY scale: 0.5 fullness: backend.mcTemp / 100 // Abosulte max of 100C } @@ -128,7 +155,7 @@ Rectangle { Text { id: mcTempLabel x: 652 - y: 444 + y: textLabelY width: 48 height: 29 text: qsTr("MC") @@ -136,10 +163,21 @@ Rectangle { horizontalAlignment: Text.AlignHCenter } + Text { + id: mcTempLabel2 + x: 652 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round(backend.mcTemp)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + TempSlider { id: motorTempSlider x: 568 - y: 175 + y: sliderY scale: 0.5 fullness: backend.motorTemp / 115 // Abosulte max of 115C } @@ -147,7 +185,7 @@ Rectangle { Text { id: motorTempLabel x: 572 - y: 444 + y: textLabelY width: 48 height: 29 text: qsTr("MOTOR") @@ -155,6 +193,17 @@ Rectangle { horizontalAlignment: Text.AlignHCenter } + Text { + id: motorTempLabel2 + x: 572 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round(backend.motorTemp)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + Text { id: speedoLabel x: 263 From a6624b67b672235d5734efeb0ec20b2d095106ae Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 08:54:39 -0400 Subject: [PATCH 017/165] Made labels for batteries actually percentages and not decimals --- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index eb4a388..a8cdfc9 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -86,7 +86,7 @@ Rectangle { y: valueLabelY width: 48 height: 29 - text: qsTr("%1\%").arg(Math.round(backend.packSOC)) + text: qsTr("%1\%").arg(Math.round(backend.packSOC * 100)) font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } @@ -109,7 +109,7 @@ Rectangle { y: valueLabelY width: 48 height: 29 - text: qsTr("%1\%").arg(Math.round(backend.auxPercent)) + text: qsTr("%1\%").arg(Math.round(backend.auxPercent * 100)) font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } From a7c1fdfd1787614b4db8eed662097bd020696e10 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:10:50 -0400 Subject: [PATCH 018/165] Changed label for speed to be in rpm for PCAN --- Bolt_Dash/content/Screen01.ui.qml | 5 +- .../api/v1/query/client-vscode/query.json | 1 + .../reply/cache-v2-09572c2a4037f1c266b0.json | 6671 +++++++++++++++++ .../cmakeFiles-v1-256c4d2247a2cba5e778.json | 4959 ++++++++++++ .../codemodel-v2-ad2e60b2d5fa1ddbf7d9.json | 1931 +++++ ...irectory-.-Debug-47816394be0d82548d3c.json | 45 + ...s.ds-build-Debug-45915f4ed77ac65fb59f.json | 14 + ...-build.src-Debug-086a1021909f660ac8f0.json | 14 + ...rc.imports-Debug-6ae157d3befc2d39f7b0.json | 14 + ...pplication-Debug-e11a881a4fda21f1b735.json | 14 + ...components-Debug-4293b42b57a71d3edc40.json | 14 + ...ffects_qt6-Debug-e6fb1a94da029e11c833.json | 14 + ...s.flowview-Debug-053280cd8c5d79e97027.json | 14 + ...ogichelper-Debug-695ea36ef5b701d62d76.json | 14 + ....multitext-Debug-9316be53bba37f42017a.json | 14 + ...orts.tools-Debug-8b6400d24bd3c996d3e7.json | 14 + ...tsimulator-Debug-22fca08e32e75018a8c7.json | 14 + ...ventsystem-Debug-efc5c2a7251938dd6f45.json | 14 + ...ry-content-Debug-61a361743d88a3b42c45.json | 14 + ...ry-imports-Debug-615074570c3908afab44.json | 14 + ...ts.Backend-Debug-ce54a73fda8314d5dfb3.json | 14 + ....Bolt_Dash-Debug-826bc3c800d0ab2caed0.json | 14 + .../reply/index-2024-04-03T21-01-57-0879.json | 132 + ...et-Backend-Debug-de734fde861fd851f012.json | 114 + ...kendPlugin-Debug-eacb7cbe9c7a6ef2da10.json | 568 ++ ...in_autogen-Debug-a73dfb3a4ea3a348cd52.json | 62 + ...extraction-Debug-a9feb18d590cb4415c47.json | 107 + ...in_qmllint-Debug-82a4fd9208fabd1fea3a.json | 98 + ...llint_json-Debug-d229ff952a0acc21b751.json | 98 + ...int_module-Debug-2fcb4aca214837a47999.json | 98 + ...gistration-Debug-a5029b34c5389525c0fe.json | 112 + ...uginplugin-Debug-964102888d1d9a6883d7.json | 369 + ...in_autogen-Debug-ddef841ea250b6451802.json | 62 + ...nd_autogen-Debug-9983c5ff9bcf52fc6d4e.json | 62 + ...-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json | 532 ++ ...lt_DashApp-Debug-763ba49338c5ff5ad7aa.json | 2908 +++++++ ...pp_autogen-Debug-51d62c3be5509ceb0bb5.json | 120 + ...extraction-Debug-8931ade274fe100feea2.json | 119 + ...importscan-Debug-d571df3a3563cde60aba.json | 120 + ...pp_qmllint-Debug-ab28db9e596282492f2e.json | 110 + ...llint_json-Debug-9d88dd62a7b7725ae6eb.json | 110 + ...int_module-Debug-0fbd777caab43d73f488.json | 110 + ...gistration-Debug-3bed5478be85aebe4448.json | 124 + ...pp_tooling-Debug-26dba12b3615cfa9bb85.json | 104 + ...sh_autogen-Debug-c529f7cb8e24c653ee03.json | 69 + ...extraction-Debug-3a28b0c0b06e75c1c7ef.json | 107 + ...h_qmlcache-Debug-5daa185e6fb46a1289a0.json | 295 + ...he_autogen-Debug-d3192055f8042e40da36.json | 69 + ...sh_qmllint-Debug-6e5028162500695ce336.json | 98 + ...llint_json-Debug-6b58b157210c30b8fafa.json | 98 + ...int_module-Debug-b6cc991c9fe54460ca33.json | 98 + ...gistration-Debug-51834e0f945bd55cf657.json | 112 + ...esources_1-Debug-98f13cbbddb59674fee2.json | 254 + ...esources_2-Debug-d5178de269ed3fd32777.json | 261 + ...sh_tooling-Debug-2c1722a7c9fd34e67a24.json | 134 + ...Dashplugin-Debug-9a32297ce09472e7765e.json | 266 + ...in_autogen-Debug-b1e80763c9cddaac16c3.json | 62 + ...lugin_init-Debug-cb0ae3a09b6af6e52fed.json | 252 + ...it_autogen-Debug-4045a4e549874d0f3b94.json | 62 + ...t-FlowView-Debug-9ae8992f3002d4d4605a.json | 1179 +++ ...ew_autogen-Debug-067fd34decd4a498dab5.json | 69 + ...extraction-Debug-f6560e536d24d854fec1.json | 107 + ...w_qmlcache-Debug-7859b0f95607044a1e25.json | 295 + ...he_autogen-Debug-de2a1ab1915411cca2ee.json | 69 + ...ew_qmllint-Debug-48b8342c2cd5f2ffef0e.json | 98 + ...llint_json-Debug-a80f46698059d9ff08bf.json | 98 + ...int_module-Debug-7b6f6e166e39a451a9c2.json | 98 + ...gistration-Debug-9113cd9ee0f901fd056b.json | 112 + ...esources_1-Debug-03ca1597fbe0116b12ed.json | 261 + ...ew_tooling-Debug-8926159527a4d8731d7a.json | 414 + ...Viewplugin-Debug-a4ac85a95193ab0025c6.json | 262 + ...in_autogen-Debug-6495605358fb078d5661.json | 62 + ...lugin_init-Debug-7d392c5f9e62ab493e00.json | 252 + ...it_autogen-Debug-7c1f13be59c3a57768ca.json | 62 + ...pplication-Debug-69deb348e3fbce864c1a.json | 424 ++ ...on_autogen-Debug-83d5b0f03cdde7888ef0.json | 62 + ...extraction-Debug-f99b0de1d5e16bb44833.json | 107 + ...on_qmllint-Debug-73045ea851da794fb785.json | 98 + ...llint_json-Debug-d9ba4d345b6cfec5a49e.json | 98 + ...int_module-Debug-ebb9d160c568c013044e.json | 98 + ...gistration-Debug-d2343964a719307788ee.json | 112 + ...esources_1-Debug-4d9fa217efc56ec99928.json | 266 + ...tionplugin-Debug-f8fdecab3cfcf03d05fe.json | 258 + ...in_autogen-Debug-239bcab3fe9c863ed150.json | 62 + ...lugin_init-Debug-bf12920fa9218d95643c.json | 252 + ...it_autogen-Debug-41959f83d5f8f1ab3398.json | 62 + ...Components-Debug-eff245e7a5d85a1b2d2d.json | 838 +++ ...ts_autogen-Debug-687fff37523f13c88106.json | 69 + ...extraction-Debug-e69426057529e6b4a3bc.json | 107 + ...s_qmlcache-Debug-0e7e33519be5e45a818d.json | 295 + ...he_autogen-Debug-80d7a13e7128a08d7745.json | 69 + ...ts_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json | 98 + ...llint_json-Debug-e43e87a498510cfaf755.json | 98 + ...int_module-Debug-df7a571606bf13e004f3.json | 98 + ...gistration-Debug-c2eda95b9f70b6634345.json | 112 + ...esources_1-Debug-c94cca8847514c8a1fec.json | 254 + ...esources_2-Debug-e54cd9e14e804f1c1d37.json | 261 + ...ts_tooling-Debug-a8b0564709ac0090c2bf.json | 260 + ...entsplugin-Debug-f80a6a31b26a94fe0aee.json | 266 + ...in_autogen-Debug-56b3fc91987160e8aef4.json | 62 + ...lugin_init-Debug-e112112a1e3249549eb4.json | 252 + ...it_autogen-Debug-7e45ee8db2f603f2458f.json | 62 + ...dioEffects-Debug-b61e1c52a2c845888d2e.json | 1926 +++++ ...ts_autogen-Debug-bb0d5aa4545d8a4633af.json | 69 + ...extraction-Debug-b34c65f0d2d61d856036.json | 107 + ...s_qmlcache-Debug-62f627c5be6418f51d1b.json | 295 + ...he_autogen-Debug-ce2c11ed80bd1dcda9ea.json | 69 + ...ts_qmllint-Debug-0edc9dd54ea41321d716.json | 98 + ...llint_json-Debug-b8c4d7a6bc373e3dc1d4.json | 98 + ...int_module-Debug-3a1719c05bb9e08a130d.json | 98 + ...gistration-Debug-b8df36b9d880b694a36f.json | 112 + ...esources_1-Debug-f34eeba0c68a8f05abfc.json | 254 + ...esources_2-Debug-62ca9f6cf3fcd7f1561e.json | 261 + ...ts_tooling-Debug-fff09cf476db79d0f6e7.json | 708 ++ ...ectsplugin-Debug-809afbdeb69fd5f05d22.json | 266 + ...in_autogen-Debug-00465e4e7695e405281c.json | 62 + ...lugin_init-Debug-042ac96d4fa8f103dcb6.json | 252 + ...it_autogen-Debug-7bd53f2c68a900023b06.json | 62 + ...tSimulator-Debug-52e95ad6290712ddbac3.json | 464 ++ ...or_autogen-Debug-d912ed5d2e105e4e0e04.json | 69 + ...extraction-Debug-0a8051d41ec498dea305.json | 107 + ...r_qmlcache-Debug-3ffc8954632edd193df6.json | 295 + ...he_autogen-Debug-c80991485872513d3d44.json | 69 + ...or_qmllint-Debug-0c241128e2f2a58eec9a.json | 98 + ...llint_json-Debug-56c4fdfad7b0da73835a.json | 98 + ...int_module-Debug-e80deb3c0914e8dca6cb.json | 98 + ...gistration-Debug-dbf8444e331eed1664ab.json | 112 + ...esources_1-Debug-83ef65e4aead9500cf57.json | 254 + ...esources_2-Debug-d106a9ea47011dbe5854.json | 261 + ...or_tooling-Debug-1414a517ad0c98cec378.json | 106 + ...atorplugin-Debug-f0b6d32b33f4d00f0424.json | 266 + ...in_autogen-Debug-882c8979d7a1747d5776.json | 62 + ...lugin_init-Debug-292cd102b0716f173b4a.json | 252 + ...it_autogen-Debug-f6260cf45c3fb17d20bb.json | 62 + ...ventSystem-Debug-68afb462c691cffab0f1.json | 464 ++ ...em_autogen-Debug-dec4d99f7c4a991467d1.json | 69 + ...extraction-Debug-ab6db483d42db8625245.json | 107 + ...m_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json | 295 + ...he_autogen-Debug-63db6734c3b36083442c.json | 69 + ...em_qmllint-Debug-88de39be09e18070471e.json | 98 + ...llint_json-Debug-15ea54571422a3cf5060.json | 98 + ...int_module-Debug-721c01d255a48e2e1e83.json | 98 + ...gistration-Debug-fea30a225b653475d1d5.json | 112 + ...esources_1-Debug-9fd339c044320add5c5b.json | 254 + ...esources_2-Debug-b0828fb1f90f23da9bde.json | 261 + ...em_tooling-Debug-8bfb1c432f951116dcc5.json | 106 + ...stemplugin-Debug-09ee66272cb237d4dc05.json | 266 + ...in_autogen-Debug-f2c706e44f37dadacbc8.json | 62 + ...lugin_init-Debug-343f1ca3f23b6c952248.json | 252 + ...it_autogen-Debug-f357766959be7cb64efc.json | 62 + ...ogicHelper-Debug-9ff9fbe3473d587ac8ab.json | 634 ++ ...er_autogen-Debug-acac8d55f919d532bccc.json | 69 + ...extraction-Debug-ac6cad20fedbaff6a85e.json | 107 + ...r_qmlcache-Debug-0bc778a7c47475f51f2a.json | 295 + ...he_autogen-Debug-8bb53d06198a3d2a85d5.json | 69 + ...er_qmllint-Debug-d29c6f8e4b91aede32ce.json | 98 + ...llint_json-Debug-cc144d47959645fff87f.json | 98 + ...int_module-Debug-2bcae026fba5ff56aa27.json | 98 + ...gistration-Debug-0fb18cab5fc606ee92e3.json | 112 + ...esources_1-Debug-56ecef5c12b368c68831.json | 254 + ...esources_2-Debug-be6195f0002b6bc280e6.json | 261 + ...er_tooling-Debug-ba2aa88d61332cd2f7b5.json | 176 + ...lperplugin-Debug-d3b9d020db127173445f.json | 266 + ...in_autogen-Debug-0dd188261b123c2bb9b1.json | 62 + ...lugin_init-Debug-7eac1bd077b590d87984.json | 252 + ...it_autogen-Debug-6af1ce9827b44f4e66fb.json | 62 + ...oMultiText-Debug-2e298304b037ed580c9b.json | 498 ++ ...xt_autogen-Debug-c66703cd494d3cdb0440.json | 69 + ...extraction-Debug-438c699ceaad7f4cb98b.json | 107 + ...t_qmlcache-Debug-8999543ed32aa3ead06a.json | 295 + ...he_autogen-Debug-8fea4b04a9bbfdb2caa5.json | 69 + ...xt_qmllint-Debug-af06fbfe1b2ed442f15d.json | 98 + ...llint_json-Debug-0ddbeb9ded609fc21ea8.json | 98 + ...int_module-Debug-4008ea7ea2855164c174.json | 98 + ...gistration-Debug-0d1b59ff4ea71708ab01.json | 112 + ...esources_1-Debug-b38c819cb562f99b94c1.json | 254 + ...esources_2-Debug-8579ffd664f94d780c71.json | 261 + ...xt_tooling-Debug-e27d6bd0c3154db9e024.json | 120 + ...Textplugin-Debug-f3a6275f7f88c39070b3.json | 266 + ...in_autogen-Debug-9a2e57708f39f2f164dc.json | 62 + ...lugin_init-Debug-ef0a0dd61b083408cdf1.json | 252 + ...it_autogen-Debug-11bfedfb7e56a6e43d8d.json | 62 + ...ll_qmllint-Debug-0f40c30e93bae5da3a81.json | 512 ++ ...llint_json-Debug-d117ee47724a917c25a6.json | 512 ++ ...int_module-Debug-0c0ad4e6c76d40d3903a.json | 512 ++ ...istrations-Debug-cc8b39e42111f0ac0ac2.json | 366 + ...et-content-Debug-c060ad8002349d7d4719.json | 612 ++ ...nt_autogen-Debug-11f39ff5c1526eb6e4ea.json | 69 + ...extraction-Debug-fb25e892c14063686b39.json | 107 + ...t_qmlcache-Debug-25ce992711465a39f5da.json | 295 + ...he_autogen-Debug-80d799f57b14979f3281.json | 69 + ...nt_qmllint-Debug-c0b18f91f25a4a3449ea.json | 98 + ...llint_json-Debug-d7deaf355c4ba8b44fcc.json | 98 + ...int_module-Debug-2271d96a817e5f6826e3.json | 98 + ...gistration-Debug-6619c21d07987003e504.json | 112 + ...esources_1-Debug-4f3509f7c6d83ef1bc3e.json | 254 + ...esources_2-Debug-a6b69f41e3b5ca110ed3.json | 261 + ...nt_tooling-Debug-573ff9ff0f4b830ba1d7.json | 190 + ...tentplugin-Debug-e8dbacf35574156a146d.json | 266 + ...in_autogen-Debug-3519fac822a7f673e653.json | 62 + ...lugin_init-Debug-52add43ca8eedc831dec.json | 252 + ...it_autogen-Debug-88e21ac6d7d4eece2512.json | 62 + ...al_plugins-Debug-a1ab1f9aa73790d1a746.json | 76 + .../toolchains-v1-3df0db7d651d973da145.json | 61 + build/.qt/QtDeploySupport.cmake | 66 + .../.qt/deploy_qml_imports/Bolt_DashApp.cmake | 20 + .../Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp | 15 + build/.rcc/Bolt_DashApp_raw_qml_0.qrc | 6 + build/.rcc/configuration.qrc | 6 + build/.rcc/qmake_Main.qrc | 6 + .../Bolt_DashApp_qml_loader_file_list.rsp | 1 + build/.rcc/qmllint/Bolt_DashApp.rsp | 14 + build/.rcc/qmllint/Bolt_DashApp_json.rsp | 16 + build/.rcc/qmllint/Bolt_DashApp_module.rsp | 14 + .../CMakeFiles/3.27.8/CMakeCXXCompiler.cmake | 85 + .../3.27.8/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16984 bytes build/CMakeFiles/3.27.8/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 +++ .../3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 1712 bytes .../Bolt_DashApp.dir/DependInfo.cmake | 32 + build/CMakeFiles/Bolt_DashApp.dir/build.make | 350 + .../Bolt_DashApp.dir/cmake_clean.cmake | 36 + .../Bolt_DashApp.dir/compiler_depend.make | 2 + .../Bolt_DashApp.dir/compiler_depend.ts | 2 + build/CMakeFiles/Bolt_DashApp.dir/depend.make | 2 + build/CMakeFiles/Bolt_DashApp.dir/flags.make | 12 + build/CMakeFiles/Bolt_DashApp.dir/link.txt | 1 + .../CMakeFiles/Bolt_DashApp.dir/progress.make | 17 + .../Bolt_DashApp_autogen.dir/AutogenInfo.json | 1137 +++ .../Bolt_DashApp_autogen.dir/DependInfo.cmake | 18 + .../Bolt_DashApp_autogen.dir/build.make | 97 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_autogen.dir/progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../Bolt_DashApp_qmlimportscan.dir/build.make | 95 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../Bolt_DashApp_qmllint.dir/DependInfo.cmake | 18 + .../Bolt_DashApp_qmllint.dir/build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../Bolt_DashApp_qmllint_json.dir/build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 119 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../Bolt_DashApp_tooling.dir/DependInfo.cmake | 18 + .../Bolt_DashApp_tooling.dir/build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_tooling.dir/progress.make | 2 + build/CMakeFiles/CMakeConfigureLog.yaml | 295 + .../CMakeDirectoryInformation.cmake | 16 + build/CMakeFiles/CMakeRuleHashes.txt | 389 + build/CMakeFiles/Makefile.cmake | 1222 +++ build/CMakeFiles/Makefile2 | 5438 ++++++++++++++ build/CMakeFiles/TargetDirectories.txt | 282 + build/CMakeFiles/cmake.check_cache | 1 + build/CMakeFiles/progress.marks | 1 + build/Makefile | 2925 ++++++++ .../CMakeDirectoryInformation.cmake | 16 + .../_deps/ds-build/CMakeFiles/progress.marks | 1 + build/_deps/ds-build/Makefile | 189 + build/_deps/ds-build/cmake_install.cmake | 44 + .../CMakeDirectoryInformation.cmake | 16 + .../ds-build/src/CMakeFiles/progress.marks | 1 + build/_deps/ds-build/src/Makefile | 189 + build/_deps/ds-build/src/cmake_install.cmake | 44 + .../CMakeDirectoryInformation.cmake | 16 + .../src/imports/CMakeFiles/progress.marks | 1 + build/_deps/ds-build/src/imports/Makefile | 189 + .../.rcc/qmake_QtQuick_Studio_Application.qrc | 6 + .../.rcc/qmllint/QuickStudioApplication.rsp | 9 + .../qmllint/QuickStudioApplication_json.rsp | 11 + .../qmllint/QuickStudioApplication_module.rsp | 10 + .../CMakeDirectoryInformation.cmake | 16 + .../DependInfo.cmake | 27 + .../QuickStudioApplication.dir/build.make | 171 + .../cmake_clean.cmake | 22 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioApplication.dir/depend.make | 2 + .../QuickStudioApplication.dir/flags.make | 12 + .../QuickStudioApplication.dir/link.txt | 2 + .../QuickStudioApplication.dir/progress.make | 8 + .../AutogenInfo.json | 118 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 87 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 116 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 20 + .../build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../QuickStudioApplicationplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 107 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 110 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../application/CMakeFiles/progress.marks | 1 + .../ds-build/src/imports/application/Makefile | 585 ++ ...lugin_QtQuick_Studio_ApplicationPlugin.cpp | 23 + .../QuickStudioApplicationplugin_init.cpp | 2 + .../imports/application/cmake_install.cmake | 39 + ...uickstudioapplication_debug_metatypes.json | 0 .../QuickStudioApplication_foreign_types.txt | 1 + .../ds-build/src/imports/cmake_install.cmake | 74 + .../.rcc/QuickStudioComponents_raw_qml_0.qrc | 18 + .../.rcc/qmake_QtQuick_Studio_Components.qrc | 6 + ...kStudioComponents_qml_loader_file_list.rsp | 13 + .../.rcc/qmllint/QuickStudioComponents.rsp | 24 + .../qmllint/QuickStudioComponents_json.rsp | 26 + .../qmllint/QuickStudioComponents_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../DependInfo.cmake | 39 + .../QuickStudioComponents.dir/build.make | 505 ++ .../cmake_clean.cmake | 59 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioComponents.dir/depend.make | 2 + .../QuickStudioComponents.dir/flags.make | 12 + .../QuickStudioComponents.dir/link.txt | 2 + .../QuickStudioComponents.dir/progress.make | 33 + .../AutogenInfo.json | 129 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 141 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 101 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 101 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 101 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 119 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 148 + .../cmake_clean.cmake | 20 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 14 + .../DependInfo.cmake | 20 + .../build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../QuickStudioComponentsplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 136 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 141 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../all_qmllint.dir/DependInfo.cmake | 18 + .../CMakeFiles/all_qmllint.dir/build.make | 83 + .../all_qmllint.dir/cmake_clean.cmake | 5 + .../all_qmllint.dir/compiler_depend.make | 2 + .../all_qmllint.dir/compiler_depend.ts | 2 + .../CMakeFiles/all_qmllint.dir/progress.make | 1 + .../all_qmllint_json.dir/DependInfo.cmake | 18 + .../all_qmllint_json.dir/build.make | 83 + .../all_qmllint_json.dir/cmake_clean.cmake | 5 + .../all_qmllint_json.dir/compiler_depend.make | 2 + .../all_qmllint_json.dir/compiler_depend.ts | 2 + .../all_qmllint_json.dir/progress.make | 1 + .../all_qmllint_module.dir/DependInfo.cmake | 18 + .../all_qmllint_module.dir/build.make | 83 + .../all_qmllint_module.dir/cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../all_qmllint_module.dir/compiler_depend.ts | 2 + .../all_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../all_qmltyperegistrations.dir/build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../components/CMakeFiles/progress.marks | 1 + .../ds-build/src/imports/components/Makefile | 1096 +++ ...plugin_QtQuick_Studio_ComponentsPlugin.cpp | 23 + .../QuickStudioComponentsplugin_init.cpp | 2 + .../imports/components/cmake_install.cmake | 39 + ...quickstudiocomponents_debug_metatypes.json | 0 .../QuickStudioComponents_foreign_types.txt | 1 + .../.rcc/QuickStudioEffects_raw_qml_0.qrc | 50 + .../.rcc/qmake_QtQuick_Studio_Effects.qrc | 6 + ...uickStudioEffects_qml_loader_file_list.rsp | 45 + .../.rcc/qmllint/QuickStudioEffects.rsp | 56 + .../.rcc/qmllint/QuickStudioEffects_json.rsp | 58 + .../qmllint/QuickStudioEffects_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../QuickStudioEffects.dir/DependInfo.cmake | 71 + .../QuickStudioEffects.dir/build.make | 1369 ++++ .../QuickStudioEffects.dir/cmake_clean.cmake | 155 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../QuickStudioEffects.dir/compiler_depend.ts | 2 + .../QuickStudioEffects.dir/depend.make | 2 + .../QuickStudioEffects.dir/flags.make | 12 + .../QuickStudioEffects.dir/link.txt | 2 + .../QuickStudioEffects.dir/progress.make | 97 + .../AutogenInfo.json | 193 + .../DependInfo.cmake | 18 + .../QuickStudioEffects_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 205 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../QuickStudioEffects_qmllint.dir/build.make | 133 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 133 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 133 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 151 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../QuickStudioEffects_tooling.dir/build.make | 308 + .../cmake_clean.cmake | 52 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 46 + .../DependInfo.cmake | 20 + .../QuickStudioEffectsplugin.dir/build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioEffectsplugin.dir/depend.make | 2 + .../QuickStudioEffectsplugin.dir/flags.make | 12 + .../QuickStudioEffectsplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 200 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 205 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../effects_qt6/CMakeFiles/progress.marks | 1 + .../ds-build/src/imports/effects_qt6/Makefile | 1900 +++++ ...ctsplugin_QtQuick_Studio_EffectsPlugin.cpp | 23 + .../QuickStudioEffectsplugin_init.cpp | 2 + .../imports/effects_qt6/cmake_install.cmake | 39 + ...qt6quickstudioeffects_debug_metatypes.json | 0 .../QuickStudioEffects_foreign_types.txt | 1 + .../flowview/.rcc/FlowView_raw_qml_0.qrc | 29 + .../FlowView_qml_loader_file_list.rsp | 23 + .../flowview/.rcc/qmllint/FlowView.rsp | 32 + .../flowview/.rcc/qmllint/FlowView_json.rsp | 34 + .../flowview/.rcc/qmllint/FlowView_module.rsp | 10 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/FlowView.dir/DependInfo.cmake | 49 + .../CMakeFiles/FlowView.dir/build.make | 752 ++ .../CMakeFiles/FlowView.dir/cmake_clean.cmake | 89 + .../FlowView.dir/cmake_clean_target.cmake | 3 + .../FlowView.dir/compiler_depend.make | 2 + .../FlowView.dir/compiler_depend.ts | 2 + .../CMakeFiles/FlowView.dir/depend.make | 2 + .../CMakeFiles/FlowView.dir/flags.make | 12 + .../flowview/CMakeFiles/FlowView.dir/link.txt | 2 + .../CMakeFiles/FlowView.dir/progress.make | 53 + .../FlowView_autogen.dir/AutogenInfo.json | 145 + .../FlowView_autogen.dir/DependInfo.cmake | 18 + .../FlowView_autogen.dir/build.make | 88 + .../FlowView_autogen.dir/cmake_clean.cmake | 9 + .../FlowView_autogen.dir/compiler_depend.make | 2 + .../FlowView_autogen.dir/compiler_depend.ts | 2 + .../FlowView_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../FlowView_qmlcache.dir/DependInfo.cmake | 20 + .../FlowView_qmlcache.dir/build.make | 122 + .../FlowView_qmlcache.dir/cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../FlowView_qmlcache.dir/compiler_depend.ts | 2 + .../FlowView_qmlcache.dir/depend.make | 2 + .../FlowView_qmlcache.dir/flags.make | 12 + .../FlowView_qmlcache.dir/progress.make | 4 + .../AutogenInfo.json | 157 + .../DependInfo.cmake | 18 + .../FlowView_qmlcache_autogen.dir/build.make | 95 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../FlowView_qmllint.dir/DependInfo.cmake | 18 + .../FlowView_qmllint.dir/build.make | 111 + .../FlowView_qmllint.dir/cmake_clean.cmake | 8 + .../FlowView_qmllint.dir/compiler_depend.make | 2 + .../FlowView_qmllint.dir/compiler_depend.ts | 2 + .../FlowView_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../FlowView_qmllint_json.dir/build.make | 111 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../FlowView_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../FlowView_qmllint_module.dir/build.make | 111 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../FlowView_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../FlowView_resources_1.dir/DependInfo.cmake | 19 + .../FlowView_resources_1.dir/build.make | 130 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../FlowView_resources_1.dir/depend.make | 2 + .../FlowView_resources_1.dir/flags.make | 12 + .../FlowView_resources_1.dir/progress.make | 3 + .../FlowView_tooling.dir/DependInfo.cmake | 18 + .../FlowView_tooling.dir/build.make | 203 + .../FlowView_tooling.dir/cmake_clean.cmake | 31 + .../FlowView_tooling.dir/compiler_depend.make | 2 + .../FlowView_tooling.dir/compiler_depend.ts | 2 + .../FlowView_tooling.dir/progress.make | 25 + .../FlowViewplugin.dir/DependInfo.cmake | 20 + .../CMakeFiles/FlowViewplugin.dir/build.make | 127 + .../FlowViewplugin.dir/cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../FlowViewplugin.dir/compiler_depend.make | 2 + .../FlowViewplugin.dir/compiler_depend.ts | 2 + .../CMakeFiles/FlowViewplugin.dir/depend.make | 2 + .../CMakeFiles/FlowViewplugin.dir/flags.make | 12 + .../CMakeFiles/FlowViewplugin.dir/link.txt | 2 + .../FlowViewplugin.dir/progress.make | 4 + .../AutogenInfo.json | 152 + .../DependInfo.cmake | 18 + .../FlowViewplugin_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../FlowViewplugin_autogen.dir/progress.make | 2 + .../FlowViewplugin_init.dir/DependInfo.cmake | 20 + .../FlowViewplugin_init.dir/build.make | 116 + .../FlowViewplugin_init.dir/cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../FlowViewplugin_init.dir/depend.make | 2 + .../FlowViewplugin_init.dir/flags.make | 12 + .../FlowViewplugin_init.dir/progress.make | 3 + .../AutogenInfo.json | 157 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../flowview/CMakeFiles/progress.marks | 1 + .../FlowViewplugin_FlowViewPlugin.cpp | 23 + .../imports/flowview/FlowViewplugin_init.cpp | 2 + .../ds-build/src/imports/flowview/Makefile | 1264 ++++ .../src/imports/flowview/cmake_install.cmake | 39 + .../qt6flowview_debug_metatypes.json | 0 .../qmltypes/FlowView_foreign_types.txt | 1 + .../.rcc/QuickStudioLogicHelper_raw_qml_0.qrc | 12 + .../.rcc/qmake_QtQuick_Studio_LogicHelper.qrc | 6 + ...StudioLogicHelper_qml_loader_file_list.rsp | 7 + .../.rcc/qmllint/QuickStudioLogicHelper.rsp | 18 + .../qmllint/QuickStudioLogicHelper_json.rsp | 20 + .../qmllint/QuickStudioLogicHelper_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../DependInfo.cmake | 33 + .../QuickStudioLogicHelper.dir/build.make | 343 + .../cmake_clean.cmake | 41 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioLogicHelper.dir/depend.make | 2 + .../QuickStudioLogicHelper.dir/flags.make | 12 + .../QuickStudioLogicHelper.dir/link.txt | 2 + .../QuickStudioLogicHelper.dir/progress.make | 21 + .../AutogenInfo.json | 117 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 129 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 95 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 95 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 95 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 113 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 118 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 8 + .../DependInfo.cmake | 20 + .../build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../QuickStudioLogicHelperplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 124 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 129 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../logichelper/CMakeFiles/progress.marks | 1 + .../ds-build/src/imports/logichelper/Makefile | 874 +++ ...lugin_QtQuick_Studio_LogicHelperPlugin.cpp | 23 + .../QuickStudioLogicHelperplugin_init.cpp | 2 + .../imports/logichelper/cmake_install.cmake | 39 + ...uickstudiologichelper_debug_metatypes.json | 0 .../QuickStudioLogicHelper_foreign_types.txt | 1 + .../.rcc/QuickStudioMultiText_raw_qml_0.qrc | 8 + .../.rcc/qmake_QtQuick_Studio_MultiText.qrc | 6 + ...ckStudioMultiText_qml_loader_file_list.rsp | 3 + .../.rcc/qmllint/QuickStudioMultiText.rsp | 14 + .../qmllint/QuickStudioMultiText_json.rsp | 16 + .../qmllint/QuickStudioMultiText_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../QuickStudioMultiText.dir/DependInfo.cmake | 29 + .../QuickStudioMultiText.dir/build.make | 235 + .../cmake_clean.cmake | 29 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioMultiText.dir/depend.make | 2 + .../QuickStudioMultiText.dir/flags.make | 12 + .../QuickStudioMultiText.dir/link.txt | 2 + .../QuickStudioMultiText.dir/progress.make | 13 + .../AutogenInfo.json | 109 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 121 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 91 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 91 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 91 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 109 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 98 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 20 + .../QuickStudioMultiTextplugin.dir/build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../QuickStudioMultiTextplugin.dir/flags.make | 12 + .../QuickStudioMultiTextplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 116 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 121 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../multitext/CMakeFiles/progress.marks | 1 + .../ds-build/src/imports/multitext/Makefile | 766 ++ ...tplugin_QtQuick_Studio_MultiTextPlugin.cpp | 23 + .../QuickStudioMultiTextplugin_init.cpp | 2 + .../src/imports/multitext/cmake_install.cmake | 39 + ...6quickstudiomultitext_debug_metatypes.json | 0 .../QuickStudioMultiText_foreign_types.txt | 1 + .../CMakeDirectoryInformation.cmake | 16 + .../imports/tools/CMakeFiles/progress.marks | 1 + .../_deps/ds-build/src/imports/tools/Makefile | 189 + .../src/imports/tools/cmake_install.cmake | 49 + .../QuickStudioEventSimulator_raw_qml_0.qrc | 7 + .../qmake_QtQuick_Studio_EventSimulator.qrc | 6 + ...dioEventSimulator_qml_loader_file_list.rsp | 2 + .../qmllint/QuickStudioEventSimulator.rsp | 13 + .../QuickStudioEventSimulator_json.rsp | 15 + .../QuickStudioEventSimulator_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../DependInfo.cmake | 28 + .../QuickStudioEventSimulator.dir/build.make | 208 + .../cmake_clean.cmake | 26 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioEventSimulator.dir/depend.make | 2 + .../QuickStudioEventSimulator.dir/flags.make | 12 + .../QuickStudioEventSimulator.dir/link.txt | 2 + .../progress.make | 11 + .../AutogenInfo.json | 107 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 119 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 108 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 93 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 20 + .../build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 114 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 119 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../eventsimulator/CMakeFiles/progress.marks | 1 + .../src/imports/tools/eventsimulator/Makefile | 739 ++ ...in_QtQuick_Studio_EventSimulatorPlugin.cpp | 23 + .../QuickStudioEventSimulatorplugin_init.cpp | 2 + .../tools/eventsimulator/cmake_install.cmake | 39 + ...kstudioeventsimulator_debug_metatypes.json | 0 ...uickStudioEventSimulator_foreign_types.txt | 1 + .../.rcc/QuickStudioEventSystem_raw_qml_0.qrc | 7 + .../.rcc/qmake_QtQuick_Studio_EventSystem.qrc | 6 + ...StudioEventSystem_qml_loader_file_list.rsp | 2 + .../.rcc/qmllint/QuickStudioEventSystem.rsp | 13 + .../qmllint/QuickStudioEventSystem_json.rsp | 15 + .../qmllint/QuickStudioEventSystem_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../DependInfo.cmake | 28 + .../QuickStudioEventSystem.dir/build.make | 208 + .../cmake_clean.cmake | 26 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../QuickStudioEventSystem.dir/depend.make | 2 + .../QuickStudioEventSystem.dir/flags.make | 12 + .../QuickStudioEventSystem.dir/link.txt | 2 + .../QuickStudioEventSystem.dir/progress.make | 11 + .../AutogenInfo.json | 107 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 123 + .../cmake_clean.cmake | 15 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 4 + .../AutogenInfo.json | 119 + .../DependInfo.cmake | 18 + .../build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 90 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 19 + .../build.make | 108 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../DependInfo.cmake | 18 + .../build.make | 93 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../DependInfo.cmake | 20 + .../build.make | 127 + .../cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../QuickStudioEventSystemplugin.dir/link.txt | 2 + .../progress.make | 4 + .../AutogenInfo.json | 114 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 20 + .../build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../depend.make | 2 + .../flags.make | 12 + .../progress.make | 3 + .../AutogenInfo.json | 119 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../eventsystem/CMakeFiles/progress.marks | 1 + .../src/imports/tools/eventsystem/Makefile | 739 ++ ...lugin_QtQuick_Studio_EventSystemPlugin.cpp | 23 + .../QuickStudioEventSystemplugin_init.cpp | 2 + .../tools/eventsystem/cmake_install.cmake | 39 + ...uickstudioeventsystem_debug_metatypes.json | 0 .../QuickStudioEventSystem_foreign_types.txt | 1 + build/_deps/ds-src | 1 + .../CMakeFiles/3.27.8/CMakeSystem.cmake | 15 + .../CMakeFiles/CMakeConfigureLog.yaml | 11 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/CMakeRuleHashes.txt | 11 + .../ds-subbuild/CMakeFiles/Makefile.cmake | 52 + build/_deps/ds-subbuild/CMakeFiles/Makefile2 | 112 + .../CMakeFiles/TargetDirectories.txt | 3 + .../ds-subbuild/CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/ds-populate-complete | 0 .../ds-populate.dir/DependInfo.cmake | 18 + .../CMakeFiles/ds-populate.dir/Labels.json | 46 + .../CMakeFiles/ds-populate.dir/Labels.txt | 14 + .../CMakeFiles/ds-populate.dir/build.make | 159 + .../ds-populate.dir/cmake_clean.cmake | 17 + .../ds-populate.dir/compiler_depend.make | 2 + .../ds-populate.dir/compiler_depend.ts | 2 + .../CMakeFiles/ds-populate.dir/progress.make | 10 + .../ds-subbuild/CMakeFiles/progress.marks | 1 + build/_deps/ds-subbuild/CMakeLists.txt | 42 + build/_deps/ds-subbuild/Makefile | 154 + build/_deps/ds-subbuild/cmake_install.cmake | 44 + .../src/ds-populate-stamp/ds-populate-build | 0 .../ds-populate-stamp/ds-populate-configure | 0 .../src/ds-populate-stamp/ds-populate-done | 0 .../ds-populate-stamp/ds-populate-download | 0 .../ds-populate-gitclone-lastrun.txt | 15 + .../ds-populate-stamp/ds-populate-gitinfo.txt | 15 + .../src/ds-populate-stamp/ds-populate-install | 0 .../src/ds-populate-stamp/ds-populate-mkdir | 0 .../src/ds-populate-stamp/ds-populate-patch | 0 .../ds-populate-patch-info.txt | 6 + .../src/ds-populate-stamp/ds-populate-test | 0 .../ds-populate-update-info.txt | 7 + .../tmp/ds-populate-cfgcmd.txt | 1 + .../tmp/ds-populate-gitclone.cmake | 73 + .../tmp/ds-populate-gitupdate.cmake | 292 + .../tmp/ds-populate-mkdirs.cmake | 22 + build/cmake_install.cmake | 77 + build/compile_commands.json | 1310 ++++ build/content/.rcc/content_raw_qml_0.qrc | 13 + build/content/.rcc/qmake_content.qrc | 6 + .../qmlcache/content_qml_loader_file_list.rsp | 6 + build/content/.rcc/qmllint/content.rsp | 17 + build/content/.rcc/qmllint/content_json.rsp | 19 + build/content/.rcc/qmllint/content_module.rsp | 12 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/content.dir/DependInfo.cmake | 32 + .../content/CMakeFiles/content.dir/build.make | 316 + .../CMakeFiles/content.dir/cmake_clean.cmake | 38 + .../content.dir/cmake_clean_target.cmake | 3 + .../content.dir/compiler_depend.make | 2 + .../CMakeFiles/content.dir/compiler_depend.ts | 2 + .../CMakeFiles/content.dir/depend.make | 2 + .../content/CMakeFiles/content.dir/flags.make | 12 + build/content/CMakeFiles/content.dir/link.txt | 2 + .../CMakeFiles/content.dir/progress.make | 19 + .../content_autogen.dir/AutogenInfo.json | 115 + .../content_autogen.dir/DependInfo.cmake | 18 + .../CMakeFiles/content_autogen.dir/build.make | 88 + .../content_autogen.dir/cmake_clean.cmake | 9 + .../content_autogen.dir/compiler_depend.make | 2 + .../content_autogen.dir/compiler_depend.ts | 2 + .../content_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../content_qmlcache.dir/DependInfo.cmake | 20 + .../content_qmlcache.dir/build.make | 116 + .../content_qmlcache.dir/cmake_clean.cmake | 14 + .../content_qmlcache.dir/compiler_depend.make | 2 + .../content_qmlcache.dir/compiler_depend.ts | 2 + .../content_qmlcache.dir/depend.make | 2 + .../content_qmlcache.dir/flags.make | 12 + .../content_qmlcache.dir/progress.make | 3 + .../AutogenInfo.json | 127 + .../DependInfo.cmake | 18 + .../content_qmlcache_autogen.dir/build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../content_qmllint.dir/DependInfo.cmake | 18 + .../CMakeFiles/content_qmllint.dir/build.make | 94 + .../content_qmllint.dir/cmake_clean.cmake | 8 + .../content_qmllint.dir/compiler_depend.make | 2 + .../content_qmllint.dir/compiler_depend.ts | 2 + .../content_qmllint.dir/progress.make | 1 + .../content_qmllint_json.dir/DependInfo.cmake | 18 + .../content_qmllint_json.dir/build.make | 94 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../content_qmllint_module.dir/build.make | 94 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../content_resources_1.dir/DependInfo.cmake | 19 + .../content_resources_1.dir/build.make | 107 + .../content_resources_1.dir/cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_resources_1.dir/depend.make | 2 + .../content_resources_1.dir/flags.make | 12 + .../content_resources_1.dir/progress.make | 3 + .../content_resources_2.dir/DependInfo.cmake | 19 + .../content_resources_2.dir/build.make | 114 + .../content_resources_2.dir/cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_resources_2.dir/depend.make | 2 + .../content_resources_2.dir/flags.make | 12 + .../content_resources_2.dir/progress.make | 3 + .../content_tooling.dir/DependInfo.cmake | 18 + .../CMakeFiles/content_tooling.dir/build.make | 123 + .../content_tooling.dir/cmake_clean.cmake | 15 + .../content_tooling.dir/compiler_depend.make | 2 + .../content_tooling.dir/compiler_depend.ts | 2 + .../content_tooling.dir/progress.make | 9 + .../contentplugin.dir/DependInfo.cmake | 20 + .../CMakeFiles/contentplugin.dir/build.make | 127 + .../contentplugin.dir/cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../contentplugin.dir/compiler_depend.make | 2 + .../contentplugin.dir/compiler_depend.ts | 2 + .../CMakeFiles/contentplugin.dir/depend.make | 2 + .../CMakeFiles/contentplugin.dir/flags.make | 12 + .../CMakeFiles/contentplugin.dir/link.txt | 2 + .../contentplugin.dir/progress.make | 4 + .../AutogenInfo.json | 122 + .../DependInfo.cmake | 18 + .../contentplugin_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../contentplugin_autogen.dir/progress.make | 2 + .../contentplugin_init.dir/DependInfo.cmake | 20 + .../contentplugin_init.dir/build.make | 116 + .../contentplugin_init.dir/cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../contentplugin_init.dir/compiler_depend.ts | 2 + .../contentplugin_init.dir/depend.make | 2 + .../contentplugin_init.dir/flags.make | 12 + .../contentplugin_init.dir/progress.make | 3 + .../AutogenInfo.json | 127 + .../DependInfo.cmake | 18 + .../contentplugin_init_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + build/content/CMakeFiles/progress.marks | 1 + build/content/Makefile | 847 +++ build/content/cmake_install.cmake | 39 + build/content/contentplugin_contentPlugin.cpp | 23 + build/content/contentplugin_init.cpp | 2 + .../qt6content_debug_metatypes.json | 0 .../qmltypes/content_foreign_types.txt | 1 + build/imports/Backend/.rcc/qmake_Backend.qrc | 6 + .../Backend/.rcc/qmllint/BackendPlugin.rsp | 9 + .../.rcc/qmllint/BackendPlugin_json.rsp | 11 + .../.rcc/qmllint/BackendPlugin_module.rsp | 10 + .../BackendPluginplugin_BackendPlugin.cpp | 23 + .../CMakeFiles/Backend.dir/DependInfo.cmake | 19 + .../Backend/CMakeFiles/Backend.dir/build.make | 111 + .../CMakeFiles/Backend.dir/cmake_clean.cmake | 14 + .../Backend.dir/cmake_clean_target.cmake | 3 + .../Backend.dir/compiler_depend.make | 2 + .../CMakeFiles/Backend.dir/compiler_depend.ts | 2 + .../CMakeFiles/Backend.dir/depend.make | 2 + .../Backend/CMakeFiles/Backend.dir/flags.make | 12 + .../Backend/CMakeFiles/Backend.dir/link.txt | 2 + .../CMakeFiles/Backend.dir/progress.make | 3 + .../BackendPlugin.dir/DependInfo.cmake | 29 + .../CMakeFiles/BackendPlugin.dir/build.make | 211 + .../BackendPlugin.dir/cmake_clean.cmake | 27 + .../BackendPlugin.dir/compiler_depend.make | 2 + .../BackendPlugin.dir/compiler_depend.ts | 2 + .../CMakeFiles/BackendPlugin.dir/depend.make | 2 + .../CMakeFiles/BackendPlugin.dir/flags.make | 12 + .../CMakeFiles/BackendPlugin.dir/link.txt | 1 + .../BackendPlugin.dir/progress.make | 11 + .../AutogenInfo.json | 129 + .../DependInfo.cmake | 18 + .../BackendPlugin_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../BackendPlugin_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 18 + .../BackendPlugin_qmllint.dir/build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../BackendPlugin_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../BackendPlugin_qmllint_json.dir/build.make | 87 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../BackendPluginplugin.dir/DependInfo.cmake | 20 + .../BackendPluginplugin.dir/build.make | 130 + .../BackendPluginplugin.dir/cmake_clean.cmake | 16 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../BackendPluginplugin.dir/depend.make | 2 + .../BackendPluginplugin.dir/flags.make | 12 + .../BackendPluginplugin.dir/link.txt | 1 + .../BackendPluginplugin.dir/progress.make | 4 + .../AutogenInfo.json | 109 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../Backend_autogen.dir/AutogenInfo.json | 80 + .../Backend_autogen.dir/DependInfo.cmake | 18 + .../CMakeFiles/Backend_autogen.dir/build.make | 88 + .../Backend_autogen.dir/cmake_clean.cmake | 9 + .../Backend_autogen.dir/compiler_depend.make | 2 + .../Backend_autogen.dir/compiler_depend.ts | 2 + .../Backend_autogen.dir/progress.make | 2 + .../CMakeDirectoryInformation.cmake | 16 + .../imports/Backend/CMakeFiles/progress.marks | 1 + .../qt_internal_plugins.dir/DependInfo.cmake | 18 + .../qt_internal_plugins.dir/build.make | 83 + .../qt_internal_plugins.dir/cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../qt_internal_plugins.dir/progress.make | 1 + build/imports/Backend/Makefile | 585 ++ build/imports/Backend/cmake_install.cmake | 39 + .../qt6backendplugin_debug_metatypes.json | 0 .../qmltypes/BackendPlugin_foreign_types.txt | 1 + .../Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc | 9 + .../Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc | 6 + .../Bolt_Dash_qml_loader_file_list.rsp | 4 + .../Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp | 15 + .../Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp | 17 + .../.rcc/qmllint/Bolt_Dash_module.rsp | 12 + .../Bolt_Dashplugin_Bolt_DashPlugin.cpp | 23 + .../Bolt_Dash/Bolt_Dashplugin_init.cpp | 2 + .../CMakeFiles/Bolt_Dash.dir/DependInfo.cmake | 30 + .../CMakeFiles/Bolt_Dash.dir/build.make | 262 + .../Bolt_Dash.dir/cmake_clean.cmake | 32 + .../Bolt_Dash.dir/cmake_clean_target.cmake | 3 + .../Bolt_Dash.dir/compiler_depend.make | 2 + .../Bolt_Dash.dir/compiler_depend.ts | 2 + .../CMakeFiles/Bolt_Dash.dir/depend.make | 2 + .../CMakeFiles/Bolt_Dash.dir/flags.make | 12 + .../CMakeFiles/Bolt_Dash.dir/link.txt | 2 + .../CMakeFiles/Bolt_Dash.dir/progress.make | 15 + .../Bolt_Dash_autogen.dir/AutogenInfo.json | 111 + .../Bolt_Dash_autogen.dir/DependInfo.cmake | 18 + .../Bolt_Dash_autogen.dir/build.make | 88 + .../Bolt_Dash_autogen.dir/cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../Bolt_Dash_autogen.dir/compiler_depend.ts | 2 + .../Bolt_Dash_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../Bolt_Dash_qmlcache.dir/DependInfo.cmake | 20 + .../Bolt_Dash_qmlcache.dir/build.make | 116 + .../Bolt_Dash_qmlcache.dir/cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../Bolt_Dash_qmlcache.dir/compiler_depend.ts | 2 + .../Bolt_Dash_qmlcache.dir/depend.make | 2 + .../Bolt_Dash_qmlcache.dir/flags.make | 12 + .../Bolt_Dash_qmlcache.dir/progress.make | 3 + .../AutogenInfo.json | 123 + .../DependInfo.cmake | 18 + .../Bolt_Dash_qmlcache_autogen.dir/build.make | 96 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 3 + .../Bolt_Dash_qmllint.dir/DependInfo.cmake | 18 + .../Bolt_Dash_qmllint.dir/build.make | 92 + .../Bolt_Dash_qmllint.dir/cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../Bolt_Dash_qmllint.dir/compiler_depend.ts | 2 + .../Bolt_Dash_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../Bolt_Dash_qmllint_json.dir/build.make | 92 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 18 + .../Bolt_Dash_qmllint_module.dir/build.make | 92 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 24 + .../build.make | 115 + .../cmake_clean.cmake | 12 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 4 + .../DependInfo.cmake | 19 + .../Bolt_Dash_resources_1.dir/build.make | 107 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_resources_1.dir/depend.make | 2 + .../Bolt_Dash_resources_1.dir/flags.make | 12 + .../Bolt_Dash_resources_1.dir/progress.make | 3 + .../DependInfo.cmake | 19 + .../Bolt_Dash_resources_2.dir/build.make | 110 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_resources_2.dir/depend.make | 2 + .../Bolt_Dash_resources_2.dir/flags.make | 12 + .../Bolt_Dash_resources_2.dir/progress.make | 3 + .../Bolt_Dash_tooling.dir/DependInfo.cmake | 18 + .../Bolt_Dash_tooling.dir/build.make | 103 + .../Bolt_Dash_tooling.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../Bolt_Dash_tooling.dir/compiler_depend.ts | 2 + .../Bolt_Dash_tooling.dir/progress.make | 5 + .../Bolt_Dashplugin.dir/DependInfo.cmake | 20 + .../CMakeFiles/Bolt_Dashplugin.dir/build.make | 127 + .../Bolt_Dashplugin.dir/cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../Bolt_Dashplugin.dir/compiler_depend.make | 2 + .../Bolt_Dashplugin.dir/compiler_depend.ts | 2 + .../Bolt_Dashplugin.dir/depend.make | 2 + .../CMakeFiles/Bolt_Dashplugin.dir/flags.make | 12 + .../CMakeFiles/Bolt_Dashplugin.dir/link.txt | 2 + .../Bolt_Dashplugin.dir/progress.make | 4 + .../AutogenInfo.json | 118 + .../DependInfo.cmake | 18 + .../Bolt_Dashplugin_autogen.dir/build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dashplugin_autogen.dir/progress.make | 2 + .../Bolt_Dashplugin_init.dir/DependInfo.cmake | 20 + .../Bolt_Dashplugin_init.dir/build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dashplugin_init.dir/depend.make | 2 + .../Bolt_Dashplugin_init.dir/flags.make | 12 + .../Bolt_Dashplugin_init.dir/progress.make | 3 + .../AutogenInfo.json | 123 + .../DependInfo.cmake | 18 + .../build.make | 88 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../CMakeDirectoryInformation.cmake | 16 + .../Bolt_Dash/CMakeFiles/progress.marks | 1 + build/imports/Bolt_Dash/Makefile | 793 ++ build/imports/Bolt_Dash/cmake_install.cmake | 39 + .../qt6bolt_dash_debug_metatypes.json | 0 .../qmltypes/Bolt_Dash_foreign_types.txt | 1 + .../CMakeDirectoryInformation.cmake | 16 + build/imports/CMakeFiles/progress.marks | 1 + build/imports/Makefile | 189 + build/imports/cmake_install.cmake | 49 + .../qt6bolt_dashapp_debug_metatypes.json | 0 .../BackendPlugin_qml_module_dir_map.qrc | 6 + build/qml/Backend/qmldir | 7 + .../Bolt_Dash_qml_module_dir_map.qrc | 6 + build/qml/Bolt_Dash/Constants.qml | 27 + build/qml/Bolt_Dash/DirectoryFontLoader.qml | 34 + build/qml/Bolt_Dash/EventListModel.qml | 15 + build/qml/Bolt_Dash/EventListSimulator.qml | 25 + build/qml/Bolt_Dash/qmldir | 11 + build/qml/FlowView/+DesignMode/FlowItem.qml | 100 + build/qml/FlowView/+DesignMode/FlowView.qml | 311 + build/qml/FlowView/DefaultFlowEffect.qml | 41 + build/qml/FlowView/FlowActionArea.qml | 213 + build/qml/FlowView/FlowDecision.qml | 126 + build/qml/FlowView/FlowEffect.qml | 161 + build/qml/FlowView/FlowFadeEffect.qml | 80 + build/qml/FlowView/FlowItem.qml | 116 + build/qml/FlowView/FlowMoveEffect.qml | 102 + build/qml/FlowView/FlowPushEffect.qml | 231 + build/qml/FlowView/FlowPushLeftEffect.qml | 155 + build/qml/FlowView/FlowPushRightEffect.qml | 155 + build/qml/FlowView/FlowPushUpEffect.qml | 162 + build/qml/FlowView/FlowSlideDownEffect.qml | 90 + build/qml/FlowView/FlowSlideLeftEffect.qml | 66 + build/qml/FlowView/FlowSlideRightEffect.qml | 66 + build/qml/FlowView/FlowSlideUpEffect.qml | 66 + build/qml/FlowView/FlowState.qml | 36 + build/qml/FlowView/FlowTransition.qml | 154 + build/qml/FlowView/FlowTransitionList.qml | 101 + build/qml/FlowView/FlowView.qml | 348 + .../FlowView/FlowView_qml_module_dir_map.qrc | 6 + build/qml/FlowView/FlowWildcard.qml | 77 + build/qml/FlowView/SwipeInteraction.qml | 118 + build/qml/FlowView/qmldir | 46 + .../Main/Bolt_DashApp_qml_module_dir_map.qrc | 6 + build/qml/Main/main.qml | 9 + build/qml/Main/qmldir | 4 + ...ckStudioApplication_qml_module_dir_map.qrc | 6 + build/qml/QtQuick/Studio/Application/qmldir | 8 + .../QtQuick/Studio/Components/ArcArrow.qml | 83 + .../qml/QtQuick/Studio/Components/ArcItem.qml | 494 ++ .../QtQuick/Studio/Components/BorderItem.qml | 506 ++ .../QtQuick/Studio/Components/EllipseItem.qml | 201 + .../Studio/Components/FlipableItem.qml | 153 + .../QtQuick/Studio/Components/GroupItem.qml | 77 + .../qml/QtQuick/Studio/Components/IsoItem.qml | 67 + .../qml/QtQuick/Studio/Components/PieItem.qml | 322 + ...ickStudioComponents_qml_module_dir_map.qrc | 6 + .../Studio/Components/RectangleItem.qml | 434 ++ .../Studio/Components/RegularPolygonItem.qml | 318 + .../Studio/Components/StraightArrow.qml | 97 + .../QtQuick/Studio/Components/SvgPathItem.qml | 221 + .../Studio/Components/TriangleItem.qml | 496 ++ build/qml/QtQuick/Studio/Components/qmldir | 34 + .../QtQuick/Studio/Effects/BlendEffect.qml | 37 + .../qml/QtQuick/Studio/Effects/BlendItem.qml | 65 + .../Effects/BrightnessContrastEffect.qml | 35 + .../Studio/Effects/BrightnessContrastItem.qml | 57 + .../Studio/Effects/ColorOverlayEffect.qml | 36 + .../Studio/Effects/ColorOverlayItem.qml | 59 + .../QtQuick/Studio/Effects/ColorizeEffect.qml | 38 + .../QtQuick/Studio/Effects/ColorizeItem.qml | 61 + .../Studio/Effects/DesaturationEffect.qml | 36 + .../Studio/Effects/DesaturationItem.qml | 56 + .../Studio/Effects/DirectionalBlurEffect.qml | 42 + .../Studio/Effects/DirectionalBlurItem.qml | 62 + .../QtQuick/Studio/Effects/DisplaceEffect.qml | 35 + .../QtQuick/Studio/Effects/DisplaceItem.qml | 66 + .../Studio/Effects/DropShadowEffect.qml | 41 + .../QtQuick/Studio/Effects/DropShadowItem.qml | 69 + .../QtQuick/Studio/Effects/FastBlurEffect.qml | 36 + .../QtQuick/Studio/Effects/FastBlurItem.qml | 61 + .../Studio/Effects/GammaAdjustEffect.qml | 37 + .../Studio/Effects/GammaAdjustItem.qml | 57 + .../Studio/Effects/GaussianBlurEffect.qml | 41 + .../Studio/Effects/GaussianBlurItem.qml | 61 + .../qml/QtQuick/Studio/Effects/GlowEffect.qml | 40 + build/qml/QtQuick/Studio/Effects/GlowItem.qml | 63 + .../Studio/Effects/HueSaturationEffect.qml | 38 + .../Studio/Effects/HueSaturationItem.qml | 61 + .../Studio/Effects/InnerShadowEffect.qml | 45 + .../Studio/Effects/InnerShadowItem.qml | 63 + .../Studio/Effects/LevelAdjustEffect.qml | 41 + .../Studio/Effects/LevelAdjustItem.qml | 62 + build/qml/QtQuick/Studio/Effects/MaskItem.qml | 69 + .../Studio/Effects/MaskedBlurEffect.qml | 38 + .../QtQuick/Studio/Effects/MaskedBlurItem.qml | 68 + .../Studio/Effects/OpacityMaskEffect.qml | 35 + .../Studio/Effects/OpacityMaskItem.qml | 65 + .../QuickStudioEffects_qml_module_dir_map.qrc | 6 + .../Studio/Effects/RadialBlurEffect.qml | 45 + .../QtQuick/Studio/Effects/RadialBlurItem.qml | 62 + .../Studio/Effects/RecursiveBlurEffect.qml | 40 + .../Studio/Effects/RecursiveBlurItem.qml | 61 + .../QtQuick/Studio/Effects/RotationItem.qml | 51 + .../QtQuick/Studio/Effects/SaturationItem.qml | 61 + .../Studio/Effects/ThresholdMaskEffect.qml | 37 + .../Studio/Effects/ThresholdMaskItem.qml | 68 + .../QtQuick/Studio/Effects/ZoomBlurEffect.qml | 41 + .../QtQuick/Studio/Effects/ZoomBlurItem.qml | 61 + build/qml/QtQuick/Studio/Effects/qmldir | 98 + .../Studio/EventSimulator/EventSimulator.qml | 165 + .../EventSimulator/EventSimulatorDelegate.qml | 79 + ...tudioEventSimulator_qml_module_dir_map.qrc | 6 + .../qml/QtQuick/Studio/EventSimulator/qmldir | 12 + .../Studio/EventSystem/EventListener.qml | 53 + .../Studio/EventSystem/EventSystem.qml | 58 + ...ckStudioEventSystem_qml_module_dir_map.qrc | 6 + build/qml/QtQuick/Studio/EventSystem/qmldir | 12 + .../Studio/LogicHelper/AndOperator.qml | 97 + .../LogicHelper/BidirectionalBinding.qml | 156 + .../Studio/LogicHelper/MinMaxMapper.qml | 132 + .../Studio/LogicHelper/NotOperator.qml | 85 + .../QtQuick/Studio/LogicHelper/OrOperator.qml | 98 + ...ckStudioLogicHelper_qml_module_dir_map.qrc | 6 + .../Studio/LogicHelper/RangeMapper.qml | 115 + .../Studio/LogicHelper/StringMapper.qml | 94 + build/qml/QtQuick/Studio/LogicHelper/qmldir | 22 + .../Studio/MultiText/MultiTextElement.qml | 100 + .../Studio/MultiText/MultiTextException.qml | 65 + .../Studio/MultiText/MultiTextItem.qml | 103 + ...uickStudioMultiText_qml_module_dir_map.qrc | 6 + build/qml/QtQuick/Studio/MultiText/qmldir | 14 + build/qml/content/App.qml | 20 + build/qml/content/BatterySlider.qml | 38 + build/qml/content/Screen01.ui.qml | 224 + build/qml/content/Speedometer.qml | 46 + build/qml/content/TempSlider.qml | 38 + build/qml/content/WarningSymbol.qml | 19 + .../content/content_qml_module_dir_map.qrc | 6 + build/qml/content/fonts/fonts.txt | 1 + build/qml/content/fonts/nasalization-rg.otf | Bin 0 -> 89220 bytes build/qml/content/qmldir | 13 + build/qmltypes/Bolt_DashApp_foreign_types.txt | 1 + 1860 files changed, 127593 insertions(+), 2 deletions(-) create mode 100644 build/.cmake/api/v1/query/client-vscode/query.json create mode 100644 build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json create mode 100644 build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json create mode 100644 build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json create mode 100644 build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json create mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json create mode 100644 build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json create mode 100644 build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json create mode 100644 build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json create mode 100644 build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json create mode 100644 build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json create mode 100644 build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json create mode 100644 build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json create mode 100644 build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json create mode 100644 build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json create mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json create mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json create mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json create mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json create mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json create mode 100644 build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json create mode 100644 build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json create mode 100644 build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json create mode 100644 build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json create mode 100644 build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json create mode 100644 build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json create mode 100644 build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json create mode 100644 build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json create mode 100644 build/.qt/QtDeploySupport.cmake create mode 100644 build/.qt/deploy_qml_imports/Bolt_DashApp.cmake create mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp create mode 100644 build/.rcc/Bolt_DashApp_raw_qml_0.qrc create mode 100644 build/.rcc/configuration.qrc create mode 100644 build/.rcc/qmake_Main.qrc create mode 100644 build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp_json.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp_module.rsp create mode 100644 build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake create mode 100755 build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin create mode 100644 build/CMakeFiles/3.27.8/CMakeSystem.cmake create mode 100644 build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/flags.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/link.txt create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make create mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/CMakeFiles/CMakeRuleHashes.txt create mode 100644 build/CMakeFiles/Makefile.cmake create mode 100644 build/CMakeFiles/Makefile2 create mode 100644 build/CMakeFiles/TargetDirectories.txt create mode 100644 build/CMakeFiles/cmake.check_cache create mode 100644 build/CMakeFiles/progress.marks create mode 100644 build/Makefile create mode 100644 build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/Makefile create mode 100644 build/_deps/ds-build/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/Makefile create mode 100644 build/_deps/ds-build/src/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/Makefile create mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc create mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp create mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp create mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/application/Makefile create mode 100644 build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/application/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp create mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/components/Makefile create mode 100644 build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/components/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/Makefile create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp create mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp create mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/flowview/Makefile create mode 100644 build/_deps/ds-build/src/imports/flowview/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp create mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/logichelper/Makefile create mode 100644 build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp create mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/multitext/Makefile create mode 100644 build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/multitext/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/tools/Makefile create mode 100644 build/_deps/ds-build/src/imports/tools/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/Makefile create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json create mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt create mode 160000 build/_deps/ds-src create mode 100644 build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake create mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt create mode 100644 build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake create mode 100644 build/_deps/ds-subbuild/CMakeFiles/Makefile2 create mode 100644 build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt create mode 100644 build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts create mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make create mode 100644 build/_deps/ds-subbuild/CMakeFiles/progress.marks create mode 100644 build/_deps/ds-subbuild/CMakeLists.txt create mode 100644 build/_deps/ds-subbuild/Makefile create mode 100644 build/_deps/ds-subbuild/cmake_install.cmake create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake create mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake create mode 100644 build/cmake_install.cmake create mode 100644 build/compile_commands.json create mode 100644 build/content/.rcc/content_raw_qml_0.qrc create mode 100644 build/content/.rcc/qmake_content.qrc create mode 100644 build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp create mode 100644 build/content/.rcc/qmllint/content.rsp create mode 100644 build/content/.rcc/qmllint/content_json.rsp create mode 100644 build/content/.rcc/qmllint/content_module.rsp create mode 100644 build/content/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/content/CMakeFiles/content.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content.dir/build.make create mode 100644 build/content/CMakeFiles/content.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content.dir/cmake_clean_target.cmake create mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content.dir/depend.make create mode 100644 build/content/CMakeFiles/content.dir/flags.make create mode 100644 build/content/CMakeFiles/content.dir/link.txt create mode 100644 build/content/CMakeFiles/content.dir/progress.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/depend.make create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/flags.make create mode 100644 build/content/CMakeFiles/content_qmlcache.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_resources_1.dir/build.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_resources_1.dir/depend.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/flags.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/progress.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_resources_2.dir/build.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_resources_2.dir/depend.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/flags.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/progress.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_tooling.dir/build.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_tooling.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin.dir/depend.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/flags.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/link.txt create mode 100644 build/content/CMakeFiles/contentplugin.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/flags.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/progress.marks create mode 100644 build/content/Makefile create mode 100644 build/content/cmake_install.cmake create mode 100644 build/content/contentplugin_contentPlugin.cpp create mode 100644 build/content/contentplugin_init.cpp create mode 100644 build/content/meta_types/qt6content_debug_metatypes.json create mode 100644 build/content/qmltypes/content_foreign_types.txt create mode 100644 build/imports/Backend/.rcc/qmake_Backend.qrc create mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp create mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp create mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp create mode 100644 build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/depend.make create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/flags.make create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/link.txt create mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make create mode 100644 build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/Backend/CMakeFiles/progress.marks create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts create mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make create mode 100644 build/imports/Backend/Makefile create mode 100644 build/imports/Backend/cmake_install.cmake create mode 100644 build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json create mode 100644 build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt create mode 100644 build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc create mode 100644 build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc create mode 100644 build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp create mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp create mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/progress.marks create mode 100644 build/imports/Bolt_Dash/Makefile create mode 100644 build/imports/Bolt_Dash/cmake_install.cmake create mode 100644 build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json create mode 100644 build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt create mode 100644 build/imports/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/CMakeFiles/progress.marks create mode 100644 build/imports/Makefile create mode 100644 build/imports/cmake_install.cmake create mode 100644 build/meta_types/qt6bolt_dashapp_debug_metatypes.json create mode 100644 build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc create mode 100644 build/qml/Backend/qmldir create mode 100644 build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc create mode 100644 build/qml/Bolt_Dash/Constants.qml create mode 100644 build/qml/Bolt_Dash/DirectoryFontLoader.qml create mode 100644 build/qml/Bolt_Dash/EventListModel.qml create mode 100644 build/qml/Bolt_Dash/EventListSimulator.qml create mode 100644 build/qml/Bolt_Dash/qmldir create mode 100644 build/qml/FlowView/+DesignMode/FlowItem.qml create mode 100644 build/qml/FlowView/+DesignMode/FlowView.qml create mode 100644 build/qml/FlowView/DefaultFlowEffect.qml create mode 100644 build/qml/FlowView/FlowActionArea.qml create mode 100644 build/qml/FlowView/FlowDecision.qml create mode 100644 build/qml/FlowView/FlowEffect.qml create mode 100644 build/qml/FlowView/FlowFadeEffect.qml create mode 100644 build/qml/FlowView/FlowItem.qml create mode 100644 build/qml/FlowView/FlowMoveEffect.qml create mode 100644 build/qml/FlowView/FlowPushEffect.qml create mode 100644 build/qml/FlowView/FlowPushLeftEffect.qml create mode 100644 build/qml/FlowView/FlowPushRightEffect.qml create mode 100644 build/qml/FlowView/FlowPushUpEffect.qml create mode 100644 build/qml/FlowView/FlowSlideDownEffect.qml create mode 100644 build/qml/FlowView/FlowSlideLeftEffect.qml create mode 100644 build/qml/FlowView/FlowSlideRightEffect.qml create mode 100644 build/qml/FlowView/FlowSlideUpEffect.qml create mode 100644 build/qml/FlowView/FlowState.qml create mode 100644 build/qml/FlowView/FlowTransition.qml create mode 100644 build/qml/FlowView/FlowTransitionList.qml create mode 100644 build/qml/FlowView/FlowView.qml create mode 100644 build/qml/FlowView/FlowView_qml_module_dir_map.qrc create mode 100644 build/qml/FlowView/FlowWildcard.qml create mode 100644 build/qml/FlowView/SwipeInteraction.qml create mode 100644 build/qml/FlowView/qmldir create mode 100644 build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc create mode 100644 build/qml/Main/main.qml create mode 100644 build/qml/Main/qmldir create mode 100644 build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/Application/qmldir create mode 100644 build/qml/QtQuick/Studio/Components/ArcArrow.qml create mode 100644 build/qml/QtQuick/Studio/Components/ArcItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/BorderItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/EllipseItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/FlipableItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/GroupItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/IsoItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/PieItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/Components/RectangleItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/StraightArrow.qml create mode 100644 build/qml/QtQuick/Studio/Components/SvgPathItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/TriangleItem.qml create mode 100644 build/qml/QtQuick/Studio/Components/qmldir create mode 100644 build/qml/QtQuick/Studio/Effects/BlendEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/BlendItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ColorizeItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DesaturationItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DisplaceItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/DropShadowItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/FastBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GlowEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/GlowItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/MaskItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/RotationItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/SaturationItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml create mode 100644 build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml create mode 100644 build/qml/QtQuick/Studio/Effects/qmldir create mode 100644 build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml create mode 100644 build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml create mode 100644 build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/EventSimulator/qmldir create mode 100644 build/qml/QtQuick/Studio/EventSystem/EventListener.qml create mode 100644 build/qml/QtQuick/Studio/EventSystem/EventSystem.qml create mode 100644 build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/EventSystem/qmldir create mode 100644 build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml create mode 100644 build/qml/QtQuick/Studio/LogicHelper/qmldir create mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml create mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextException.qml create mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml create mode 100644 build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc create mode 100644 build/qml/QtQuick/Studio/MultiText/qmldir create mode 100644 build/qml/content/App.qml create mode 100644 build/qml/content/BatterySlider.qml create mode 100644 build/qml/content/Screen01.ui.qml create mode 100644 build/qml/content/Speedometer.qml create mode 100644 build/qml/content/TempSlider.qml create mode 100644 build/qml/content/WarningSymbol.qml create mode 100644 build/qml/content/content_qml_module_dir_map.qrc create mode 100644 build/qml/content/fonts/fonts.txt create mode 100644 build/qml/content/fonts/nasalization-rg.otf create mode 100644 build/qml/content/qmldir create mode 100644 build/qmltypes/Bolt_DashApp_foreign_types.txt diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index a8cdfc9..5aaed70 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -210,8 +210,9 @@ Rectangle { y: 105 width: 274 height: 160 - text: qsTr(backend.bikeSpeed) - font.pixelSize: 125 + text: qsTr("%1RPM").arg(backend.motorSpeed) + // font.pixelSize: 125 // For showing speed in mph + font.pixelSize: 75 horizontalAlignment: Text.AlignHCenter font.family: "Nasalization" } diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 0000000..82bb964 --- /dev/null +++ b/build/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json b/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json new file mode 100644 index 0000000..c0ab573 --- /dev/null +++ b/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json @@ -0,0 +1,6671 @@ +{ + "entries" : + [ + { + "name" : "BUILD_QDS_COMPONENTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build design studio components" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "BUILD_SHARED_LIBS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build Qt statically or dynamically" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "BUILD_WITH_PCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "ON" + }, + { + "name" : "Bolt_DashApp_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/build" + }, + { + "name" : "Bolt_DashApp_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Bolt_DashApp_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_ADDR2LINE-NOTFOUND" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/Users/mason/Documents/Code/dash-cpp/build" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "27" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "8" + }, + { + "name" : "CMAKE_COLOR_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable color output during build." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/c++" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "MACHO" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "BOOL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Unix Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_NAME_TOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Users/mason/anaconda3/bin/install_name_tool" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew" + }, + { + "name" : "CMAKE_INSTALL_RPATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/make" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "17" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_OBJCOPY-NOTFOUND" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/objdump" + }, + { + "name" : "CMAKE_OSX_ARCHITECTURES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build architectures for OSX" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_OSX_DEPLOYMENT_TARGET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_OSX_SYSROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The product will be built against the headers and libraries located inside the indicated SDK." + } + ], + "type" : "PATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Bolt_DashApp" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_READELF-NOTFOUND" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STAGING_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Staging path prefix, prepended onto install directories on the host machine." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/strip" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/tapi" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Using pkg-config" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "FETCHCONTENT_BASE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Directory under which to collect all populated content" + } + ], + "type" : "PATH", + "value" : "/Users/mason/Documents/Code/dash-cpp/build/_deps" + }, + { + "name" : "FETCHCONTENT_FULLY_DISCONNECTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Disables all attempts to download or update content and assumes source dirs already exist" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_QUIET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables QUIET option for all content population" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_DS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for ds" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior for all content population" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_DS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of ds" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenGL" + } + ], + "type" : "INTERNAL", + "value" : "[/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][c ][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapOpenGL" + } + ], + "type" : "INTERNAL", + "value" : "[ON][v()]" + }, + { + "name" : "GIT_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Git command line client" + } + ], + "type" : "FILEPATH", + "value" : "/opt/homebrew/bin/git" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "INSTALL_ARCHDATADIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Arch-dependent data [PREFIX]" + } + ], + "type" : "STRING", + "value" : "share/qt" + }, + { + "name" : "INSTALL_BINDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executables [PREFIX/bin]" + } + ], + "type" : "STRING", + "value" : "bin" + }, + { + "name" : "INSTALL_DATADIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Arch-independent data [PREFIX]" + } + ], + "type" : "STRING", + "value" : "share/qt" + }, + { + "name" : "INSTALL_DESCRIPTIONSDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Module description files directory" + } + ], + "type" : "STRING", + "value" : "share/qt/modules" + }, + { + "name" : "INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Documentation [DATADIR/doc]" + } + ], + "type" : "STRING", + "value" : "share/qt/doc" + }, + { + "name" : "INSTALL_EXAMPLESDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Examples [PREFIX/examples]" + } + ], + "type" : "STRING", + "value" : "share/qt/examples" + }, + { + "name" : "INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Header files [PREFIX/include]" + } + ], + "type" : "STRING", + "value" : "include" + }, + { + "name" : "INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Libraries [PREFIX/lib]" + } + ], + "type" : "STRING", + "value" : "lib" + }, + { + "name" : "INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Helper programs [ARCHDATADIR/bin on Windows, ARCHDATADIR/libexec otherwise]" + } + ], + "type" : "STRING", + "value" : "share/qt/libexec" + }, + { + "name" : "INSTALL_MKSPECSDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Mkspecs files [PREFIX/mkspecs]" + } + ], + "type" : "STRING", + "value" : "share/qt/mkspecs" + }, + { + "name" : "INSTALL_PLUGINSDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Plugins [ARCHDATADIR/plugins]" + } + ], + "type" : "STRING", + "value" : "share/qt/plugins" + }, + { + "name" : "INSTALL_QMLDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "QML imports [ARCHDATADIR/qml]" + } + ], + "type" : "STRING", + "value" : "share/qt/qml" + }, + { + "name" : "INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Settings used by Qt programs [PREFIX/etc/xdg]/[/Library/Preferences/Qt]" + } + ], + "type" : "STRING", + "value" : "/Library/Preferences/Qt" + }, + { + "name" : "INSTALL_TESTSDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Tests [PREFIX/tests]" + } + ], + "type" : "STRING", + "value" : "share/qt/tests" + }, + { + "name" : "INSTALL_TRANSLATIONSDIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Translations [DATADIR/translations]" + } + ], + "type" : "STRING", + "value" : "share/qt/translations" + }, + { + "name" : "LINK_INSIGHT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Link Qt Insight Tracker library" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "MACDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/opt/homebrew/bin/macdeployqt" + }, + { + "name" : "OPENGL_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Include for OpenGL on OS X" + } + ], + "type" : "PATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "OPENGL_gl_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "OpenGL library for OS X" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "OPENGL_glu_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "GLU library for OS X (usually same as OpenGL library)" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "PKG_CONFIG_ARGN", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Arguments to supply to pkg-config" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "PKG_CONFIG_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "pkg-config executable" + } + ], + "type" : "FILEPATH", + "value" : "PKG_CONFIG_EXECUTABLE-NOTFOUND" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_BUILD_BENCHMARKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build Qt Benchmarks" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_EXAMPLES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build Qt examples" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_EXAMPLES_AS_EXTERNAL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Should examples be built as ExternalProjects." + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_EXAMPLES_BY_DEFAULT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Should examples be built as part of the default 'all' target." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "QT_BUILD_MANUAL_TESTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build Qt manual tests" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build minimal subset of tests for Android multi-ABI Qt builds" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_MINIMAL_STATIC_TESTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build minimal subset of tests for static Qt builds" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_TESTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build the testing tree." + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_TESTS_BATCHED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Should all tests be batched into a single binary." + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_BUILD_TESTS_BY_DEFAULT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Should tests be built as part of the default 'all' target." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "QT_BUILD_TOOLS_BY_DEFAULT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Should tools be built as part of the default 'all' target." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "QT_COPYRIGHT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "Copyright (C) 2023 The Qt Company Ltd and other contributors." + }, + { + "name" : "QT_COPYRIGHT_YEAR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "2023" + }, + { + "name" : "QT_CREATE_VERSIONED_HARD_LINK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable the use of versioned hard link" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_brotli", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: brotli (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dnslookup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dnslookup (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dtls", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dtls (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eventfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eventfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getifaddrs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getifaddrs (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glibc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gssapi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gssapi (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_http", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: http (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ifr_index", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ifr_index (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ipv6ifname", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ipv6ifname (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libproxy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libproxy (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libresolv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libresolv (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linux_netlink", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linux_netlink (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localserver", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localserver (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networkdiskcache", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkdiskcache (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networkinterface", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkinterface (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networklistmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networklistmanager (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_networkproxy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkproxy (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ocsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ocsp (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_publicsuffix_qt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: publicsuffix_qt (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_publicsuffix_system", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: publicsuffix_system (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qml_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_animation (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_debug (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_delegate_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_delegate_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_itemmodel (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_jit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_jit (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qml_list_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_list_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_locale (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_network (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_object_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_object_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_preview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_preview (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_profiler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_profiler (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_python", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_python (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_table_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_table_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_worker_script", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_worker_script (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_xml_http_request", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_xml_http_request (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_xmllistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_xmllistmodel (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qt_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qt_framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_animatedimage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_animatedimage (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_canvas", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_canvas (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_designer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_designer (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_draganddrop (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_flipable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_flipable (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_gridview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_gridview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_itemview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_itemview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_listview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_particles", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_particles (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_path", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_path (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_pathview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_pathview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_pixmap_cache_threaded_download", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_pixmap_cache_threaded_download (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_positioners", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_positioners (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_repeater", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_repeater (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_shadereffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_shadereffect (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_sprite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_sprite (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_tableview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_treeview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_viewtransitions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_viewtransitions (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_res_setservers", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: res_setservers (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_schannel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: schannel (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sctp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sctp (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_securetransport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: securetransport (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_socks5", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: socks5 (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssl (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sspi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sspi (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stack_protector_strong", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector_strong (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_proxies", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_proxies (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_topleveldomain", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: topleveldomain (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_udpsocket", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: udpsocket (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_IS_MACOS_UNIVERSAL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_QPA_DEFAULT_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "cocoa" + }, + { + "name" : "QT_SOURCE_TREE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "A path to the source tree of the previously configured QtBase project." + } + ], + "type" : "PATH", + "value" : "/tmp/qt-20240222-75196-mh01f2/qt-everywhere-src-6.6.2/qtbase" + }, + { + "name" : "QT_UNITY_BUILD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable unity (jumbo) build" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_UNITY_BUILD_BATCH_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Unity build batch size" + } + ], + "type" : "STRING", + "value" : "32" + }, + { + "name" : "QT_USE_CCACHE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable the use of ccache" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_USE_VCPKG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable the use of vcpkg" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "QT_WILL_INSTALL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Boolean indicating if doing a Qt prefix build (vs non-prefix build)." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "Qt6BuildInternals_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6BuildInternals." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6BuildInternals" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6DBusTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6DBusTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6DBusTools" + }, + { + "name" : "Qt6DBus_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6DBus." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6DBus" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6Network_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Network." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Network" + }, + { + "name" : "Qt6OpenGL_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6OpenGL." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6OpenGL" + }, + { + "name" : "Qt6QmlCompilerPlusPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivate." + } + ], + "type" : "PATH", + "value" : "Qt6QmlCompilerPlusPrivate_DIR-NOTFOUND" + }, + { + "name" : "Qt6QmlIntegration_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlIntegration." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration" + }, + { + "name" : "Qt6QmlModels_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlModels." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlModels" + }, + { + "name" : "Qt6QmlTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlTools" + }, + { + "name" : "Qt6Qml_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Qml." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Qml" + }, + { + "name" : "Qt6Quick_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Quick." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Quick" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6" + }, + { + "name" : "TEST_arch_arm64_subarch_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "TEST_arch_arm64_subarch_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "TEST_arch_arm64_subarch_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "TEST_architecture_arch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "arm64" + }, + { + "name" : "TEST_buildAbi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "arm64-little_endian-lp64" + }, + { + "name" : "TEST_ld_version_script", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "TEST_subarch_result", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "neon;crc32;crypto" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WARNINGS_ARE_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build Qt with warnings as errors" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "WrapOpenGL_AGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/AGL.framework" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew" + }, + { + "name" : "__qt_qml_macros_module_base_dir", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/lib/cmake/Qt6Qml" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json new file mode 100644 index 0000000..98c951e --- /dev/null +++ b/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json @@ -0,0 +1,4959 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "path" : "qmlcomponents" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in" + }, + { + "path" : "qmlmodules" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "path" : "insight" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePrintHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FeatureSummary.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtAndroidHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtAppHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtAutoDetectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtAutogenHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildInformation.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildOptionsHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildPathsHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoExamplesHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtDbusHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtDocsHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtExecutableHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtFlagHandlingHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtFrameworkHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtGlobalStateHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtHeadersClean.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtInstallHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtJavaHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtLalrHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtMkspecHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtModuleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPkgConfigHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPlatformTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPostProcessHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPriHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPrlHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtQmakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtResourceHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtRpathHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtSanitizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtSeparateDebugInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtSimdHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtSyncQtHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtToolchainHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtUnityBuildHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtWasmHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtWrapperScriptHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPlatformSupport.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPkgConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "path" : "content/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "path" : "imports/CMakeLists.txt" + }, + { + "path" : "imports/Bolt_Dash/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "path" : "imports/Backend/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/Users/mason/Documents/Code/dash-cpp/build", + "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json b/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json new file mode 100644 index 0000000..e1e8069 --- /dev/null +++ b/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json @@ -0,0 +1,1931 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 13, + 14 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-47816394be0d82548d3c.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "build" : "_deps/ds-build", + "childIndexes" : + [ + 2 + ], + "jsonFile" : "directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + }, + { + "build" : "_deps/ds-build/src", + "childIndexes" : + [ + 3 + ], + "jsonFile" : "directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src" + }, + { + "build" : "_deps/ds-build/src/imports", + "childIndexes" : + [ + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "jsonFile" : "directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 2, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports" + }, + { + "build" : "_deps/ds-build/src/imports/components", + "jsonFile" : "directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "targetIndexes" : + [ + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 159, + 160, + 161, + 162 + ] + }, + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "jsonFile" : "directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "targetIndexes" : + [ + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94 + ] + }, + { + "build" : "_deps/ds-build/src/imports/flowview", + "jsonFile" : "directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "targetIndexes" : + [ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] + }, + { + "build" : "_deps/ds-build/src/imports/logichelper", + "jsonFile" : "directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "targetIndexes" : + [ + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142 + ] + }, + { + "build" : "_deps/ds-build/src/imports/multitext", + "jsonFile" : "directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "targetIndexes" : + [ + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158 + ] + }, + { + "build" : "_deps/ds-build/src/imports/tools", + "childIndexes" : + [ + 10, + 11 + ], + "jsonFile" : "directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools" + }, + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "jsonFile" : "directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 9, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "targetIndexes" : + [ + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110 + ] + }, + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "jsonFile" : "directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 9, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "targetIndexes" : + [ + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126 + ] + }, + { + "build" : "_deps/ds-build/src/imports/application", + "jsonFile" : "directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 3, + "projectIndex" : 0, + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", + "targetIndexes" : + [ + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62 + ] + }, + { + "build" : "content", + "jsonFile" : "directory-content-Debug-61a361743d88a3b42c45.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "content", + "targetIndexes" : + [ + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178 + ] + }, + { + "build" : "imports", + "childIndexes" : + [ + 15, + 16 + ], + "jsonFile" : "directory-imports-Debug-615074570c3908afab44.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "imports" + }, + { + "build" : "imports/Bolt_Dash", + "jsonFile" : "directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 14, + "projectIndex" : 0, + "source" : "imports/Bolt_Dash", + "targetIndexes" : + [ + 11, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] + }, + { + "build" : "imports/Backend", + "jsonFile" : "directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 14, + "projectIndex" : 0, + "source" : "imports/Backend", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 179 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "name" : "Bolt_DashApp", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 16, + "id" : "Backend::@b539f45bba5ba55bae2a", + "jsonFile" : "target-Backend-Debug-de734fde861fd851f012.json", + "name" : "Backend", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json", + "name" : "BackendPlugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json", + "name" : "BackendPlugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json", + "name" : "BackendPlugin_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json", + "name" : "BackendPlugin_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json", + "name" : "BackendPlugin_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json", + "name" : "BackendPlugin_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json", + "name" : "BackendPlugin_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json", + "name" : "BackendPluginplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a", + "jsonFile" : "target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json", + "name" : "BackendPluginplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "Backend_autogen::@b539f45bba5ba55bae2a", + "jsonFile" : "target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json", + "name" : "Backend_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json", + "name" : "Bolt_Dash", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json", + "name" : "Bolt_DashApp", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json", + "name" : "Bolt_DashApp_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json", + "name" : "Bolt_DashApp_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json", + "name" : "Bolt_DashApp_qmlimportscan", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json", + "name" : "Bolt_DashApp_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json", + "name" : "Bolt_DashApp_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json", + "name" : "Bolt_DashApp_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json", + "name" : "Bolt_DashApp_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json", + "name" : "Bolt_DashApp_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json", + "name" : "Bolt_Dash_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json", + "name" : "Bolt_Dash_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json", + "name" : "Bolt_Dash_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json", + "name" : "Bolt_Dash_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json", + "name" : "Bolt_Dash_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json", + "name" : "Bolt_Dash_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json", + "name" : "Bolt_Dash_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json", + "name" : "Bolt_Dash_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json", + "name" : "Bolt_Dash_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json", + "name" : "Bolt_Dash_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json", + "name" : "Bolt_Dash_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json", + "name" : "Bolt_Dashplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json", + "name" : "Bolt_Dashplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json", + "name" : "Bolt_Dashplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json", + "name" : "Bolt_Dashplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView-Debug-9ae8992f3002d4d4605a.json", + "name" : "FlowView", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_autogen-Debug-067fd34decd4a498dab5.json", + "name" : "FlowView_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json", + "name" : "FlowView_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json", + "name" : "FlowView_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json", + "name" : "FlowView_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json", + "name" : "FlowView_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json", + "name" : "FlowView_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json", + "name" : "FlowView_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json", + "name" : "FlowView_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json", + "name" : "FlowView_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowView_tooling-Debug-8926159527a4d8731d7a.json", + "name" : "FlowView_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json", + "name" : "FlowViewplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json", + "name" : "FlowViewplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json", + "name" : "FlowViewplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232", + "jsonFile" : "target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json", + "name" : "FlowViewplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json", + "name" : "QuickStudioApplication", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json", + "name" : "QuickStudioApplication_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json", + "name" : "QuickStudioApplication_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json", + "name" : "QuickStudioApplication_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json", + "name" : "QuickStudioApplication_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json", + "name" : "QuickStudioApplication_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json", + "name" : "QuickStudioApplication_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json", + "name" : "QuickStudioApplication_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json", + "name" : "QuickStudioApplicationplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json", + "name" : "QuickStudioApplicationplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json", + "name" : "QuickStudioApplicationplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2", + "jsonFile" : "target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json", + "name" : "QuickStudioApplicationplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json", + "name" : "QuickStudioComponents", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json", + "name" : "QuickStudioComponents_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json", + "name" : "QuickStudioComponents_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json", + "name" : "QuickStudioComponents_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json", + "name" : "QuickStudioComponents_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json", + "name" : "QuickStudioComponents_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json", + "name" : "QuickStudioComponents_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json", + "name" : "QuickStudioComponents_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json", + "name" : "QuickStudioComponents_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json", + "name" : "QuickStudioComponents_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json", + "name" : "QuickStudioComponents_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json", + "name" : "QuickStudioComponents_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json", + "name" : "QuickStudioComponentsplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json", + "name" : "QuickStudioComponentsplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json", + "name" : "QuickStudioComponentsplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json", + "name" : "QuickStudioComponentsplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json", + "name" : "QuickStudioEffects", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json", + "name" : "QuickStudioEffects_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json", + "name" : "QuickStudioEffects_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json", + "name" : "QuickStudioEffects_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json", + "name" : "QuickStudioEffects_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json", + "name" : "QuickStudioEffects_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json", + "name" : "QuickStudioEffects_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json", + "name" : "QuickStudioEffects_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json", + "name" : "QuickStudioEffects_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json", + "name" : "QuickStudioEffects_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json", + "name" : "QuickStudioEffects_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json", + "name" : "QuickStudioEffects_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json", + "name" : "QuickStudioEffectsplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json", + "name" : "QuickStudioEffectsplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json", + "name" : "QuickStudioEffectsplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24", + "jsonFile" : "target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json", + "name" : "QuickStudioEffectsplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json", + "name" : "QuickStudioEventSimulator", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json", + "name" : "QuickStudioEventSimulator_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json", + "name" : "QuickStudioEventSimulator_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json", + "name" : "QuickStudioEventSimulator_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json", + "name" : "QuickStudioEventSimulator_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json", + "name" : "QuickStudioEventSimulator_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json", + "name" : "QuickStudioEventSimulator_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json", + "name" : "QuickStudioEventSimulator_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json", + "name" : "QuickStudioEventSimulator_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json", + "name" : "QuickStudioEventSimulator_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json", + "name" : "QuickStudioEventSimulator_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json", + "name" : "QuickStudioEventSimulator_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json", + "name" : "QuickStudioEventSimulatorplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json", + "name" : "QuickStudioEventSimulatorplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json", + "name" : "QuickStudioEventSimulatorplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922", + "jsonFile" : "target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json", + "name" : "QuickStudioEventSimulatorplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json", + "name" : "QuickStudioEventSystem", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json", + "name" : "QuickStudioEventSystem_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json", + "name" : "QuickStudioEventSystem_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json", + "name" : "QuickStudioEventSystem_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json", + "name" : "QuickStudioEventSystem_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json", + "name" : "QuickStudioEventSystem_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json", + "name" : "QuickStudioEventSystem_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json", + "name" : "QuickStudioEventSystem_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json", + "name" : "QuickStudioEventSystem_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json", + "name" : "QuickStudioEventSystem_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json", + "name" : "QuickStudioEventSystem_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json", + "name" : "QuickStudioEventSystem_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json", + "name" : "QuickStudioEventSystemplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json", + "name" : "QuickStudioEventSystemplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json", + "name" : "QuickStudioEventSystemplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db", + "jsonFile" : "target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json", + "name" : "QuickStudioEventSystemplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json", + "name" : "QuickStudioLogicHelper", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json", + "name" : "QuickStudioLogicHelper_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json", + "name" : "QuickStudioLogicHelper_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json", + "name" : "QuickStudioLogicHelper_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json", + "name" : "QuickStudioLogicHelper_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json", + "name" : "QuickStudioLogicHelper_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json", + "name" : "QuickStudioLogicHelper_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json", + "name" : "QuickStudioLogicHelper_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json", + "name" : "QuickStudioLogicHelper_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json", + "name" : "QuickStudioLogicHelper_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json", + "name" : "QuickStudioLogicHelper_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json", + "name" : "QuickStudioLogicHelper_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json", + "name" : "QuickStudioLogicHelperplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json", + "name" : "QuickStudioLogicHelperplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json", + "name" : "QuickStudioLogicHelperplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8", + "jsonFile" : "target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json", + "name" : "QuickStudioLogicHelperplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json", + "name" : "QuickStudioMultiText", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json", + "name" : "QuickStudioMultiText_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json", + "name" : "QuickStudioMultiText_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json", + "name" : "QuickStudioMultiText_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json", + "name" : "QuickStudioMultiText_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json", + "name" : "QuickStudioMultiText_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json", + "name" : "QuickStudioMultiText_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json", + "name" : "QuickStudioMultiText_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json", + "name" : "QuickStudioMultiText_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json", + "name" : "QuickStudioMultiText_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json", + "name" : "QuickStudioMultiText_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json", + "name" : "QuickStudioMultiText_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json", + "name" : "QuickStudioMultiTextplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json", + "name" : "QuickStudioMultiTextplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json", + "name" : "QuickStudioMultiTextplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2", + "jsonFile" : "target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json", + "name" : "QuickStudioMultiTextplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "all_qmllint::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-all_qmllint-Debug-0f40c30e93bae5da3a81.json", + "name" : "all_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "all_qmllint_json::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-all_qmllint_json-Debug-d117ee47724a917c25a6.json", + "name" : "all_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "all_qmllint_module::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json", + "name" : "all_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda", + "jsonFile" : "target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json", + "name" : "all_qmltyperegistrations", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content-Debug-c060ad8002349d7d4719.json", + "name" : "content", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json", + "name" : "content_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json", + "name" : "content_automoc_json_extraction", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmlcache::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmlcache-Debug-25ce992711465a39f5da.json", + "name" : "content_qmlcache", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json", + "name" : "content_qmlcache_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmllint::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json", + "name" : "content_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json", + "name" : "content_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json", + "name" : "content_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmltyperegistration-Debug-6619c21d07987003e504.json", + "name" : "content_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_resources_1::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json", + "name" : "content_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_resources_2::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json", + "name" : "content_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "content_tooling::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json", + "name" : "content_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "contentplugin::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin-Debug-e8dbacf35574156a146d.json", + "name" : "contentplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_autogen-Debug-3519fac822a7f673e653.json", + "name" : "contentplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "contentplugin_init::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_init-Debug-52add43ca8eedc831dec.json", + "name" : "contentplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json", + "name" : "contentplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "qt_internal_plugins::@b539f45bba5ba55bae2a", + "jsonFile" : "target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "/Users/mason/Documents/Code/dash-cpp/build", + "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + "version" : + { + "major" : 2, + "minor" : 6 + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json b/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json new file mode 100644 index 0000000..1ace688 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 42, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "Bolt_DashApp" + ], + "targetId" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "targetIndex" : 12, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json new file mode 100644 index 0000000..6584403 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json new file mode 100644 index 0000000..04c52ab --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json new file mode 100644 index 0000000..e85ed5e --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json new file mode 100644 index 0000000..26c6c92 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json new file mode 100644 index 0000000..d2bf57e --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json new file mode 100644 index 0000000..1ac8cdd --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json new file mode 100644 index 0000000..b93c6aa --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json new file mode 100644 index 0000000..5a0b15d --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json new file mode 100644 index 0000000..8101e01 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json new file mode 100644 index 0000000..de53846 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json new file mode 100644 index 0000000..b973bdf --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + } +} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json new file mode 100644 index 0000000..3f920e4 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + } +} diff --git a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json new file mode 100644 index 0000000..4437fd9 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "content", + "source" : "content" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json new file mode 100644 index 0000000..6572549 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports", + "source" : "imports" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json b/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json new file mode 100644 index 0000000..a5b6694 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json new file mode 100644 index 0000000..9c2180d --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + } +} diff --git a/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json b/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json new file mode 100644 index 0000000..25ce36d --- /dev/null +++ b/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json @@ -0,0 +1,132 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Unix Makefiles" + }, + "paths" : + { + "cmake" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "cpack" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cpack", + "ctest" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ctest", + "root" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 27, + "patch" : 8, + "string" : "3.27.8", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-ad2e60b2d5fa1ddbf7d9.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "cache-v2-09572c2a4037f1c266b0.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-256c4d2247a2cba5e778.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-vscode" : + { + "query.json" : + { + "requests" : + [ + { + "kind" : "cache", + "version" : 2 + }, + { + "kind" : "codemodel", + "version" : 2 + }, + { + "kind" : "toolchains", + "version" : 1 + }, + { + "kind" : "cmakeFiles", + "version" : 1 + } + ], + "responses" : + [ + { + "jsonFile" : "cache-v2-09572c2a4037f1c266b0.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "codemodel-v2-ad2e60b2d5fa1ddbf7d9.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-256c4d2247a2cba5e778.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ] + } + } + } +} diff --git a/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json b/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json new file mode 100644 index 0000000..d415e73 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json @@ -0,0 +1,114 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "imports/Backend/libBackend.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Backend_autogen::@b539f45bba5ba55bae2a" + } + ], + "id" : "Backend::@b539f45bba5ba55bae2a", + "name" : "Backend", + "nameOnDisk" : "libBackend.a", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json b/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json new file mode 100644 index 0000000..d3e649f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json @@ -0,0 +1,568 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Backend/libBackendPlugin.dylib" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt6_add_qml_module", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 387, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 392, + "parent" : 1 + }, + { + "file" : 6 + }, + { + "command" : 7, + "file" : 6, + "line" : 10, + "parent" : 6 + }, + { + "file" : 5, + "parent" : 7 + }, + { + "command" : 7, + "file" : 5, + "line" : 164, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 6, + "file" : 4, + "line" : 53, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 5, + "file" : 3, + "line" : 62, + "parent" : 12 + }, + { + "command" : 7, + "file" : 5, + "line" : 164, + "parent" : 8 + }, + { + "file" : 8, + "parent" : 14 + }, + { + "command" : 6, + "file" : 8, + "line" : 53, + "parent" : 15 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 5, + "file" : 7, + "line" : 62, + "parent" : 17 + }, + { + "command" : 9, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 8, + "file" : 1, + "line" : 2752, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 2777, + "parent" : 19 + }, + { + "command" : 11, + "file" : 1, + "line" : 2582, + "parent" : 19 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 22 + }, + { + "command" : 10, + "file" : 1, + "line" : 2743, + "parent" : 19 + }, + { + "command" : 14, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 25 + }, + { + "command" : 12, + "file" : 0, + "line" : 2150, + "parent" : 26 + }, + { + "command" : 10, + "file" : 0, + "line" : 1794, + "parent" : 27 + }, + { + "command" : 10, + "file" : 1, + "line" : 623, + "parent" : 1 + }, + { + "file" : 2, + "line" : -1, + "parent" : 0 + }, + { + "command" : 16, + "file" : 9, + "line" : 1, + "parent" : 30 + }, + { + "command" : 15, + "file" : 0, + "line" : 764, + "parent" : 31 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 32 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" + } + ], + "defines" : + [ + { + "define" : "BackendPlugin_EXPORTS" + }, + { + "backtrace" : 5, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include" + }, + { + "backtrace" : 20, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 5 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 3, + 4, + 7 + ] + } + ], + "dependencies" : + [ + { + "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a" + }, + { + "backtrace" : 0, + "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a" + } + ], + "id" : "BackendPlugin::@b539f45bba5ba55bae2a", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "fragment" : "-iframework /opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/opt/homebrew/lib", + "role" : "libraries" + }, + { + "backtrace" : 5, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 18, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 18, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "BackendPlugin", + "nameOnDisk" : "libBackendPlugin.dylib", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 3, + 4, + 7 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 8, + 9, + 14, + 15, + 16 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 5, + 6 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 29, + "compileGroupIndex" : 0, + "path" : "imports/Backend/can.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 29, + "path" : "imports/Backend/can.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 29, + "path" : "imports/Backend/backend.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 29, + "compileGroupIndex" : 0, + "path" : "imports/Backend/backend.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 33, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 33, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json b/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json new file mode 100644 index 0000000..c09b093 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a", + "isGeneratorProvided" : true, + "name" : "BackendPlugin_autogen", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json b/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json new file mode 100644 index 0000000..89febf2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a", + "name" : "BackendPlugin_automoc_json_extraction", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json new file mode 100644 index 0000000..139cabd --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a", + "name" : "BackendPlugin_qmllint", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json new file mode 100644 index 0000000..be52053 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a", + "name" : "BackendPlugin_qmllint_json", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json new file mode 100644 index 0000000..d060528 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a", + "name" : "BackendPlugin_qmllint_module", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json new file mode 100644 index 0000000..00e1db6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a", + "name" : "BackendPlugin_qmltyperegistration", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json b/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json new file mode 100644 index 0000000..027c9b3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json @@ -0,0 +1,369 @@ +{ + "artifacts" : + [ + { + "path" : "qml/Backend/libBackendPluginplugin.dylib" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "file" : 6 + }, + { + "command" : 8, + "file" : 6, + "line" : 10, + "parent" : 8 + }, + { + "file" : 5, + "parent" : 9 + }, + { + "command" : 8, + "file" : 5, + "line" : 164, + "parent" : 10 + }, + { + "file" : 4, + "parent" : 11 + }, + { + "command" : 7, + "file" : 4, + "line" : 53, + "parent" : 12 + }, + { + "file" : 3, + "parent" : 13 + }, + { + "command" : 6, + "file" : 3, + "line" : 62, + "parent" : 14 + }, + { + "command" : 8, + "file" : 5, + "line" : 164, + "parent" : 10 + }, + { + "file" : 8, + "parent" : 16 + }, + { + "command" : 7, + "file" : 8, + "line" : 53, + "parent" : 17 + }, + { + "file" : 7, + "parent" : 18 + }, + { + "command" : 6, + "file" : 7, + "line" : 62, + "parent" : 19 + }, + { + "command" : 9, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 10, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" + } + ], + "defines" : + [ + { + "define" : "BackendPluginplugin_EXPORTS" + }, + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 21, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 21, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "BackendPlugin::@b539f45bba5ba55bae2a" + }, + { + "backtrace" : 0, + "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a" + } + ], + "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "fragment" : "-iframework /opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/Backend -Wl,-rpath,/opt/homebrew/lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "libBackendPlugin.dylib", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "BackendPluginplugin", + "nameOnDisk" : "libBackendPluginplugin.dylib", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json b/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json new file mode 100644 index 0000000..b907e67 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a", + "isGeneratorProvided" : true, + "name" : "BackendPluginplugin_autogen", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json b/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json new file mode 100644 index 0000000..d0ec91e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Backend_autogen::@b539f45bba5ba55bae2a", + "isGeneratorProvided" : true, + "name" : "Backend_autogen", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json new file mode 100644 index 0000000..181ac4c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json @@ -0,0 +1,532 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/libBolt_Dash.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 23 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 24 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 25 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10 + ] + } + ], + "dependencies" : + [ + { + "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929" + }, + { + "backtrace" : 7, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dash::@4896ae50d004c4a48929", + "name" : "Bolt_Dash", + "nameOnDisk" : "libBolt_Dash.a", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 12, + 13, + 21, + 22, + 23 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "imports/Bolt_Dash/Constants.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "imports/Bolt_Dash/DirectoryFontLoader.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "imports/Bolt_Dash/EventListModel.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "imports/Bolt_Dash/EventListSimulator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 26, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json new file mode 100644 index 0000000..d245c50 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json @@ -0,0 +1,2908 @@ +{ + "artifacts" : + [ + { + "path" : "Bolt_DashApp" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "__qt_internal_propagate_object_files", + "__qt_internal_propagate_object_library", + "qt6_add_qml_module", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "include", + "set_target_properties", + "find_package", + "qt6_add_qml_plugin", + "add_dependencies", + "_qt_internal_scan_qml_imports", + "_qt_internal_generate_deploy_qml_imports_script", + "cmake_language", + "_qt_internal_finalize_executable", + "qt6_finalize_target", + "target_compile_definitions", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt_add_resources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "qmlcomponents", + "qmlmodules", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 815, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 575, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 626, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 42, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 8, + "file" : 3, + "line" : 2, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 9 + }, + { + "file" : 4 + }, + { + "command" : 8, + "file" : 4, + "line" : 2, + "parent" : 11 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 13 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 14 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 6, + "parent" : 16 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 17 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 18 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 19 + }, + { + "file" : 6 + }, + { + "command" : 8, + "file" : 6, + "line" : 6, + "parent" : 21 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 22 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 23 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 24 + }, + { + "file" : 7 + }, + { + "command" : 8, + "file" : 7, + "line" : 2, + "parent" : 26 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 27 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 28 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 29 + }, + { + "file" : 8 + }, + { + "command" : 8, + "file" : 8, + "line" : 2, + "parent" : 31 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 32 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 33 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 34 + }, + { + "file" : 9 + }, + { + "command" : 8, + "file" : 9, + "line" : 6, + "parent" : 36 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 37 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 38 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 39 + }, + { + "file" : 10 + }, + { + "command" : 8, + "file" : 10, + "line" : 7, + "parent" : 41 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 42 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 43 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 44 + }, + { + "file" : 11 + }, + { + "command" : 8, + "file" : 11, + "line" : 5, + "parent" : 46 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 47 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 48 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 49 + }, + { + "file" : 12 + }, + { + "command" : 8, + "file" : 12, + "line" : 10, + "parent" : 51 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 52 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 53 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 54 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 7 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 56 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 57 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 58 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 59 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 60 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 7 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 62 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 63 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 64 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 65 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 66 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 62 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 68 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 69 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 70 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 71 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 72 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 12 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 74 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 75 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 76 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 77 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 78 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 12 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 80 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 81 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 82 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 83 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 84 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 80 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 86 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 87 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 88 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 89 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 90 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 17 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 92 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 93 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 94 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 95 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 96 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 22 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 98 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 99 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 100 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 101 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 102 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 98 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 104 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 105 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 106 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 107 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 108 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 27 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 110 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 111 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 112 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 113 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 114 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 27 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 116 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 117 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 118 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 119 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 120 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 116 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 122 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 123 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 124 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 125 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 126 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 32 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 128 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 129 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 130 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 131 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 132 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 32 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 134 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 135 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 136 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 137 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 138 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 134 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 140 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 141 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 142 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 143 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 144 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 37 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 146 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 147 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 148 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 149 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 150 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 37 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 152 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 153 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 154 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 155 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 156 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 152 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 158 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 159 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 160 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 161 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 162 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 42 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 164 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 165 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 166 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 167 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 168 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 42 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 170 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 171 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 172 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 173 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 174 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 170 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 176 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 177 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 178 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 179 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 180 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 47 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 182 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 183 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 184 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 185 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 186 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 47 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 188 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 189 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 190 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 191 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 192 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 188 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 194 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 195 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 196 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 197 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 198 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 52 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 200 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 201 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 202 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 203 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 204 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 52 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 206 + }, + { + "command" : 12, + "file" : 2, + "line" : 1144, + "parent" : 207 + }, + { + "command" : 7, + "file" : 2, + "line" : 1001, + "parent" : 208 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 209 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 210 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 206 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 212 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 213 + }, + { + "command" : 7, + "file" : 0, + "line" : 1787, + "parent" : 214 + }, + { + "command" : 6, + "file" : 0, + "line" : 1727, + "parent" : 215 + }, + { + "command" : 5, + "file" : 0, + "line" : 1675, + "parent" : 216 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 15, + "file" : 1, + "line" : 32, + "parent" : 0 + }, + { + "file" : 13, + "parent" : 219 + }, + { + "command" : 5, + "file" : 13, + "line" : 18, + "parent" : 220 + }, + { + "command" : 15, + "file" : 1, + "line" : 35, + "parent" : 0 + }, + { + "file" : 14, + "parent" : 222 + }, + { + "command" : 5, + "file" : 14, + "line" : 14, + "parent" : 223 + }, + { + "command" : 17, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "file" : 17, + "parent" : 225 + }, + { + "command" : 17, + "file" : 17, + "line" : 164, + "parent" : 226 + }, + { + "file" : 16, + "parent" : 227 + }, + { + "command" : 15, + "file" : 16, + "line" : 52, + "parent" : 228 + }, + { + "file" : 15, + "parent" : 229 + }, + { + "command" : 16, + "file" : 15, + "line" : 62, + "parent" : 230 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 7 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 232 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 12 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 234 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 17 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 236 + }, + { + "command" : 17, + "file" : 17, + "line" : 164, + "parent" : 226 + }, + { + "file" : 19, + "parent" : 238 + }, + { + "command" : 15, + "file" : 19, + "line" : 52, + "parent" : 239 + }, + { + "file" : 18, + "parent" : 240 + }, + { + "command" : 16, + "file" : 18, + "line" : 62, + "parent" : 241 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 22 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 243 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 27 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 245 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 32 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 247 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 37 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 249 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 42 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 251 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 47 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 253 + }, + { + "command" : 18, + "file" : 2, + "line" : 611, + "parent" : 52 + }, + { + "command" : 5, + "file" : 2, + "line" : 1937, + "parent" : 255 + }, + { + "command" : 17, + "file" : 17, + "line" : 164, + "parent" : 226 + }, + { + "file" : 21, + "parent" : 257 + }, + { + "command" : 15, + "file" : 21, + "line" : 53, + "parent" : 258 + }, + { + "file" : 20, + "parent" : 259 + }, + { + "command" : 16, + "file" : 20, + "line" : 62, + "parent" : 260 + }, + { + "command" : 5, + "file" : 0, + "line" : 576, + "parent" : 2 + }, + { + "command" : 17, + "file" : 17, + "line" : 164, + "parent" : 226 + }, + { + "file" : 23, + "parent" : 263 + }, + { + "command" : 15, + "file" : 23, + "line" : 53, + "parent" : 264 + }, + { + "file" : 22, + "parent" : 265 + }, + { + "command" : 16, + "file" : 22, + "line" : 62, + "parent" : 266 + }, + { + "command" : 8, + "file" : 14, + "line" : 4, + "parent" : 223 + }, + { + "command" : 14, + "file" : 2, + "line" : 633, + "parent" : 268 + }, + { + "command" : 19, + "file" : 2, + "line" : 2441, + "parent" : 269 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 24, + "file" : 24, + "line" : 1, + "parent" : 271 + }, + { + "command" : 23, + "file" : 0, + "line" : 769, + "parent" : 272 + }, + { + "command" : 22, + "file" : 0, + "line" : 675, + "parent" : 273 + }, + { + "command" : 21, + "file" : 0, + "line" : 675, + "parent" : 274 + }, + { + "command" : 20, + "file" : 2, + "line" : 3122, + "parent" : 275 + }, + { + "command" : 19, + "file" : 2, + "line" : 2974, + "parent" : 276 + }, + { + "command" : 25, + "file" : 13, + "line" : 31, + "parent" : 220 + }, + { + "command" : 27, + "file" : 2, + "line" : 540, + "parent" : 268 + }, + { + "command" : 26, + "file" : 2, + "line" : 2752, + "parent" : 279 + }, + { + "command" : 26, + "file" : 2, + "line" : 2777, + "parent" : 279 + }, + { + "command" : 29, + "file" : 1, + "line" : 18, + "parent" : 0 + }, + { + "command" : 11, + "file" : 0, + "line" : 389, + "parent" : 282 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 283 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 284 + }, + { + "command" : 28, + "file" : 0, + "line" : 1794, + "parent" : 285 + }, + { + "command" : 30, + "file" : 2, + "line" : 2582, + "parent" : 279 + }, + { + "command" : 28, + "file" : 0, + "line" : 1210, + "parent" : 287 + }, + { + "command" : 28, + "file" : 2, + "line" : 2743, + "parent" : 279 + }, + { + "command" : 11, + "file" : 2, + "line" : 584, + "parent" : 268 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 290 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 291 + }, + { + "command" : 28, + "file" : 0, + "line" : 1794, + "parent" : 292 + }, + { + "command" : 28, + "file" : 2, + "line" : 2224, + "parent" : 269 + }, + { + "command" : 13, + "file" : 2, + "line" : 2328, + "parent" : 269 + }, + { + "command" : 28, + "file" : 2, + "line" : 1152, + "parent" : 295 + }, + { + "command" : 28, + "file" : 2, + "line" : 2377, + "parent" : 269 + }, + { + "command" : 11, + "file" : 2, + "line" : 2460, + "parent" : 269 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 298 + }, + { + "command" : 9, + "file" : 0, + "line" : 2150, + "parent" : 299 + }, + { + "command" : 28, + "file" : 0, + "line" : 1794, + "parent" : 300 + }, + { + "command" : 31, + "file" : 0, + "line" : 764, + "parent" : 272 + }, + { + "command" : 28, + "file" : 0, + "line" : 1878, + "parent" : 302 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 278, + "define" : "BULD_QDS_COMPONENTS=true" + }, + { + "backtrace" : 262, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_QMLMODELS_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 218, + "define" : "QT_QUICK_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQuick.framework" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQmlModels.framework" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtOpenGL.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include" + }, + { + "backtrace" : 280, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 281, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework/Headers" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQuick.framework/Headers" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQmlModels.framework/Headers" + }, + { + "backtrace" : 218, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtOpenGL.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 262 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 4, + 5, + 7, + 8, + 9 + ] + } + ], + "dependencies" : + [ + { + "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 270, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 277, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffects::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 221, + "id" : "FlowView::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 221, + "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 221, + "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 221, + "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 221, + "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulator::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db" + }, + { + "backtrace" : 221, + "id" : "QuickStudioApplication::@a324641c06033e250fc2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2" + }, + { + "backtrace" : 221, + "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2" + }, + { + "backtrace" : 224, + "id" : "content::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "content_resources_1::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "contentplugin::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "content_qmlcache::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "content_resources_2::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "contentplugin_init::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dash::@4896ae50d004c4a48929" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" + }, + { + "backtrace" : 224, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" + } + ], + "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "/opt/homebrew" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-g", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "fragment" : "-iframework /opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/opt/homebrew/lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 25, + "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 30, + "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 40, + "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 45, + "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 50, + "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 55, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 61, + "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 67, + "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 73, + "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 79, + "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 85, + "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 91, + "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 97, + "fragment" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 103, + "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 109, + "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 115, + "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 121, + "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 127, + "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 133, + "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 139, + "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 145, + "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 151, + "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 157, + "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 163, + "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 169, + "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 175, + "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 181, + "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 187, + "fragment" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 193, + "fragment" : "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 199, + "fragment" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 205, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 211, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 217, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 218, + "fragment" : "/opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/FlowView/libFlowViewplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 221, + "fragment" : "qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 224, + "fragment" : "qml/content/libcontentplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 224, + "fragment" : "qml/Bolt_Dash/libBolt_Dashplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 231, + "fragment" : "/opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels", + "role" : "libraries" + }, + { + "backtrace" : 231, + "fragment" : "/opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL", + "role" : "libraries" + }, + { + "backtrace" : 233, + "fragment" : "_deps/ds-build/src/imports/components/libQuickStudioComponents.a", + "role" : "libraries" + }, + { + "backtrace" : 235, + "fragment" : "_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a", + "role" : "libraries" + }, + { + "backtrace" : 237, + "fragment" : "_deps/ds-build/src/imports/application/libQuickStudioApplication.a", + "role" : "libraries" + }, + { + "backtrace" : 218, + "fragment" : "/opt/homebrew/lib/QtGui.framework/Versions/A/QtGui", + "role" : "libraries" + }, + { + "fragment" : "-Xlinker -framework -Xlinker OpenGL", + "role" : "libraries" + }, + { + "fragment" : "-Xlinker -framework -Xlinker AGL", + "role" : "libraries" + }, + { + "backtrace" : 242, + "fragment" : "-framework AppKit", + "role" : "libraries" + }, + { + "backtrace" : 242, + "fragment" : "-framework ImageIO", + "role" : "libraries" + }, + { + "backtrace" : 242, + "fragment" : "-framework Metal", + "role" : "libraries" + }, + { + "backtrace" : 244, + "fragment" : "_deps/ds-build/src/imports/flowview/libFlowView.a", + "role" : "libraries" + }, + { + "backtrace" : 246, + "fragment" : "_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a", + "role" : "libraries" + }, + { + "backtrace" : 248, + "fragment" : "_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a", + "role" : "libraries" + }, + { + "backtrace" : 250, + "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a", + "role" : "libraries" + }, + { + "backtrace" : 252, + "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a", + "role" : "libraries" + }, + { + "backtrace" : 254, + "fragment" : "content/libcontent.a", + "role" : "libraries" + }, + { + "backtrace" : 256, + "fragment" : "imports/Bolt_Dash/libBolt_Dash.a", + "role" : "libraries" + }, + { + "backtrace" : 218, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 261, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 262, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 267, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 267, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Bolt_DashApp", + "nameOnDisk" : "Bolt_DashApp", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 4, + 5, + 7, + 8, + 9 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3, + 6, + 10, + 11, + 12, + 13, + 14, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 286, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 288, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 289, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 293, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 294, + "path" : "main.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 296, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 297, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 301, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 303, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 303, + "path" : "qtquickcontrols2.conf", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 303, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 303, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 303, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 262, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 218, + "path" : "/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json new file mode 100644 index 0000000..39c499a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json @@ -0,0 +1,120 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 0, + "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 0, + "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db" + }, + { + "backtrace" : 0, + "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2" + }, + { + "backtrace" : 0, + "id" : "contentplugin::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "Bolt_DashApp_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json new file mode 100644 index 0000000..69764da --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json @@ -0,0 +1,119 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "include", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 35, + "parent" : 0 + }, + { + "file" : 2, + "parent" : 1 + }, + { + "command" : 3, + "file" : 2, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 3 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 5 + }, + { + "command" : 5, + "file" : 0, + "line" : 1099, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_automoc_json_extraction", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json new file mode 100644 index 0000000..3a25869 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json @@ -0,0 +1,120 @@ +{ + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_scan_qml_imports", + "_qt_internal_generate_deploy_qml_imports_script", + "cmake_language", + "_qt_internal_finalize_executable", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "file" : 3, + "line" : -1, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 1, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 769, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 675, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 675, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 3122, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2972, + "parent" : 6 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmlimportscan", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 7, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json new file mode 100644 index 0000000..809a973 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 35, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json new file mode 100644 index 0000000..cb10466 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 35, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint_json", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json new file mode 100644 index 0000000..b533e7c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 35, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint_module", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json new file mode 100644 index 0000000..95cb113 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json @@ -0,0 +1,124 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 35, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 4 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmltyperegistration", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json new file mode 100644 index 0000000..d50c63d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json @@ -0,0 +1,104 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 35, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 4 + }, + { + "command" : 4, + "file" : 0, + "line" : 2443, + "parent" : 4 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_tooling", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json new file mode 100644 index 0000000..363f950 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dash_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json new file mode 100644 index 0000000..e3ae070 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_automoc_json_extraction", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json new file mode 100644 index 0000000..fc774da --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmlcache", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json new file mode 100644 index 0000000..cf917a0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dash_qmlcache_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json new file mode 100644 index 0000000..02047f9 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json new file mode 100644 index 0000000..e30c87c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint_json", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json new file mode 100644 index 0000000..38f075d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint_module", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json new file mode 100644 index 0000000..077dd15 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmltyperegistration", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json new file mode 100644 index 0000000..a6bbc91 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_resources_1", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json new file mode 100644 index 0000000..9a02310 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_resources_2", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json new file mode 100644 index 0000000..93f55a6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json @@ -0,0 +1,134 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_tooling", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 4, + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json new file mode 100644 index 0000000..6127199 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/Bolt_Dash/libBolt_Dashplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "Bolt_Dash::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", + "name" : "Bolt_Dashplugin", + "nameOnDisk" : "libBolt_Dashplugin.a", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json new file mode 100644 index 0000000..2e86bc4 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json new file mode 100644 index 0000000..6aa8cdf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", + "name" : "Bolt_Dashplugin_init", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json new file mode 100644 index 0000000..3957c36 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_init_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json b/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json new file mode 100644 index 0000000..d10c7a0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json @@ -0,0 +1,1179 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/flowview/libFlowView.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2338:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 61 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 62 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 63 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 48 + ] + } + ], + "dependencies" : + [ + { + "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 7, + "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 0, + "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232" + } + ], + "id" : "FlowView::@f99fd1e4b9fa497fd232", + "name" : "FlowView", + "nameOnDisk" : "libFlowView.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 48 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 15, + 17, + 19, + 21, + 23, + 25, + 27, + 29, + 31, + 33, + 35, + 37, + 39, + 41, + 43, + 45, + 47, + 49, + 50, + 78, + 79, + 80 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 25, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 27, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 29, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 31, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 33, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 34, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 35, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 37, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 38, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 39, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 40, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 41, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 42, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 43, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 44, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 45, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 46, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 47, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 48, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 49, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 50, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 51, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 52, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 53, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 54, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 55, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 56, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 57, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 58, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 59, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 60, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 64, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 64, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json b/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json new file mode 100644 index 0000000..b403b9e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232", + "isGeneratorProvided" : true, + "name" : "FlowView_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json b/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json new file mode 100644 index 0000000..002333d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232", + "name" : "FlowView_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json b/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json new file mode 100644 index 0000000..b3e726b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232" + } + ], + "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232", + "name" : "FlowView_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json b/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json new file mode 100644 index 0000000..79817ac --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232", + "isGeneratorProvided" : true, + "name" : "FlowView_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json new file mode 100644 index 0000000..8940d5a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232", + "name" : "FlowView_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json new file mode 100644 index 0000000..6a12a73 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232", + "name" : "FlowView_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json new file mode 100644 index 0000000..22e005f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232", + "name" : "FlowView_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json b/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json new file mode 100644 index 0000000..3e41794 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232", + "name" : "FlowView_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json b/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json new file mode 100644 index 0000000..a5643bf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232", + "name" : "FlowView_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json b/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json new file mode 100644 index 0000000..65828fe --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json @@ -0,0 +1,414 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232", + "name" : "FlowView_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json b/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json new file mode 100644 index 0000000..1d607d5 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json @@ -0,0 +1,262 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/FlowView/libFlowViewplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "FlowView::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 6, + "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 6, + "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 0, + "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232" + } + ], + "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232", + "name" : "FlowViewplugin", + "nameOnDisk" : "libFlowViewplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json new file mode 100644 index 0000000..69b38fd --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232", + "isGeneratorProvided" : true, + "name" : "FlowViewplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json new file mode 100644 index 0000000..3f182b0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232" + } + ], + "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232", + "name" : "FlowViewplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json new file mode 100644 index 0000000..8377c3e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232", + "isGeneratorProvided" : true, + "name" : "FlowViewplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/flowview", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json new file mode 100644 index 0000000..7892c99 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json @@ -0,0 +1,424 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/application/libQuickStudioApplication.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "target_link_libraries", + "qt6_add_qml_module", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 5, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 4, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 4, + "file" : 1, + "line" : 14, + "parent" : 0 + }, + { + "command" : 7, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 6, + "file" : 2, + "line" : 2752, + "parent" : 8 + }, + { + "command" : 6, + "file" : 2, + "line" : 2777, + "parent" : 8 + }, + { + "command" : 9, + "file" : 2, + "line" : 2582, + "parent" : 8 + }, + { + "command" : 8, + "file" : 0, + "line" : 1210, + "parent" : 11 + }, + { + "command" : 8, + "file" : 2, + "line" : 2743, + "parent" : 8 + }, + { + "command" : 8, + "file" : 2, + "line" : 623, + "parent" : 5 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 11, + "file" : 3, + "line" : 1, + "parent" : 15 + }, + { + "command" : 10, + "file" : 0, + "line" : 764, + "parent" : 16 + }, + { + "command" : 8, + "file" : 0, + "line" : 1878, + "parent" : 17 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 6 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 3 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2" + }, + { + "backtrace" : 0, + "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2" + } + ], + "id" : "QuickStudioApplication::@a324641c06033e250fc2", + "name" : "QuickStudioApplication", + "nameOnDisk" : "libQuickStudioApplication.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 5, + 6, + 10, + 11, + 12, + 13 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 7, + 8, + 9 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 12, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 13, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 14, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication_p.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 18, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 7, + "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json new file mode 100644 index 0000000..e9b6b49 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2", + "isGeneratorProvided" : true, + "name" : "QuickStudioApplication_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json new file mode 100644 index 0000000..4e8d640 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json new file mode 100644 index 0000000..1aa505e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json new file mode 100644 index 0000000..e8263f9 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json new file mode 100644 index 0000000..2a69870 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 1995, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json new file mode 100644 index 0000000..96a0e6a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json new file mode 100644 index 0000000..653271d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json @@ -0,0 +1,266 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtGui.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtGui.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2", + "name" : "QuickStudioApplication_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json new file mode 100644 index 0000000..33139ca --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json @@ -0,0 +1,258 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioApplication::@a324641c06033e250fc2" + }, + { + "backtrace" : 6, + "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2" + }, + { + "backtrace" : 0, + "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2" + } + ], + "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2", + "name" : "QuickStudioApplicationplugin", + "nameOnDisk" : "libQuickStudioApplicationplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json new file mode 100644 index 0000000..1fcba3c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2", + "isGeneratorProvided" : true, + "name" : "QuickStudioApplicationplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json new file mode 100644 index 0000000..957c046 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2" + } + ], + "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2", + "name" : "QuickStudioApplicationplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json new file mode 100644 index 0000000..c7195a2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2", + "isGeneratorProvided" : true, + "name" : "QuickStudioApplicationplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/application", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json new file mode 100644 index 0000000..21c2bb2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json @@ -0,0 +1,838 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/components/libQuickStudioComponents.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 1, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 41 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 42 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 43 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 7, + "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 0, + "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda" + } + ], + "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents", + "nameOnDisk" : "libQuickStudioComponents.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 15, + 17, + 19, + 21, + 23, + 25, + 27, + 29, + 30, + 31, + 48, + 49, + 50 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 25, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 27, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 29, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 31, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 33, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 34, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 35, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 37, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 38, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 39, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 40, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 44, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 44, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 44, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json new file mode 100644 index 0000000..dd0e91c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda", + "isGeneratorProvided" : true, + "name" : "QuickStudioComponents_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json new file mode 100644 index 0000000..ae80eaf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json new file mode 100644 index 0000000..ec4babc --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda" + } + ], + "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json new file mode 100644 index 0000000..c19b249 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda", + "isGeneratorProvided" : true, + "name" : "QuickStudioComponents_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json new file mode 100644 index 0000000..1002295 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json new file mode 100644 index 0000000..9e203fe --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json new file mode 100644 index 0000000..ffbddc1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json new file mode 100644 index 0000000..5279a79 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json new file mode 100644 index 0000000..abd7b95 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json new file mode 100644 index 0000000..a7906f0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json new file mode 100644 index 0000000..af524b5 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json @@ -0,0 +1,260 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponents_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json new file mode 100644 index 0000000..6a66a38 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 6, + "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 6, + "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 6, + "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 0, + "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda" + } + ], + "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponentsplugin", + "nameOnDisk" : "libQuickStudioComponentsplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json new file mode 100644 index 0000000..47c6d31 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda", + "isGeneratorProvided" : true, + "name" : "QuickStudioComponentsplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json new file mode 100644 index 0000000..7739b71 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda" + } + ], + "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda", + "name" : "QuickStudioComponentsplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json new file mode 100644 index 0000000..4216c10 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda", + "isGeneratorProvided" : true, + "name" : "QuickStudioComponentsplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json new file mode 100644 index 0000000..ddd18a6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json @@ -0,0 +1,1926 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 1, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 105 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 106 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 107 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 60, + 62, + 64, + 66, + 68, + 70, + 72, + 74, + 76, + 78, + 80, + 82, + 84, + 86, + 88, + 90, + 92 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 7, + "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24" + } + ], + "id" : "QuickStudioEffects::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects", + "nameOnDisk" : "libQuickStudioEffects.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 60, + 62, + 64, + 66, + 68, + 70, + 72, + 74, + 76, + 78, + 80, + 82, + 84, + 86, + 88, + 90, + 92 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 15, + 17, + 19, + 21, + 23, + 25, + 27, + 29, + 31, + 33, + 35, + 37, + 39, + 41, + 43, + 45, + 47, + 49, + 51, + 53, + 55, + 57, + 59, + 61, + 63, + 65, + 67, + 69, + 71, + 73, + 75, + 77, + 79, + 81, + 83, + 85, + 87, + 89, + 91, + 93, + 94, + 95, + 144, + 145, + 146 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 25, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 27, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 29, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 31, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 33, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 34, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 35, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 37, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 38, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 39, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 40, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 41, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 42, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 43, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 44, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 45, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 46, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 47, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 48, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 49, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 50, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 51, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 52, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 53, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 54, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 55, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 56, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 57, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 58, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 59, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 60, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 61, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 62, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 63, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 64, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 65, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 66, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 67, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 68, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 69, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 71, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 72, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 73, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 74, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 75, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 76, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 77, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 78, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 79, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 80, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 81, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 82, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 83, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 84, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 85, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 86, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 87, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 88, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 89, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 90, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 91, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 92, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 93, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 94, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 95, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 96, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 97, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 98, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 99, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 100, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 101, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 102, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 103, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 104, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 108, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 108, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 108, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json new file mode 100644 index 0000000..6abfd81 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24", + "isGeneratorProvided" : true, + "name" : "QuickStudioEffects_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json new file mode 100644 index 0000000..136b290 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json new file mode 100644 index 0000000..2d9fded --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24" + } + ], + "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json new file mode 100644 index 0000000..72a4417 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24", + "isGeneratorProvided" : true, + "name" : "QuickStudioEffects_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json new file mode 100644 index 0000000..3961427 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json new file mode 100644 index 0000000..a3a7ef1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json new file mode 100644 index 0000000..1d7e293 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json new file mode 100644 index 0000000..4c6a66f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json new file mode 100644 index 0000000..e262d1a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json new file mode 100644 index 0000000..e2f0744 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json new file mode 100644 index 0000000..d2e8d7a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json @@ -0,0 +1,708 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffects_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json new file mode 100644 index 0000000..1b45e4f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioEffects::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24" + } + ], + "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffectsplugin", + "nameOnDisk" : "libQuickStudioEffectsplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json new file mode 100644 index 0000000..00c1bcf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24", + "isGeneratorProvided" : true, + "name" : "QuickStudioEffectsplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json new file mode 100644 index 0000000..ed38f77 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24" + } + ], + "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24", + "name" : "QuickStudioEffectsplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json new file mode 100644 index 0000000..6c362e2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24", + "isGeneratorProvided" : true, + "name" : "QuickStudioEffectsplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/effects_qt6", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json new file mode 100644 index 0000000..b79072d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json @@ -0,0 +1,464 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 19 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 20 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 21 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922" + }, + { + "backtrace" : 7, + "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922" + } + ], + "id" : "QuickStudioEventSimulator::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator", + "nameOnDisk" : "libQuickStudioEventSimulator.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 8, + 9, + 15, + 16, + 17 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13, + 14 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json new file mode 100644 index 0000000..9c41d66 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSimulator_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json new file mode 100644 index 0000000..9d83a86 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json new file mode 100644 index 0000000..95e6fde --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922" + } + ], + "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json new file mode 100644 index 0000000..1c03cd9 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSimulator_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json new file mode 100644 index 0000000..9bd4c67 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json new file mode 100644 index 0000000..58a74e1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json new file mode 100644 index 0000000..0064c5c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json new file mode 100644 index 0000000..d9f52a1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json new file mode 100644 index 0000000..391bdd1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json new file mode 100644 index 0000000..f35d22e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json new file mode 100644 index 0000000..64c27e3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json @@ -0,0 +1,106 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922", + "name" : "QuickStudioEventSimulator_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2, + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json new file mode 100644 index 0000000..4cbc573 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioEventSimulator::@639cba86296065e16922" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922" + } + ], + "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922", + "name" : "QuickStudioEventSimulatorplugin", + "nameOnDisk" : "libQuickStudioEventSimulatorplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json new file mode 100644 index 0000000..b681b1c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSimulatorplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json new file mode 100644 index 0000000..4120ef6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922" + } + ], + "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922", + "name" : "QuickStudioEventSimulatorplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json new file mode 100644 index 0000000..458820a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSimulatorplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsimulator", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json new file mode 100644 index 0000000..c60f8dc --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json @@ -0,0 +1,464 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 19 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 20 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 21 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db" + }, + { + "backtrace" : 7, + "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db" + } + ], + "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem", + "nameOnDisk" : "libQuickStudioEventSystem.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 8, + 9, + 15, + 16, + 17 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13, + 14 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json new file mode 100644 index 0000000..982a19d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSystem_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json new file mode 100644 index 0000000..d5e1748 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 7, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json new file mode 100644 index 0000000..b6a9803 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 7, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db" + } + ], + "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json new file mode 100644 index 0000000..c1f0c22 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSystem_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json new file mode 100644 index 0000000..c9689c7 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json new file mode 100644 index 0000000..7e1db18 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json new file mode 100644 index 0000000..77d0c76 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json new file mode 100644 index 0000000..df4351a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json new file mode 100644 index 0000000..20a2126 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 7, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json new file mode 100644 index 0000000..37e4bd3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 7, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json new file mode 100644 index 0000000..21f61b3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json @@ -0,0 +1,106 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 7, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystem_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2, + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json new file mode 100644 index 0000000..101cd60 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 7, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db" + }, + { + "backtrace" : 6, + "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db" + }, + { + "backtrace" : 0, + "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db" + } + ], + "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystemplugin", + "nameOnDisk" : "libQuickStudioEventSystemplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json new file mode 100644 index 0000000..2486d70 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSystemplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json new file mode 100644 index 0000000..b4b2f80 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 7, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db" + } + ], + "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db", + "name" : "QuickStudioEventSystemplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json new file mode 100644 index 0000000..6af60c5 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db", + "isGeneratorProvided" : true, + "name" : "QuickStudioEventSystemplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/tools/eventsystem", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json new file mode 100644 index 0000000..6d7e8de --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json @@ -0,0 +1,634 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 1, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 29 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 30 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 31 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 7, + "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8" + } + ], + "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper", + "nameOnDisk" : "libQuickStudioLogicHelper.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 15, + 17, + 18, + 19, + 30, + 31, + 32 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 25, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 27, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 32, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json new file mode 100644 index 0000000..4dadbda --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8", + "isGeneratorProvided" : true, + "name" : "QuickStudioLogicHelper_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json new file mode 100644 index 0000000..6764037 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json new file mode 100644 index 0000000..c972587 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8" + } + ], + "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json new file mode 100644 index 0000000..bfaaf66 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8", + "isGeneratorProvided" : true, + "name" : "QuickStudioLogicHelper_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json new file mode 100644 index 0000000..df7bb5c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json new file mode 100644 index 0000000..38f46c0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json new file mode 100644 index 0000000..98787b6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json new file mode 100644 index 0000000..b2c2498 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json new file mode 100644 index 0000000..5a107a6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json new file mode 100644 index 0000000..a54bfd4 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json new file mode 100644 index 0000000..81e9349 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json @@ -0,0 +1,176 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelper_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json new file mode 100644 index 0000000..9dfbd8b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 6, + "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 6, + "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 6, + "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8" + } + ], + "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelperplugin", + "nameOnDisk" : "libQuickStudioLogicHelperplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json new file mode 100644 index 0000000..cced226 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8", + "isGeneratorProvided" : true, + "name" : "QuickStudioLogicHelperplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json new file mode 100644 index 0000000..13c108d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8" + } + ], + "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8", + "name" : "QuickStudioLogicHelperplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json new file mode 100644 index 0000000..3635326 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8", + "isGeneratorProvided" : true, + "name" : "QuickStudioLogicHelperplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/logichelper", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json new file mode 100644 index 0000000..598e1cf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json @@ -0,0 +1,498 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 1, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 21 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 22 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 23 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8 + ] + } + ], + "dependencies" : + [ + { + "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 7, + "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 0, + "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2" + } + ], + "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText", + "nameOnDisk" : "libQuickStudioMultiText.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 10, + 11, + 18, + 19, + 20 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 12, + 13, + 14, + 15, + 16, + 17 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 24, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json new file mode 100644 index 0000000..50ee264 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2", + "isGeneratorProvided" : true, + "name" : "QuickStudioMultiText_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json new file mode 100644 index 0000000..26d3fef --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_automoc_json_extraction", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json new file mode 100644 index 0000000..ecb72a8 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2" + } + ], + "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_qmlcache", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json new file mode 100644 index 0000000..0a9789a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2", + "isGeneratorProvided" : true, + "name" : "QuickStudioMultiText_qmlcache_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json new file mode 100644 index 0000000..d40d3fa --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json new file mode 100644 index 0000000..1954155 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json new file mode 100644 index 0000000..3949231 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json new file mode 100644 index 0000000..aeb71c3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_qmltyperegistration", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json new file mode 100644 index 0000000..f617164 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_resources_1", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json new file mode 100644 index 0000000..2505ca6 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_resources_2", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json new file mode 100644 index 0000000..d79edce --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json @@ -0,0 +1,120 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiText_tooling", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3, + 4, + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json new file mode 100644 index 0000000..e80e7a0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 6, + "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 6, + "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 6, + "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 0, + "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2" + } + ], + "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiTextplugin", + "nameOnDisk" : "libQuickStudioMultiTextplugin.a", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json new file mode 100644 index 0000000..b59e089 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2", + "isGeneratorProvided" : true, + "name" : "QuickStudioMultiTextplugin_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json new file mode 100644 index 0000000..cbac5b2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2" + } + ], + "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2", + "name" : "QuickStudioMultiTextplugin_init", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json new file mode 100644 index 0000000..c702889 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2", + "isGeneratorProvided" : true, + "name" : "QuickStudioMultiTextplugin_init_autogen", + "paths" : + { + "build" : "_deps/ds-build/src/imports/multitext", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json new file mode 100644 index 0000000..1e6a016 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json @@ -0,0 +1,512 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "add_dependencies", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "qmlmodules", + "CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Backend/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1044, + "parent" : 4 + }, + { + "file" : 3 + }, + { + "command" : 6, + "file" : 3, + "line" : 35, + "parent" : 6 + }, + { + "file" : 2, + "parent" : 7 + }, + { + "command" : 4, + "file" : 2, + "line" : 4, + "parent" : 8 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 9 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 10 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 11 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 4 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 2, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 18 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 24 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 25 + }, + { + "file" : 6 + }, + { + "command" : 4, + "file" : 6, + "line" : 2, + "parent" : 27 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 28 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 29 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 30 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 31 + }, + { + "file" : 7 + }, + { + "command" : 4, + "file" : 7, + "line" : 2, + "parent" : 33 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 34 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 35 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 36 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 37 + }, + { + "file" : 8 + }, + { + "command" : 4, + "file" : 8, + "line" : 6, + "parent" : 39 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 40 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 41 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 42 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 43 + }, + { + "file" : 9 + }, + { + "command" : 4, + "file" : 9, + "line" : 7, + "parent" : 45 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 46 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 47 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 48 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 49 + }, + { + "file" : 10 + }, + { + "command" : 4, + "file" : 10, + "line" : 6, + "parent" : 51 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 52 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 53 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 54 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 55 + }, + { + "file" : 11 + }, + { + "command" : 4, + "file" : 11, + "line" : 5, + "parent" : 57 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 58 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 59 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 60 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 61 + }, + { + "file" : 12 + }, + { + "command" : 4, + "file" : 12, + "line" : 6, + "parent" : 63 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 64 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 65 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 66 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 67 + }, + { + "file" : 13 + }, + { + "command" : 4, + "file" : 13, + "line" : 10, + "parent" : 69 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 70 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 71 + }, + { + "command" : 1, + "file" : 0, + "line" : 951, + "parent" : 72 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 73 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 13, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 20, + "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 26, + "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 32, + "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 38, + "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 44, + "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922" + }, + { + "backtrace" : 50, + "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db" + }, + { + "backtrace" : 56, + "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2" + }, + { + "backtrace" : 62, + "id" : "content_qmllint::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 68, + "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a" + }, + { + "backtrace" : 74, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "all_qmllint::@b8ea75ca72e9d0096cda", + "name" : "all_qmllint", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json new file mode 100644 index 0000000..251678a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json @@ -0,0 +1,512 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "add_dependencies", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "qmlmodules", + "CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Backend/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1044, + "parent" : 4 + }, + { + "file" : 3 + }, + { + "command" : 6, + "file" : 3, + "line" : 35, + "parent" : 6 + }, + { + "file" : 2, + "parent" : 7 + }, + { + "command" : 4, + "file" : 2, + "line" : 4, + "parent" : 8 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 9 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 10 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 11 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 4 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 2, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 18 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 24 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 25 + }, + { + "file" : 6 + }, + { + "command" : 4, + "file" : 6, + "line" : 2, + "parent" : 27 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 28 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 29 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 30 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 31 + }, + { + "file" : 7 + }, + { + "command" : 4, + "file" : 7, + "line" : 2, + "parent" : 33 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 34 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 35 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 36 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 37 + }, + { + "file" : 8 + }, + { + "command" : 4, + "file" : 8, + "line" : 6, + "parent" : 39 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 40 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 41 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 42 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 43 + }, + { + "file" : 9 + }, + { + "command" : 4, + "file" : 9, + "line" : 7, + "parent" : 45 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 46 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 47 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 48 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 49 + }, + { + "file" : 10 + }, + { + "command" : 4, + "file" : 10, + "line" : 6, + "parent" : 51 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 52 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 53 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 54 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 55 + }, + { + "file" : 11 + }, + { + "command" : 4, + "file" : 11, + "line" : 5, + "parent" : 57 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 58 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 59 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 60 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 61 + }, + { + "file" : 12 + }, + { + "command" : 4, + "file" : 12, + "line" : 6, + "parent" : 63 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 64 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 65 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 66 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 67 + }, + { + "file" : 13 + }, + { + "command" : 4, + "file" : 13, + "line" : 10, + "parent" : 69 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 70 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 71 + }, + { + "command" : 1, + "file" : 0, + "line" : 953, + "parent" : 72 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 73 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 13, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 20, + "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 26, + "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 32, + "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 38, + "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 44, + "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922" + }, + { + "backtrace" : 50, + "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db" + }, + { + "backtrace" : 56, + "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2" + }, + { + "backtrace" : 62, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 68, + "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a" + }, + { + "backtrace" : 74, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "all_qmllint_json::@b8ea75ca72e9d0096cda", + "name" : "all_qmllint_json", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json new file mode 100644 index 0000000..d79cfa9 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json @@ -0,0 +1,512 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "add_dependencies", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "qmlmodules", + "CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Backend/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1044, + "parent" : 4 + }, + { + "file" : 3 + }, + { + "command" : 6, + "file" : 3, + "line" : 35, + "parent" : 6 + }, + { + "file" : 2, + "parent" : 7 + }, + { + "command" : 4, + "file" : 2, + "line" : 4, + "parent" : 8 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 9 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 10 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 11 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 4 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 2, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 18 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 24 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 25 + }, + { + "file" : 6 + }, + { + "command" : 4, + "file" : 6, + "line" : 2, + "parent" : 27 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 28 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 29 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 30 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 31 + }, + { + "file" : 7 + }, + { + "command" : 4, + "file" : 7, + "line" : 2, + "parent" : 33 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 34 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 35 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 36 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 37 + }, + { + "file" : 8 + }, + { + "command" : 4, + "file" : 8, + "line" : 6, + "parent" : 39 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 40 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 41 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 42 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 43 + }, + { + "file" : 9 + }, + { + "command" : 4, + "file" : 9, + "line" : 7, + "parent" : 45 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 46 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 47 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 48 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 49 + }, + { + "file" : 10 + }, + { + "command" : 4, + "file" : 10, + "line" : 6, + "parent" : 51 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 52 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 53 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 54 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 55 + }, + { + "file" : 11 + }, + { + "command" : 4, + "file" : 11, + "line" : 5, + "parent" : 57 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 58 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 59 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 60 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 61 + }, + { + "file" : 12 + }, + { + "command" : 4, + "file" : 12, + "line" : 6, + "parent" : 63 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 64 + }, + { + "command" : 2, + "file" : 0, + "line" : 1995, + "parent" : 65 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 66 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 67 + }, + { + "file" : 13 + }, + { + "command" : 4, + "file" : 13, + "line" : 10, + "parent" : 69 + }, + { + "command" : 3, + "file" : 0, + "line" : 633, + "parent" : 70 + }, + { + "command" : 2, + "file" : 0, + "line" : 2242, + "parent" : 71 + }, + { + "command" : 1, + "file" : 0, + "line" : 955, + "parent" : 72 + }, + { + "command" : 5, + "file" : 0, + "line" : 1047, + "parent" : 73 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 13, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 20, + "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 26, + "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 32, + "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 38, + "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 44, + "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922" + }, + { + "backtrace" : 50, + "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db" + }, + { + "backtrace" : 56, + "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2" + }, + { + "backtrace" : 62, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 68, + "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a" + }, + { + "backtrace" : 74, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "all_qmllint_module::@b8ea75ca72e9d0096cda", + "name" : "all_qmllint_module", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json new file mode 100644 index 0000000..ac1e03c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json @@ -0,0 +1,366 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "qmlmodules", + "CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2725, + "parent" : 2 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 35, + "parent" : 4 + }, + { + "file" : 2, + "parent" : 5 + }, + { + "command" : 2, + "file" : 2, + "line" : 4, + "parent" : 6 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 7 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 8 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 2 + }, + { + "file" : 4 + }, + { + "command" : 2, + "file" : 4, + "line" : 2, + "parent" : 11 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 12 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 13 + }, + { + "file" : 5 + }, + { + "command" : 2, + "file" : 5, + "line" : 6, + "parent" : 15 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 16 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 17 + }, + { + "file" : 6 + }, + { + "command" : 2, + "file" : 6, + "line" : 2, + "parent" : 19 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 20 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 21 + }, + { + "file" : 7 + }, + { + "command" : 2, + "file" : 7, + "line" : 2, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 24 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 25 + }, + { + "file" : 8 + }, + { + "command" : 2, + "file" : 8, + "line" : 6, + "parent" : 27 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 28 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 29 + }, + { + "file" : 9 + }, + { + "command" : 2, + "file" : 9, + "line" : 7, + "parent" : 31 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 32 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 33 + }, + { + "file" : 10 + }, + { + "command" : 2, + "file" : 10, + "line" : 6, + "parent" : 35 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 36 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 37 + }, + { + "file" : 11 + }, + { + "command" : 2, + "file" : 11, + "line" : 5, + "parent" : 39 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 40 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 41 + }, + { + "file" : 12 + }, + { + "command" : 2, + "file" : 12, + "line" : 10, + "parent" : 43 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 44 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 45 + }, + { + "file" : 13 + }, + { + "command" : 2, + "file" : 13, + "line" : 6, + "parent" : 47 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 48 + }, + { + "command" : 3, + "file" : 0, + "line" : 2728, + "parent" : 49 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 9, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 10, + "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda" + }, + { + "backtrace" : 14, + "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24" + }, + { + "backtrace" : 18, + "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232" + }, + { + "backtrace" : 22, + "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8" + }, + { + "backtrace" : 26, + "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2" + }, + { + "backtrace" : 30, + "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922" + }, + { + "backtrace" : 34, + "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db" + }, + { + "backtrace" : 38, + "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2" + }, + { + "backtrace" : 42, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 46, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929" + }, + { + "backtrace" : 50, + "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda", + "name" : "all_qmltyperegistrations", + "paths" : + { + "build" : "_deps/ds-build/src/imports/components", + "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json b/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json new file mode 100644 index 0000000..29418a9 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json @@ -0,0 +1,612 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "content/libcontent.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2421, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 633, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2441, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 540, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 2752, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 2777, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2582, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1210, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 2743, + "parent" : 9 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2224, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2377, + "parent" : 6 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 13, + "file" : 3, + "line" : 1, + "parent" : 27 + }, + { + "command" : 12, + "file" : 0, + "line" : 764, + "parent" : 28 + }, + { + "command" : 10, + "file" : 0, + "line" : 1878, + "parent" : 29 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14 + ] + } + ], + "dependencies" : + [ + { + "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 7, + "id" : "content_tooling::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "content_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "content::@73a38b9e525c9c2ae262", + "name" : "content", + "nameOnDisk" : "libcontent.a", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 15, + 16, + 17, + 18, + 19, + 29, + 30, + 31 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 15, + "path" : "content/App.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 16, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 17, + "path" : "content/Screen01.ui.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 19, + "path" : "content/Speedometer.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 20, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 21, + "path" : "content/BatterySlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "path" : "content/TempSlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 25, + "path" : "content/WarningSymbol.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 30, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "path" : "content/fonts/fonts.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "path" : "content/fonts/nasalization-rg.otf", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json b/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json new file mode 100644 index 0000000..e4ac3d8 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "content_tooling::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "content_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json b/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json new file mode 100644 index 0000000..a321879 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_extract_metatypes", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 540, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2582, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1084, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 1099, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "content_autogen::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262", + "name" : "content_automoc_json_extraction", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json b/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json new file mode 100644 index 0000000..d7fc43b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json @@ -0,0 +1,295 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" + } + ], + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "_qt_internal_propagate_qmlcache_object_lib", + "_qt_internal_target_enable_qmlcachegen", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 6, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 2328, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 1144, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 972, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 6 + }, + { + "command" : 9, + "file" : 1, + "line" : 1001, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 10, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "content_qmlcache::@73a38b9e525c9c2ae262", + "name" : "content_qmlcache", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 7, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json b/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json new file mode 100644 index 0000000..9dc6136 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json @@ -0,0 +1,69 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "content_qmlcache_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json new file mode 100644 index 0000000..d0f906f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 870, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "content_qmllint::@73a38b9e525c9c2ae262", + "name" : "content_qmllint", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json new file mode 100644 index 0000000..592b4a8 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 897, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", + "name" : "content_qmllint_json", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json new file mode 100644 index 0000000..0b6e3dc --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2242, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 935, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" + } + ], + "folder" : + { + "name" : "QmlLinter" + }, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", + "name" : "content_qmllint_module", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json new file mode 100644 index 0000000..f4b9cd0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json @@ -0,0 +1,112 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 540, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2718, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", + "name" : "content_qmltyperegistration", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json new file mode 100644 index 0000000..0827749 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json @@ -0,0 +1,254 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 584, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1759, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1787, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1698, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2504, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "content_resources_1::@73a38b9e525c9c2ae262", + "name" : "content_resources_1", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json new file mode 100644 index 0000000..dc1ebcf --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json @@ -0,0 +1,261 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 633, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2460, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2150, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1753, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1759, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1787, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1698, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2504, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "content_resources_2::@73a38b9e525c9c2ae262", + "name" : "content_resources_2", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json b/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json new file mode 100644 index 0000000..72d907f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json @@ -0,0 +1,190 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 633, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2440, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2443, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_tooling::@73a38b9e525c9c2ae262", + "name" : "content_tooling", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json b/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json new file mode 100644 index 0000000..f4c6713 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json @@ -0,0 +1,266 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "qml/content/libcontentplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2211, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 1937, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 1933, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2278, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2216, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 1927, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "content::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 6, + "id" : "content_resources_1::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 6, + "id" : "content_qmlcache::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 6, + "id" : "content_resources_2::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "contentplugin::@73a38b9e525c9c2ae262", + "name" : "contentplugin", + "nameOnDisk" : "libcontentplugin.a", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json new file mode 100644 index 0000000..6ed3131 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json new file mode 100644 index 0000000..2e3595b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json @@ -0,0 +1,252 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 650, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2324, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2398, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 654, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1698, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2504, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "contentplugin_init::@73a38b9e525c9c2ae262", + "name" : "contentplugin_init", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json new file mode 100644 index 0000000..2459d96 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_init_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json new file mode 100644 index 0000000..3c48552 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json @@ -0,0 +1,76 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Backend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 611, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 1802, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2285, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 2288, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@b539f45bba5ba55bae2a", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "imports/Backend", + "source" : "imports/Backend" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json new file mode 100644 index 0000000..936965d --- /dev/null +++ b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json @@ -0,0 +1,61 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "AppleClang", + "implicit" : + { + "includeDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "linkDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift" + ], + "linkFrameworkDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks" + ], + "linkLibraries" : + [ + "c++" + ] + }, + "path" : "/Library/Developer/CommandLineTools/usr/bin/c++", + "version" : "15.0.0.15000309" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/.qt/QtDeploySupport.cmake b/build/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..dd66805 --- /dev/null +++ b/build/.qt/QtDeploySupport.cmake @@ -0,0 +1,66 @@ +cmake_minimum_required(VERSION 3.16...3.21) + +# These are part of the public API. Projects should use them to provide a +# consistent set of prefix-relative destinations. +if(NOT QT_DEPLOY_BIN_DIR) + set(QT_DEPLOY_BIN_DIR "bin") +endif() +if(NOT QT_DEPLOY_LIB_DIR) + set(QT_DEPLOY_LIB_DIR "lib") +endif() +if(NOT QT_DEPLOY_PLUGINS_DIR) + set(QT_DEPLOY_PLUGINS_DIR "plugins") +endif() +if(NOT QT_DEPLOY_QML_DIR) + set(QT_DEPLOY_QML_DIR "qml") +endif() +if(NOT QT_DEPLOY_TRANSLATIONS_DIR) + set(QT_DEPLOY_TRANSLATIONS_DIR "translations") +endif() +if(NOT QT_DEPLOY_PREFIX) + set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") +endif() +if(QT_DEPLOY_PREFIX STREQUAL "") + set(QT_DEPLOY_PREFIX .) +endif() +if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) + set(QT_DEPLOY_IGNORED_LIB_DIRS "") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Darwin") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "/opt/homebrew/bin/macdeployqt") +set(__QT_DEPLOY_IMPL_DIR "/Users/mason/Documents/Code/dash-cpp/build/.qt") +set(__QT_DEPLOY_VERBOSE "") +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") +set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") +set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") +set(__QT_DEFAULT_MAJOR_VERSION "6") +set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") +set(__QT_DEPLOY_QT_INSTALL_PREFIX "/opt/homebrew") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "share/qt/libexec") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "share/qt/plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt/translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/opt/homebrew/bin/qtpaths") +set(__QT_DEPLOY_PLUGINS "") +set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "") +set(__QT_DEPLOY_USE_PATCHELF "") +set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") +set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") +set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") + +# Define the CMake commands to be made available during deployment. +set(__qt_deploy_support_files + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake new file mode 100644 index 0000000..5fe0583 --- /dev/null +++ b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake @@ -0,0 +1,20 @@ +# Auto-generated deploy QML imports script for target "Bolt_DashApp". +# Do not edit, all changes will be lost. +# This file should only be included by qt_deploy_qml_imports(). + +set(__qt_opts ) +if(arg_NO_QT_IMPORTS) + list(APPEND __qt_opts NO_QT_IMPORTS) +endif() + +_qt_internal_deploy_qml_imports_for_target( + ${__qt_opts} + IMPORTS_FILE "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + PLUGINS_FOUND __qt_internal_plugins_found + QML_DIR "${arg_QML_DIR}" + PLUGINS_DIR "${arg_PLUGINS_DIR}" +) + +if(arg_PLUGINS_FOUND) + set(${arg_PLUGINS_FOUND} "${__qt_internal_plugins_found}" PARENT_SCOPE) +endif() diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp new file mode 100644 index 0000000..59b755c --- /dev/null +++ b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp @@ -0,0 +1,15 @@ +-rootPath +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash +-cmake-output +-output-file +/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +-importPath +/Users/mason/Documents/Code/dash-cpp/build/qml/Main +-importPath +/Users/mason/Documents/Code/dash-cpp/build/qml +-importPath +/opt/homebrew/share/qt/qml +-qrcFiles +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc \ No newline at end of file diff --git a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc new file mode 100644 index 0000000..e717427 --- /dev/null +++ b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + + + diff --git a/build/.rcc/configuration.qrc b/build/.rcc/configuration.qrc new file mode 100644 index 0000000..1245a55 --- /dev/null +++ b/build/.rcc/configuration.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf + + + diff --git a/build/.rcc/qmake_Main.qrc b/build/.rcc/qmake_Main.qrc new file mode 100644 index 0000000..f8cfc96 --- /dev/null +++ b/build/.rcc/qmake_Main.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir + + + diff --git a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp new file mode 100644 index 0000000..88eb50d --- /dev/null +++ b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp @@ -0,0 +1 @@ +/Main/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp.rsp b/build/.rcc/qmllint/Bolt_DashApp.rsp new file mode 100644 index 0000000..6a10dda --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp.rsp @@ -0,0 +1,14 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp_json.rsp b/build/.rcc/qmllint/Bolt_DashApp_json.rsp new file mode 100644 index 0000000..ec584cb --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp_json.rsp @@ -0,0 +1,16 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_qmllint.json diff --git a/build/.rcc/qmllint/Bolt_DashApp_module.rsp b/build/.rcc/qmllint/Bolt_DashApp_module.rsp new file mode 100644 index 0000000..55167c0 --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp_module.rsp @@ -0,0 +1,14 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +--module +Main diff --git a/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..185317b --- /dev/null +++ b/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000309") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks") diff --git a/build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..e0e2dd919cecc2f462d01cfdf40dd35d1ea3377f GIT binary patch literal 16984 zcmeI4e`s4(6vuCVR9afwI%H1jFoFzcXS>#|%LdM*_H_#j$#h|amT_s4SNpam>5^A% z#>9e5CIwxYqTpYOGK(D(b(Ap1ItmliZS_fn4LUN>?XY2*g;Dt~pqU)cGQ_9e2b>T@TB)R1+hGD+dNfC(@GCcp%k025#WOn?b60Vco%m;e)C z0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W|7!x3x5RwqNl{*C z5#^uj#obDiC@;2*mobxjtoG#>ChLsF;O(YRxz$bolF z&idq)NUS%$t!Nz5^Mf)oVix*02KNaOi^O|V+su;G3wb@$Ux;+e9WgD^6AKG?)tywy z)MdVq(F^_2NFou{q!#Omgk$j2i0~8kmvXN(!%Q>IA*`e{pH31|&*cZrNjD%%v&sY` zAn2-+0G>1xO-kY(M^^LI)^YXIBgHB@p)5YJ@CJ4=J0$fnJw1vphV%inA?mUNMov78 z8WBK3wKw99Ge?g(bY<^%&DoRxsBKgFCJ#+YTXn5gw$(G$8NdYp%GXNuS}FUY9bGht zFI`^)7y6=|*6}iMnKE9LdM;xOYgiL*f7mu-HD-kNbX&4m_=oeVe4Rf6lW;g z;}c##@u3#d&?J-u^W))Az^g{ft&@L#I)6^!NoNx;$C(Sxul(*`|5-4r%%2){dF>bVR3NQe|3KTfH$73sT}_H@S!8u&Q9!n zXTynq^S}RYymfM-`G=YN)AHlrD#vdO{(kh2JI2(O^FI|*H%k}Jr)$3N&CPvyZSR-Q bP2cGKZr8-c%BGpRw_9#~K2`Mma!ULOP3k*2 literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/3.27.8/CMakeSystem.cmake b/build/CMakeFiles/3.27.8/CMakeSystem.cmake new file mode 100644 index 0000000..ee7545f --- /dev/null +++ b/build/CMakeFiles/3.27.8/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Darwin-23.4.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "23.4.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") + + + +set(CMAKE_SYSTEM "Darwin-23.4.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "23.4.0") +set(CMAKE_SYSTEM_PROCESSOR "arm64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..52d56e2 --- /dev/null +++ b/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,855 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..e061c08c6ce69105ac2b6f4739914165fe59258c GIT binary patch literal 1712 zcmb_cJ#5oZ5PqShqzWV;F@P#TBo?M9Nn5D}MM~6w09kE^41uV6Sc#Kba-7Id!K&&_d2>lvl19;@o<=hs%1JU>teA1H?gh=UITfXuYF5D;H#6H#|AtCilC}FZCwo8|_6t^{Y3{vM<~2L))!LY2-(1-f+J-2jiHF zT6SSMHMZq6au=W~7v;CqH>da>-a7}|!{+v2BhYmy3HhWmP^$SG=|2{q`US&%>eY;lbQ?XVyMg+K**B;m~Yk{~vPHOZ62y|Ep&Yb7B6Sk5lr??bVxW z*XY;Sj^&kd&8B0mIHp_M5J9Htn0~e4)k}HP!*AoL>6JH2?6-W=t(aa#R;;SocKp)v z5@&E;EVpHYMuXhi>c%lY_Sk&#f#p%dQZkU#VnR8|(Y2Px0VLj!p0y z=!_7?uCke@uwaw%MA=Le792AiWi!MfaK|u|%`CvifRoB*hzB;LJCJFaMf~|raCU9dqyf9G-p-`SvPH$>ooBh f661yA*P9F6E&&H{UPCy5X$|23rZj{DNF4bCQt1(% literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake new file mode 100644 index 0000000..4f39581 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake @@ -0,0 +1,32 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp" "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp.dir/build.make b/build/CMakeFiles/Bolt_DashApp.dir/build.make new file mode 100644 index 0000000..ce88219 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/build.make @@ -0,0 +1,350 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include CMakeFiles/Bolt_DashApp.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/Bolt_DashApp.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/Bolt_DashApp.dir/flags.make + +.rcc/qrc_configuration.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf +.rcc/qrc_configuration.cpp: .rcc/configuration.qrc +.rcc/qrc_configuration.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource configuration" + /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp --name configuration /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc + +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Running moc --collect-json for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + +bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt +bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Automatic QML type registration for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes + +qml/Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Main/Bolt_DashApp.qmltypes + +.rcc/qrc_qmake_Main.cpp: qml/Main/qmldir +.rcc/qrc_qmake_Main.cpp: .rcc/qmake_Main.qrc +.rcc/qrc_qmake_Main.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running rcc for resource qmake_Main" + /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp --name qmake_Main /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc + +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/configuration.qrc +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/qmake_Main.qrc +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: qml/Main/Bolt_DashApp.qmltypes +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: qml/Main/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_DashApp_main_qml.cpp" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache + /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Main/main.qml -I /Users/mason/Documents/Code/dash-cpp/build -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Running rcc for resource Bolt_DashApp_raw_qml_0" + /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp --name Bolt_DashApp_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc + +meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: Bolt_DashApp_autogen/mocs_compilation.cpp +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s + +CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp +CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp + +CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp > CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i + +CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: .rcc/qrc_configuration.cpp +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s + +CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: bolt_dashapp_qmltyperegistrations.cpp +CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp + +CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp > CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i + +CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: .rcc/qrc_qmake_Main.cpp +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i + +CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i + +CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s + +# Object files for target Bolt_DashApp +Bolt_DashApp_OBJECTS = \ +"CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" \ +"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" + +# External object files for target Bolt_DashApp +Bolt_DashApp_EXTERNAL_OBJECTS = + +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/build.make +Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o +Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o +Bolt_DashApp: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o +Bolt_DashApp: content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o +Bolt_DashApp: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +Bolt_DashApp: /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick +Bolt_DashApp: qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a +Bolt_DashApp: qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a +Bolt_DashApp: qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a +Bolt_DashApp: qml/FlowView/libFlowViewplugin.a +Bolt_DashApp: qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a +Bolt_DashApp: qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a +Bolt_DashApp: qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a +Bolt_DashApp: qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a +Bolt_DashApp: qml/content/libcontentplugin.a +Bolt_DashApp: qml/Bolt_Dash/libBolt_Dashplugin.a +Bolt_DashApp: /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels +Bolt_DashApp: /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL +Bolt_DashApp: _deps/ds-build/src/imports/components/libQuickStudioComponents.a +Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a +Bolt_DashApp: _deps/ds-build/src/imports/application/libQuickStudioApplication.a +Bolt_DashApp: /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui +Bolt_DashApp: _deps/ds-build/src/imports/flowview/libFlowView.a +Bolt_DashApp: _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a +Bolt_DashApp: _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a +Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a +Bolt_DashApp: content/libcontent.a +Bolt_DashApp: imports/Bolt_Dash/libBolt_Dash.a +Bolt_DashApp: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +Bolt_DashApp: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +Bolt_DashApp: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Linking CXX executable Bolt_DashApp" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_DashApp.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp.dir/build: Bolt_DashApp +.PHONY : CMakeFiles/Bolt_DashApp.dir/build + +CMakeFiles/Bolt_DashApp.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp.dir/clean + +CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp +CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp +CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_configuration.cpp +CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_qmake_Main.cpp +CMakeFiles/Bolt_DashApp.dir/depend: bolt_dashapp_qmltyperegistrations.cpp +CMakeFiles/Bolt_DashApp.dir/depend: meta_types/qt6bolt_dashapp_debug_metatypes.json +CMakeFiles/Bolt_DashApp.dir/depend: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen +CMakeFiles/Bolt_DashApp.dir/depend: qml/Main/Bolt_DashApp.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake new file mode 100644 index 0000000..f5f3d10 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake @@ -0,0 +1,36 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/Bolt_DashApp_main_qml.cpp" + ".rcc/qrc_Bolt_DashApp_raw_qml_0.cpp" + ".rcc/qrc_configuration.cpp" + ".rcc/qrc_qmake_Main.cpp" + "Bolt_DashApp_autogen" + "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt" + "Bolt_DashApp" + "Bolt_DashApp.pdb" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d" + "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d" + "bolt_dashapp_qmltyperegistrations.cpp" + "meta_types/qt6bolt_dashapp_debug_metatypes.json" + "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" + "qml/Main/Bolt_DashApp.qmltypes" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_DashApp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make new file mode 100644 index 0000000..f282e55 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_DashApp. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts new file mode 100644 index 0000000..0057db6 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_DashApp. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/depend.make b/build/CMakeFiles/Bolt_DashApp.dir/depend.make new file mode 100644 index 0000000..5ef48a7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_DashApp. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/flags.make b/build/CMakeFiles/Bolt_DashApp.dir/flags.make new file mode 100644 index 0000000..f653f41 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/CMakeFiles/Bolt_DashApp.dir/link.txt b/build/CMakeFiles/Bolt_DashApp.dir/link.txt new file mode 100644 index 0000000..b21614d --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -o Bolt_DashApp -iframework /opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a qml/FlowView/libFlowViewplugin.a qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a qml/content/libcontentplugin.a qml/Bolt_Dash/libBolt_Dashplugin.a /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL _deps/ds-build/src/imports/components/libQuickStudioComponents.a _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a _deps/ds-build/src/imports/application/libQuickStudioApplication.a /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -Xlinker -framework -Xlinker OpenGL -Xlinker -framework -Xlinker AGL -framework AppKit -framework ImageIO -framework Metal _deps/ds-build/src/imports/flowview/libFlowView.a _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a content/libcontent.a imports/Bolt_Dash/libBolt_Dash.a /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/CMakeFiles/Bolt_DashApp.dir/progress.make b/build/CMakeFiles/Bolt_DashApp.dir/progress.make new file mode 100644 index 0000000..8529815 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/progress.make @@ -0,0 +1,17 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 6 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 7 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = 8 +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d45c361 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json @@ -0,0 +1,1137 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeSystem.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlcomponents", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "BULD_QDS_COMPONENTS=true", + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NETWORK_LIB", + "QT_OPENGL_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QMLMODELS_LIB", + "QT_QML_LIB", + "QT_QUICK_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtGui.framework/Headers", + "/opt/homebrew/lib/QtGui.framework", + "/opt/homebrew/lib/QtQuick.framework/Headers", + "/opt/homebrew/lib/QtQuick.framework", + "/opt/homebrew/lib/QtQmlModels.framework/Headers", + "/opt/homebrew/lib/QtQmlModels.framework", + "/opt/homebrew/lib/QtOpenGL.framework/Headers", + "/opt/homebrew/lib/QtOpenGL.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", + "MU", + null + ], + [ + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make new file mode 100644 index 0000000..1926962 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make @@ -0,0 +1,97 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_autogen. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_autogen.dir/progress.make + +CMakeFiles/Bolt_DashApp_autogen: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_DashApp" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug + +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/configuration.qrc +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/qmake_Main.qrc +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" + /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_DashApp --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp + +Bolt_DashApp_autogen: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/build.make +.PHONY : Bolt_DashApp_autogen + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_autogen.dir/build: Bolt_DashApp_autogen +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/build + +CMakeFiles/Bolt_DashApp_autogen.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean + +CMakeFiles/Bolt_DashApp_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..00641f1 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" + "Bolt_DashApp_autogen/mocs_compilation.cpp" + "CMakeFiles/Bolt_DashApp_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..97ffaae --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_autogen. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..2e4b7d7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..e810039 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make + +CMakeFiles/Bolt_DashApp_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include + +Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction +Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make +.PHONY : Bolt_DashApp_automoc_json_extraction + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build: Bolt_DashApp_automoc_json_extraction +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build + +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean + +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..7892cc0 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_automoc_json_extraction" + "meta_types/Bolt_DashApp_json_file_list.txt" + "meta_types/Bolt_DashApp_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..b62ec9a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..d842afb --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_automoc_json_extraction. diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make new file mode 100644 index 0000000..94cf701 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmlimportscan. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake + +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /opt/homebrew/share/qt/libexec/qmlimportscanner +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/configuration.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/qmake_Main.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/Bolt_DashApp_raw_qml_0.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running qmlimportscanner for Bolt_DashApp" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlimportscanner @/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp + +Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make +.PHONY : Bolt_DashApp_qmlimportscan + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build: Bolt_DashApp_qmlimportscan +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build + +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean + +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake new file mode 100644 index 0000000..a20954a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + "CMakeFiles/Bolt_DashApp_qmlimportscan" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make new file mode 100644 index 0000000..b4c062d --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmlimportscan. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts new file mode 100644 index 0000000..501af74 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmlimportscan. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make new file mode 100644 index 0000000..ba3859e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint: .rcc/qmllint/Bolt_DashApp.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp.rsp + +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/build.make +.PHONY : Bolt_DashApp_qmllint + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint.dir/build: Bolt_DashApp_qmllint +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/build + +CMakeFiles/Bolt_DashApp_qmllint.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..cb56b10 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..ad45339 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..d1f1a16 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make new file mode 100644 index 0000000..7fc2709 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint_json. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint_json: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint_json: .rcc/qmllint/Bolt_DashApp_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_json.rsp + +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make +.PHONY : Bolt_DashApp_qmllint_json + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/build: Bolt_DashApp_qmllint_json +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/build + +CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..0d5b73e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..50770eb --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..3e2382e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_json. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make new file mode 100644 index 0000000..68727c9 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint_module. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint_module: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint_module: .rcc/qmllint/Bolt_DashApp_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_module.rsp + +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make +.PHONY : Bolt_DashApp_qmllint_module + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/build: Bolt_DashApp_qmllint_module +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/build + +CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b81100e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..ef9a392 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..0f85f5b --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_module. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..4aa02aa --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..ecced0f --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make @@ -0,0 +1,119 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp +CMakeFiles/Bolt_DashApp_qmltyperegistration: qml/Main/Bolt_DashApp.qmltypes + +bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt +bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes + +qml/Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Main/Bolt_DashApp.qmltypes + +meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration +Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp +Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json +Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen +Bolt_DashApp_qmltyperegistration: qml/Main/Bolt_DashApp.qmltypes +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make +.PHONY : Bolt_DashApp_qmltyperegistration + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build: Bolt_DashApp_qmltyperegistration +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build + +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean + +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..c97e389 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmltyperegistration" + "bolt_dashapp_qmltyperegistrations.cpp" + "meta_types/qt6bolt_dashapp_debug_metatypes.json" + "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" + "qml/Main/Bolt_DashApp.qmltypes" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..a2fdb08 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..898276b --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmltyperegistration. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..2ebca8e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make new file mode 100644 index 0000000..69b9048 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_tooling. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_tooling.dir/progress.make + +qml/Main/main.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying main.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml + +Bolt_DashApp_tooling: qml/Main/main.qml +Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/build.make +.PHONY : Bolt_DashApp_tooling + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_tooling.dir/build: Bolt_DashApp_tooling +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/build + +CMakeFiles/Bolt_DashApp_tooling.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean + +CMakeFiles/Bolt_DashApp_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..cd84704 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "qml/Main/main.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..e6b0af0 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_tooling. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..259884a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_tooling. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..d730ccb --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,295 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:6 (project)" + message: | + The system is: Darwin - 23.4.0 - arm64 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: + + The output was: + 1 + ld: library 'c++' not found + clang: error: linker command failed with exit code 1 (use -v to see invocation) + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is AppleClang, found in: + /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_218b5/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_218b5.dir/build.make CMakeFiles/cmTC_218b5.dir/build + Building CXX object CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl,-v -MD -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Apple clang version 15.0.0 (clang-1500.3.9.4) + Target: arm64-apple-darwin23.4.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.4.0 + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory) + End of search list. + Linking CXX executable cmTC_218b5 + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_218b5.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_218b5 + Apple clang version 15.0.0 (clang-1500.3.9.4) + Target: arm64-apple-darwin23.4.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_218b5 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1053.12 + BUILD 15:45:29 Feb 3 2024 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) + Library search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_218b5/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_218b5.dir/build.make CMakeFiles/cmTC_218b5.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl -v -MD -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] + ignore line: [Target: arm64-apple-darwin23.4.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.4.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_218b5] + ignore line: [/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_218b5.dir/link.txt --verbose=1] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_218b5 ] + ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] + ignore line: [Target: arm64-apple-darwin23.4.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_218b5 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [14.0.0] ==> ignore + arg [14.4] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk] ==> ignore + arg [-o] ==> ignore + arg [cmTC_218b5] ==> ignore + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + + + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake:24 (_qt_internal_find_third_party_dependencies)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:119 (include)" + - "CMakeLists.txt:10 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/kwin" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_0936a/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_0936a.dir/build.make CMakeFiles/cmTC_0936a.dir/build + Building CXX object CMakeFiles/cmTC_0936a.dir/src.cxx.o + /Library/Developer/CommandLineTools/usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_0936a.dir/src.cxx.o -MF CMakeFiles/cmTC_0936a.dir/src.cxx.o.d -o CMakeFiles/cmTC_0936a.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA/src.cxx + Linking CXX executable cmTC_0936a + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0936a.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_0936a.dir/src.cxx.o -o cmTC_0936a + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:30 (_qt_internal_find_third_party_dependencies)" + - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:41 (include)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:164 (find_package)" + - "CMakeLists.txt:10 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/kwin" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_64da6/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_64da6.dir/build.make CMakeFiles/cmTC_64da6.dir/build + Building CXX object CMakeFiles/cmTC_64da6.dir/src.cxx.o + /Library/Developer/CommandLineTools/usr/bin/c++ -DHAVE_STDATOMIC -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_64da6.dir/src.cxx.o -MF CMakeFiles/cmTC_64da6.dir/src.cxx.o.d -o CMakeFiles/cmTC_64da6.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1/src.cxx + Linking CXX executable cmTC_64da6 + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64da6.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_64da6.dir/src.cxx.o -o cmTC_64da6 + + exitCode: 0 +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5819b47 --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..bd69f6b --- /dev/null +++ b/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,389 @@ +# Hashes of file build rules. +704fe75316b31e8832e2a1ae46edf113 .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +5af708844a5263b9d802d2730a0ee954 .rcc/qmlcache/Bolt_DashApp_main_qml.cpp +7afee9b93018edc85d8500e289a097f9 .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp +c1d87c47fbc426d1e04566525358b46b .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp +699e1158c6248fb30bb23e96d216445b .rcc/qrc_configuration.cpp +2df0d8766b837a36213dec0ee75acc05 .rcc/qrc_qmake_Main.cpp +7051c2ba92889f51bc211a0615334971 CMakeFiles/Bolt_DashApp_autogen +f94c5a4b6b0d9e1f39badebfd5cd2b4d CMakeFiles/Bolt_DashApp_automoc_json_extraction +1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmlimportscan +3653f848231646653d797c90daf6e861 CMakeFiles/Bolt_DashApp_qmllint +530f209369bf8951464fc5ba15e07c38 CMakeFiles/Bolt_DashApp_qmllint_json +c5bcb51a79f362b4dca117214c8c8283 CMakeFiles/Bolt_DashApp_qmllint_module +1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmltyperegistration +e33a47e62e2ff38833e8d33d4b53a6ce _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp +3f3a9ddc670a0b3467fb9f7b9d7e3526 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen +0fd55916dc23816b2a9bda4782de46c2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction +46cda58841cbc72226c4f93ca8831e1d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint +eea8870a2ec8f78baa5812e362b4c88e _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json +79b531e4fcebbad1f152d72c40ab349d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module +4a5359ce800c968fe9fa707049198d29 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration +ff1b21b4f8ffacebd03140d86781642d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen +b56891e9a61208c4d605f5ab78434187 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen +76434b35e0f70f6619bd6ee5d86ee2d0 _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json +4fe01703f5f746c17b70e08bdac90bee _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen +729175d11b59e919236038e483c5a9a8 _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp +b423826fc5ea7e9d0c5cbadeb4fc54e8 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp +a4909f16ffafa3aa4c3fc6a7ebbed6fb _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp +3c282f48884cd0445fcddb17b439990a _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp +394e68d7e368937f78fce57be4e3d16b _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp +420c28a02bd5a4aa0cc2fbb870280bed _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp +9a40115a9b88d297bc1f17adac7fb87c _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp +aeffe3425edf09ab5fc2520751f9238f _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp +6cf32ca5723fe67aee4542c908940820 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp +fd60323884f536b365856846822e90cb _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp +329ad9afaadf458649f66ebc8ea33385 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp +ea64609f2e0e7a8996c0014244541fdd _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp +11318300f88b9b1031fb43a79a1584d2 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp +79197deb3b379c34984276ae7c28ede7 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp +58fa766e0361b33278923103b28c2b05 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp +8bbeaf6402d115aa676ff87ea97e9a04 _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp +fe1b2b480f425ad4591c3a223753a09a _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp +739fe1b15b6d85d980734864a5ddd742 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen +c741c440b92230dbb642b65d6591c6a5 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction +f7fad748003ea1b2f5587ed20e62f33c _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen +d85300ebb8c8ca40dc22978fa4768b3c _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint +1263ace7a709a48f930e6baf508986c4 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json +1ffec68c227afea6b1af0ecb475f1315 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module +e10769067945e8946619ef9f59f83a45 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration +a6f13629d0f8618c9badf4478649edbf _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen +2576fd224d14de16fe94e18bdade546a _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen +bf539450c4b52a277c204555d2785d18 _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json +8c374a2258dfb854cfd51f86d11e99e1 _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen +40435f79bec05330a744c780acf16cc1 _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp +4f78a8afba634f2d30c5e925eb6e0433 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp +94615605ba9dfa4045963627dba732be _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp +e4e22fceba977575a2c5f4a255148418 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp +be4f10cd1e957f141c66e5fc7165a622 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp +07fa55631e976cfb765353ecb93d38d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp +9e750be9641edd429ba0cfd5c492cb1a _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp +7365a52f128e1f40e27ca2ce59b002ab _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp +51f1368b76244451bcb1db2c98c25e50 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp +6fb5bd5414de12a767632750e6bef4aa _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp +245685e097ef0612394669037f9ff8ff _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp +8e5064cf3feccae3961f3417a84e2860 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp +a0bc337b32e174e535ec9afd6e7a43cc _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp +f8f5807115997e9baeeda63efd9bbd91 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp +f6306bb342a82f4e59b5ac20de12bf3c _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp +36a2b709f51e1fd35277b200c7cf4b74 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp +30d9648d758fdf597fc35975f9377030 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp +17ce96d8b8fce690aa2f66356528049e _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp +3e216c5fdeae7437449c4d0b5560660b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp +898c9e728eef0f7bfca3ff0dd553874b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp +93eb860d3e4eaed4951468018786d2a5 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp +7e199d6b404c2acfe1d6763b191734d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp +6870481ea68ce7a4060e741ae690a0f2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp +3b9832c74e1535f7c7af840da14fb79e _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp +3e53c7578597d4e7bd28d0c2a5161ec2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp +62941bf8fa05cf91169a9120b1aca11b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp +d357a178bf785b00754a8567a0c79cac _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp +e6ae9514d36ce7e64ec163f7b4d63fd0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp +939b922998f3a2bf8825fe842122d9d7 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp +53b742ea0a1c206703ee3635a31309c0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp +6745f2825cdcd504568a87e693ca7c85 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp +3f72f285355485f5b25a2d00124a48a2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp +ba3a08ff28f1babf103cd0c7cff80392 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp +7281da69c278a4290687f4d033623700 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp +52e6855ffa47bbd62201979faecbecdb _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp +cd731ca00742da29a7b0449e449087d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp +dc2bddded40d318fffd2877a711018e5 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp +3b55a24604f98e6ef232d4898660aaf6 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp +b2116b3fafad4690550e3b00c1582b63 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp +f09b576d72eb78c9b4f8215dff38f807 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp +b6c84bc31c1fe5bc6c6fdf0e57805ef0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp +d6387c519a650e3fb152fbe9e9cf2de9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp +867e8b920a75f3ed3080730513fd0ac9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp +23e54aa93f377694e2dfa5f7f14bb929 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp +632bc5310c078354f6e9390f5c2855f3 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp +0c9fa0a11969f876f1767afee62a2a18 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp +07fc232b269f189fd99fcbd2b956c224 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp +b92aef378a9c619c8a1cc051e4bb12d3 _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp +0fe502d0c189e5bad0aea611ee5c6fae _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp +f86a34fb5bcd2c2e22c383d766f0d1df _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen +7fa796559da51948e9f71713ba207d2e _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction +48d06ca1c9e03b53a01d2efd2a508a1b _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen +cc637f3129faa64bd27aceb4803bac9c _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint +009be53fc5ab94becd3629076b00c86a _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json +679b82df58b69f9bd30ac1bb88a1e640 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module +8729e53e1f88b926842befa22b795326 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration +2ec691ab609aac4b0b9e12a613ba2dc1 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen +8823df254e61e67c8ee6c3597283f85a _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen +a59d9fbbbc0c1688a71d3a3ebbba8fbe _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json +4c912a305be45ad8ea4ca19fd76f89cc _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen +865d1ec6b6b67f7ac2c21a4869de00ac _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp +4f91edfb01f693b4846fb26452caf3bd _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp +1e7fb2691b3717e699d39c7b701ba9ab _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp +5c9f634fbe92a5d864bb877eec29b064 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp +411ec62b0d8087f9cf39a92ce3311b33 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp +bfbf0c83f68dcbc130c37bd388f35c26 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp +4d6d0280372bca9918814159947ad0ae _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp +1e28a2d2f32d93a5a1a508a52e6407e5 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp +787caec0ad2cd2bf87cac64108fd5200 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp +4896c06bdfc316c45cf2fa425c11973e _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp +c28a27187f874629f99430c7a2b0f636 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp +bb27b09e33a2265814f8cfb66dd508c3 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp +fa1bafeffb6ed923f9ab5cbcc3a20e62 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp +4f30a1d757386e0176cb72f4c34c10f6 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp +a5054db3ffc37f28ad50f2036006041a _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp +22568c8a52526b413d5403b62ae61f67 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp +51ea344c5047be16a8ea5213668e519c _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp +01185abf18d79adb579193a3b07fff56 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp +68b985f4cd43015b8d906753e18d9d21 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp +f452b1157a8b322b9dba1443b71df0de _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp +3b2effb53ca970621159af9123aca31a _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp +ead341fa6efec860278e15f2ec3f67dc _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp +5d9300e14677e0894f2446676f182500 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp +7346e269c8c0ea9309eb4e54ce5bbff7 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp +1e33576ec9692cdd15bcb32204ae6ece _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp +fb3fb564e429e52fa027dfba3ac99d78 _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp +3638a2594659c642279bcfc494734e5f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen +980b386157cc4eccf939952822960d78 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction +4c574c266d772115b28e14b9cc24f5f1 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen +697427c4fb9b30ad5746c330bbda9f49 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint +6d88777fff35a7e2d829e739c255cee4 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json +d6ba7a41fa01752a95286a3384077a4b _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module +302dcbb8dfd6f27c4cdb05aed5a78d8b _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration +9fa6fa58bba742aef588c0a41e1653ab _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen +3186addca9cc0b6caa92c2d46bec9ff2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen +e69976171b7a18c2afa702c14fb63c27 _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp +45acfa90c49c37d2a93e7369a440f3aa _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json +5d3fa89e5ceff98a50c055fe209ff3d4 _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen +f10bfd6edcc4033fa9340a1e0a976330 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp +2e472f81014c721995b5708c0e17b3f2 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp +2cd66d93e966679ea8ec11e318b62182 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp +c05be832cac7b79ebd6a36f207266d9e _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp +3bb6376cefc5cb1c27c25ae792cfdf75 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp +2cfbec7289eeb726d13a1a445c42e926 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp +f25346997ba3a42729b265977de8be72 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp +ad06ec46e1642c8cae15e50ceedf61d3 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp +7ca493dca757db1b2a16000ca55cfaf9 _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp +d6f6674f679fa414c53219595faf5729 _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp +d8971f575aa1455f8b1986db8402732d _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen +f4d02774e8f92bbbf2ecbc062e12952a _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction +70cbd8703b9e905b31c9c21fa1637ea4 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen +7a98b2a5b2d15437d4ec45c5bad4091b _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint +c9c095f3a9425cb40337a65811b7ac08 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json +fda6a77fb203ec52727750446c019aad _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module +2c311f5bbedd746942d802f8a388bc91 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration +2aae8ed6122c545ce6e03832401203f9 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen +5c88a9be31a82e4ef25a1eb77ec58720 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen +ffa21f117f24972668d1bbf230f17a9f _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json +aad8657b86ff55f6ae867c32a1c5254c _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen +3146b58f4222e193fb5a942b5998f718 _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp +5731599be657b3fa9a7a9e6bc173c9d6 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp +880190fd48256e91263cb5267954d731 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp +16ee99118d89298e644c29dae21ebe4c _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp +ae5698b8c161e7e408c66e400d9b0b88 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp +1a007f4f002144484de4b48be1e576d3 _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp +d3c9511254fa0fb10a573e74ad12fa85 _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp +363a948b6dacfc77151a8656c7afb430 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen +bf202def1a18faa4ace2baf05dc9c41b _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction +eb3dcb6a87776ea66b157cba0771d9df _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen +8c8086e022fc0290fd8ff12d09b52450 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint +e2118e98cd36466733fc33c74af1adb1 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json +9f8b7c03672b2a6c66bff260048bc7f5 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module +ad28b7c6186fd267acbb2c316ee61642 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration +b04b5f8a3ef725de5ff035be2093db8d _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen +7e8fa2d6aed0e14626a73ffa899f2b4f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen +834a9ace712f458e2f76ef833afb09a7 _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json +87c7573ebc20145526ad488e862198db _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen +fee2389582fd7b3f772cd0d07e0f4677 _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp +32a5fa967ece4c2786fb3b67a97c37fb _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp +be6396058053bbb26aa8d5a90f327224 _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp +d53d15c5c6ff7883c96dcc743023b9f8 _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp +6ad712bf6fc86d5669cad6e6ffcd352d _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp +7d361571ab260acea3ba4edbf0e335ae _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp +d0702e1633be643c4afb2c339c484296 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen +2a8eafd8008a39b1f3a0aa8a01a5253a _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction +77114910f6d680e369e70d3c9af4fb39 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen +c22c4e9c6bb23d9ed1cf1841771d402c _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint +dbe90a333578132c5702afea2606528b _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json +7b59f796e9023ff80528287ac14e27e3 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module +1c98976e44fa7f9ad209f844caeaaa79 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration +69e9db37ae99c7066ee3b3e912ceb5d4 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen +f65f8be04ef9648656d87acc0df91463 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen +f26f941f754153ea5f9060bd8ad041c7 _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json +bab438aa85031517e4e76add5c9bcf8c _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen +221b57b1e282ebb439c55967bbfb8e12 _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp +970e8fd24cbb04c6639dddb318e43f56 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp +3cbe48c5b2c2b68e96fb906ebf91c352 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp +ab507fa1bf860a4f7e39afef34a84757 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp +a94894c2cdb3f163ad874c63c459d494 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp +2373e9bace83dd8948fe05b441557fc6 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp +8646239860f38a5cdb66644dc2d96b6e _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen +1d3edb9073c31303d715ed4b8c835f39 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction +55dd15d712c7a705e9d42961f281744c _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen +fa47f9fede50efdee7332dd64ddc0706 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint +16777f3fbb97dd3604199e340c4f0575 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json +0b1588c998d6b6551f4adea7dac2146c _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module +56f4aff1fe69c041c0e0d88db61ce5db _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration +34ba409d9ecc0905b8f1e9dc99fa3c89 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen +7a70d117b64b74b36dd7d8ed0be0fd4d _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen +87974ab2cb335b45eef0e9439c6e744d _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json +f473d9ec26e92f1b88dd710de5d97fe8 _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen +2a659ba21d1687b254137dbe573c9cee _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp +8cde5a9c1c98788001285e7848ab0b32 bolt_dashapp_qmltyperegistrations.cpp +94a4e6b591493ded13eacf9684aebf9f content/.rcc/qmlcache/content_App_qml.cpp +6916e5ea167d713c61e4907560710523 content/.rcc/qmlcache/content_BatterySlider_qml.cpp +971d839ce86c3b964d77f01dd2bb0173 content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +b0e59d24eeb48a3b76920ce2e362b63c content/.rcc/qmlcache/content_Speedometer_qml.cpp +2e0fc47ff5d64b88f6c11547132a5f94 content/.rcc/qmlcache/content_TempSlider_qml.cpp +fe3c77c85aaf2e4dfa13e0ab90f695a7 content/.rcc/qmlcache/content_WarningSymbol_qml.cpp +ee132720e03ec070c53618d12a2ff8b1 content/.rcc/qmlcache/content_qmlcache_loader.cpp +d0615d8a132e74f7d67dc3af3a3509ec content/.rcc/qrc_content_raw_qml_0.cpp +2130f002b849a41f58fe7e1dead40cba content/.rcc/qrc_qmake_content.cpp +e11df896c22ff11c20c86342252c5716 content/CMakeFiles/content_autogen +470e775060afaf0d3f0d4fea58897772 content/CMakeFiles/content_automoc_json_extraction +17382c3745ea1cb541fe494f6765d42c content/CMakeFiles/content_qmlcache_autogen +850b411bbd6f11304211bd065349ac4e content/CMakeFiles/content_qmllint +ccab716c0cb6327a73e949c98a1ec4b4 content/CMakeFiles/content_qmllint_json +831e4ec481c5698f2fa4ef3ecb438d03 content/CMakeFiles/content_qmllint_module +6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_qmltyperegistration +3cfa6921b7df271291ca506240a51263 content/CMakeFiles/contentplugin_autogen +63b06c8d2e09d55dbd54a138f37a26f5 content/CMakeFiles/contentplugin_init_autogen +e8cab1260aab3ddc96cc0b4654399366 content/content_qmltyperegistrations.cpp +593d7333b5b598f9e3eeb97e6deba2a2 content/meta_types/qt6content_debug_metatypes.json +e9c30d3a0a376d4c2d133ec6f60f05ea content/meta_types/qt6content_debug_metatypes.json.gen +70c07a3e809ebd4aa0769f762d3758ce imports/Backend/.rcc/qrc_qmake_Backend.cpp +381584ec12462e5de91719c7ade6b6f2 imports/Backend/CMakeFiles/BackendPlugin_autogen +3897ab0c764cd1f161495fd0380b2705 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction +d9badf69205c0dba6a244f3c28131e47 imports/Backend/CMakeFiles/BackendPlugin_qmllint +3d4d8d4bc8e7db81040ffb659ea75994 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json +c2fc7eaf0f94cd0d5a6b2a9838a6b750 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module +62133c5fbc6b4dc1fd435201bfe9f236 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration +7520d8a53bfe47ea1300f361fd0dbd5d imports/Backend/CMakeFiles/BackendPluginplugin_autogen +6af724c36ba4dfd3364af0fba0b3705e imports/Backend/CMakeFiles/Backend_autogen +235b2ec4c326ac0611753e4ab1040d24 imports/Backend/backendplugin_qmltyperegistrations.cpp +d9e12e27f833aefa638a2704fad16f49 imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json +f89a3fecba6e07c5cb42983db73863eb imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen +d522844888927813f024f67fba86cb3f imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +6d1d21ce33f9fdf6b2aea0e58d115383 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +2c36a5f294669862134eb38ea7f39f2a imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +43251e6cf8eae1af7d5de19e2616d2ed imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +0042322a0795f5cb96c0c8da63fc149d imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +adbb375648730d47bb1ba5b91b8158e0 imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp +e13326feff4b181fa0f6f811aa2af1e9 imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp +76741caf9f263c9f788ecac7cf4ee419 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen +b55179fdf2d49ef82e2837c92bee5ae0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction +96044054a3797ea92ae86c024712e536 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen +589b4d6dcf10118dc596cbafe032e759 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint +1817681b06f59c78b1dc8f2ebefa90f0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json +870c838975dd4644c9eb992ec0d92ed9 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration +302bcd68a79c72776966b196494bf655 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen +9c988f765a1e1fee8717a40316f34d09 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen +7611f5b1fced6f9d6f3c8a7c3bd2a597 imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +e83ce49ec7c69a400d3d277c6a09cbf9 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +8a03e76905f6da237d5b505b797bd50e imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen +9688256dd1705ce0d7e0038c869afac0 meta_types/qt6bolt_dashapp_debug_metatypes.json +8832df052b51625e22780f9a867929fa meta_types/qt6bolt_dashapp_debug_metatypes.json.gen +c8ee9bdcb0452ba2da5f41cccaf65374 qml/Bolt_Dash/Constants.qml +7cc209aa92e91232b2a4be5b6e612612 qml/Bolt_Dash/DirectoryFontLoader.qml +742d3a4aa3b4f960602872709a1567ea qml/Bolt_Dash/EventListModel.qml +7606eb47dabc7847739cebf75622a9ee qml/Bolt_Dash/EventListSimulator.qml +73a31ea83a64c910f8b4c214e4cb5bf3 qml/FlowView/+DesignMode/FlowItem.qml +379e2055baf114c6a24f32bb5eb386ba qml/FlowView/+DesignMode/FlowView.qml +202754debe627d7f2547b0b39830c6fc qml/FlowView/DefaultFlowEffect.qml +74e268563d260c1af87e82bd9d6a13f4 qml/FlowView/FlowActionArea.qml +75fe0b6b9e6c75ec6d816b24a5de4f58 qml/FlowView/FlowDecision.qml +35505dd280a3a92d3c0c45b0726b1118 qml/FlowView/FlowEffect.qml +437dee2023dbbebba752f255a10cd0ad qml/FlowView/FlowFadeEffect.qml +1f2906273ce48208c5e79e6ec49ed265 qml/FlowView/FlowItem.qml +ba56a3dac2a5ed46c34c830c45f7266c qml/FlowView/FlowMoveEffect.qml +b95a4adc036ed6d362af62aaa433e3e0 qml/FlowView/FlowPushEffect.qml +9cd7a68de70a1ab085154c41fdbb1f16 qml/FlowView/FlowPushLeftEffect.qml +49f64d2883937a51f339e0ded73735e4 qml/FlowView/FlowPushRightEffect.qml +490a6bbbc7c9c7f7e56f492187d83b3b qml/FlowView/FlowPushUpEffect.qml +f09a1a87819340d5f33095e64b257b6f qml/FlowView/FlowSlideDownEffect.qml +2133073357e91a19df1936f16d27c54e qml/FlowView/FlowSlideLeftEffect.qml +7e73eee8dcd1809f7734e39765ea2367 qml/FlowView/FlowSlideRightEffect.qml +4e5af204df891d62f9a63825c056b14c qml/FlowView/FlowSlideUpEffect.qml +fbec16918b1c1b8dde3a8cb000ccc6af qml/FlowView/FlowState.qml +c6bd5144ea82fc66d1aa0546e63207d2 qml/FlowView/FlowTransition.qml +c6e6ffa6e42c0f051c4cc5cdf7bda7af qml/FlowView/FlowTransitionList.qml +ddf1b428bcc2fcb8a572847fecfc0e5d qml/FlowView/FlowView.qml +10cad70c70da1e09cdfe987261090967 qml/FlowView/FlowWildcard.qml +12ef003b1e36c6c9d1bafc8ac61df1cc qml/FlowView/SwipeInteraction.qml +2d7b62bc82f222e3d979ad82b36a03d9 qml/FlowView/qmldir +d321fba34ae80da542c72be1b6da1b5f qml/Main/main.qml +a91975d78ac69f877c938a82fbdeb880 qml/QtQuick/Studio/Components/ArcArrow.qml +d5e5087f3b0d02ec60cb6d78d0915643 qml/QtQuick/Studio/Components/ArcItem.qml +66682dfb5a37f683dc5255a3c710d197 qml/QtQuick/Studio/Components/BorderItem.qml +1c7e5b2e50a11afb31c5dfb219049b59 qml/QtQuick/Studio/Components/EllipseItem.qml +fda8a4f806f8ed027da9265813bcb219 qml/QtQuick/Studio/Components/FlipableItem.qml +5a70d38e7f1d925e32098ea415eb4f54 qml/QtQuick/Studio/Components/GroupItem.qml +dd90bb3d4c602093a6ca35cbbcccd9b4 qml/QtQuick/Studio/Components/IsoItem.qml +b5d776e9156570b4c565bc272ceafebc qml/QtQuick/Studio/Components/PieItem.qml +33c0059509c89e3c5c4b8ca7a8f66068 qml/QtQuick/Studio/Components/RectangleItem.qml +c5579744b584a90e61ec174a40b6d63b qml/QtQuick/Studio/Components/RegularPolygonItem.qml +b5f9cd6c596060a27b27bf7934feee79 qml/QtQuick/Studio/Components/StraightArrow.qml +689c02f366edb7634bd360b089c763dd qml/QtQuick/Studio/Components/SvgPathItem.qml +7d427150886ddf8c45c59694240ba57d qml/QtQuick/Studio/Components/TriangleItem.qml +5748802361de2077398aab0e3b981359 qml/QtQuick/Studio/Effects/BlendEffect.qml +36be8294cec18fc6632556b833fb0952 qml/QtQuick/Studio/Effects/BlendItem.qml +07053debb15f28b5402a786df269e67f qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml +f6134ee929e01cf6f71789f0e5af239b qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml +c0156f67c3fa2cb3072101eb2bc5dd04 qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml +5af009ff988d8cb9d323edb73c3bfc7b qml/QtQuick/Studio/Effects/ColorOverlayItem.qml +ab49a361dc382c8e9d603dd028573abe qml/QtQuick/Studio/Effects/ColorizeEffect.qml +8138b7aeec7b750a0f49d111d7e73da8 qml/QtQuick/Studio/Effects/ColorizeItem.qml +4ff2db206fe61be113c6651d8e2bc7e5 qml/QtQuick/Studio/Effects/DesaturationEffect.qml +5e622e77058e047ba7402d0ff627c6b2 qml/QtQuick/Studio/Effects/DesaturationItem.qml +73c512aa55524ecf51f3e344c5683a6e qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml +32e6fe20103ec48efc1740e02dd3a6e5 qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml +8382211282915a99743ceb25791c10ee qml/QtQuick/Studio/Effects/DisplaceEffect.qml +ac6570b826034cf86a2f03bb0dc5ecde qml/QtQuick/Studio/Effects/DisplaceItem.qml +c385943474a5bc9d33c19306d583ed09 qml/QtQuick/Studio/Effects/DropShadowEffect.qml +5a601dd67d002b8b92a67c647558c44c qml/QtQuick/Studio/Effects/DropShadowItem.qml +6080ecd2edc576bb27ab2b598cc243eb qml/QtQuick/Studio/Effects/FastBlurEffect.qml +7c8c37ae64cd62eeeafce2f24c4b350c qml/QtQuick/Studio/Effects/FastBlurItem.qml +ae51797cb45a76f50e747e4c72f3f440 qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml +8eb8836495e4e8e90b21b8a9718f8604 qml/QtQuick/Studio/Effects/GammaAdjustItem.qml +7e565ec6e6fee5b8795f19ee9bf472a6 qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml +540792719ee0051c351c0dfd8beaece3 qml/QtQuick/Studio/Effects/GaussianBlurItem.qml +e19174f31d677244acfd8b5cc6948dde qml/QtQuick/Studio/Effects/GlowEffect.qml +69d2fab228d782bded53f287bcd919e0 qml/QtQuick/Studio/Effects/GlowItem.qml +3ea802070619e4abd0c40586f4b33423 qml/QtQuick/Studio/Effects/HueSaturationEffect.qml +83dd8a4896f6f8770184f9d94d398aac qml/QtQuick/Studio/Effects/HueSaturationItem.qml +5f082d8847e8ae322d41f5bbabee42ef qml/QtQuick/Studio/Effects/InnerShadowEffect.qml +981078cac010c12a6f9850e8d025ba9a qml/QtQuick/Studio/Effects/InnerShadowItem.qml +8c5fe5ccc505145d478d3194016d72f4 qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml +e6ecbf6490b525c4935841b7dbef256b qml/QtQuick/Studio/Effects/LevelAdjustItem.qml +8570128c85989fe165c8065d79451bb4 qml/QtQuick/Studio/Effects/MaskItem.qml +3827a653f3abf79d81483842e41975b9 qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml +53415ebeedb011449ffba0e12f84e74b qml/QtQuick/Studio/Effects/MaskedBlurItem.qml +f3b90e289f0e7fb9ea4e47825c2623ce qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml +ad616cf528f5355814c7de0dd32eb32a qml/QtQuick/Studio/Effects/OpacityMaskItem.qml +f256aa33342c808c0511ce227414e3b3 qml/QtQuick/Studio/Effects/RadialBlurEffect.qml +ed38962ee0a46278cf25be32da8aaf23 qml/QtQuick/Studio/Effects/RadialBlurItem.qml +8e4b4f5f2ebbcdcfde45e1eda56be0f4 qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml +bf6c5d8765c319a45aab8d13f4cd1533 qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml +60bf9be5eba44e7bba4024167f78115f qml/QtQuick/Studio/Effects/RotationItem.qml +c8e78ccfd180db3ab94ff1f9b707988e qml/QtQuick/Studio/Effects/SaturationItem.qml +06eb52879697fbf0f08c023d4998edc3 qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml +3de39e41eacc059a113828f5fa53bcf7 qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml +35e4573987e359695c5442881de2a6e5 qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml +0b884512e9783c52a57d8c951d05a13d qml/QtQuick/Studio/Effects/ZoomBlurItem.qml +23784f34620da812a20e6e423da509b0 qml/QtQuick/Studio/EventSimulator/EventSimulator.qml +4f1144f33341b9a3a6e016b9ffb7e2ee qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml +10d0a9b062fc2137a607fdddf440ca3a qml/QtQuick/Studio/EventSystem/EventListener.qml +92ffb6314cf1f9fc33fd8099481112a6 qml/QtQuick/Studio/EventSystem/EventSystem.qml +3f8f98cdd72702265045537da15cd398 qml/QtQuick/Studio/LogicHelper/AndOperator.qml +6fafcbc41e67765914c0ef39d3967117 qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml +b0c7f5932cdf9274d0ad31a2031dd789 qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml +c1e8c144619528d3799034c1e4fe1246 qml/QtQuick/Studio/LogicHelper/NotOperator.qml +9ebd31d6da29fa34f1652f51a1f8968b qml/QtQuick/Studio/LogicHelper/OrOperator.qml +7f93fad6692bd9c1c215645968761a7e qml/QtQuick/Studio/LogicHelper/RangeMapper.qml +f7b99d9eb6cb5c977e2d197135a68075 qml/QtQuick/Studio/LogicHelper/StringMapper.qml +001ef4e2ebfa0fa773d366b2adf6936f qml/QtQuick/Studio/MultiText/MultiTextElement.qml +523eacfa03d7f11d56cdb1107988c8c6 qml/QtQuick/Studio/MultiText/MultiTextException.qml +5d3609c1519c891f55f1cdc1440841be qml/QtQuick/Studio/MultiText/MultiTextItem.qml +1d2a3059ff97ec8d55d81c1a71604f48 qml/content/App.qml +1bd8f9ba3d34aad9fd4cca555fc321ba qml/content/BatterySlider.qml +4714ff78e98ca6813c445063b85a98b2 qml/content/Screen01.ui.qml +6d6a18da20768a44f1df0fa3b2aef5a7 qml/content/Speedometer.qml +6a458631fa923fd58ffd9cb8c02ab1a1 qml/content/TempSlider.qml +b74ee1a3d9ac5939c265bacdae1f87ee qml/content/WarningSymbol.qml +86f920ea72f490e171b2b7ff5883e5b7 qml/content/fonts/fonts.txt +575f8ddf60415e110dafcd0b6ab69666 qml/content/fonts/nasalization-rg.otf diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..8aec778 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,1222 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlcomponents" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules" + "CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + "CMakeFiles/3.27.8/CMakeSystem.cmake" + "_deps/ds-src/CMakeLists.txt" + "_deps/ds-src/src/CMakeLists.txt" + "_deps/ds-src/src/imports/CMakeLists.txt" + "_deps/ds-src/src/imports/application/CMakeLists.txt" + "_deps/ds-src/src/imports/components/CMakeLists.txt" + "_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" + "_deps/ds-src/src/imports/flowview/CMakeLists.txt" + "_deps/ds-src/src/imports/logichelper/CMakeLists.txt" + "_deps/ds-src/src/imports/multitext/CMakeLists.txt" + "_deps/ds-src/src/imports/tools/CMakeLists.txt" + "_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" + "_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindBinUtils.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePackageConfigHelpers.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePrintHelpers.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FeatureSummary.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPkgConfig.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtAndroidHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtAppHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtAutoDetectHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtAutogenHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildInformation.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildOptionsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildPathsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoExamplesHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtCMakeHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtCMakeVersionHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtDbusHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtDocsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtExecutableHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtFeature.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtFeatureCommon.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtFindPackageHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtFlagHandlingHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtFrameworkHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtGlobalStateHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtHeadersClean.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtInstallHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtJavaHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtLalrHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtMkspecHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtModuleHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPkgConfigHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPlatformSupport.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPlatformTargetHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPluginHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPostProcessHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPriHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPrlHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtQmakeHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtResourceHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtRpathHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtSanitizerHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtSeparateDebugInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtSimdHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtSyncQtHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtTargetHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtTestHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtToolHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtToolchainHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtUnityBuildHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtWasmHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtWrapperScriptHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + ".rcc/configuration.qrc" + "_deps/ds-subbuild/CMakeLists.txt" + ".rcc/qmake_Main.qrc" + "qml/Main/Bolt_DashApp_qml_module_dir_map.qrc" + ".rcc/Bolt_DashApp_raw_qml_0.qrc" + "qml/Main/qmldir" + "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json" + ".qt/QtDeploySupport.cmake" + "qmltypes/Bolt_DashApp_foreign_types.txt" + ".rcc/qmllint/Bolt_DashApp.rsp" + ".rcc/qmllint/Bolt_DashApp_json.rsp" + ".rcc/qmllint/Bolt_DashApp_module.rsp" + ".rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp" + ".qt/deploy_qml_imports/Bolt_DashApp.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc" + "_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp" + "qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc" + "qml/QtQuick/Studio/Components/qmldir" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt" + "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp" + "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp" + "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp" + "_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp" + "_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc" + "_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp" + "qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc" + "qml/QtQuick/Studio/Effects/qmldir" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt" + "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp" + "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp" + "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp" + "_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp" + "qml/FlowView/FlowView_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt" + "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp" + "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp" + "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp" + "_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp" + "_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc" + "_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp" + "qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc" + "qml/QtQuick/Studio/LogicHelper/qmldir" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt" + "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp" + "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp" + "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp" + "_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc" + "_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp" + "qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc" + "qml/QtQuick/Studio/MultiText/qmldir" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt" + "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp" + "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp" + "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp" + "_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp" + "_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc" + "_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp" + "qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc" + "qml/QtQuick/Studio/EventSimulator/qmldir" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp" + "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc" + "_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp" + "qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc" + "qml/QtQuick/Studio/EventSystem/qmldir" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp" + "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp" + "_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc" + "_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp" + "qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc" + "qml/QtQuick/Studio/Application/qmldir" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json" + "_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt" + "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp" + "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp" + "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp" + "_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp" + "_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake" + "content/.rcc/qmake_content.qrc" + "content/contentplugin_contentPlugin.cpp" + "qml/content/content_qml_module_dir_map.qrc" + "content/.rcc/content_raw_qml_0.qrc" + "qml/content/qmldir" + "content/CMakeFiles/content_autogen.dir/AutogenInfo.json" + "content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json" + "content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json" + "content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json" + "content/qmltypes/content_foreign_types.txt" + "content/.rcc/qmllint/content.rsp" + "content/.rcc/qmllint/content_json.rsp" + "content/.rcc/qmllint/content_module.rsp" + "content/.rcc/qmlcache/content_qml_loader_file_list.rsp" + "content/contentplugin_init.cpp" + "content/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc" + "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" + "qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc" + "imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc" + "qml/Bolt_Dash/qmldir" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp" + "imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp" + "imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" + "imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/Backend/.rcc/qmake_Backend.qrc" + "imports/Backend/BackendPluginplugin_BackendPlugin.cpp" + "qml/Backend/BackendPlugin_qml_module_dir_map.qrc" + "qml/Backend/qmldir" + "imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json" + "imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json" + "imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json" + "imports/Backend/qmltypes/BackendPlugin_foreign_types.txt" + "imports/Backend/.rcc/qmllint/BackendPlugin.rsp" + "imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp" + "imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp" + "imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake" + "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/content.dir/DependInfo.cmake" + "content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake" + "content/CMakeFiles/content_resources_1.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake" + "content/CMakeFiles/content_tooling.dir/DependInfo.cmake" + "content/CMakeFiles/content_resources_2.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake" + "content/CMakeFiles/content_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake" + "imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..33d118e --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,5438 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/Bolt_DashApp.dir/all +all: CMakeFiles/Bolt_DashApp_tooling.dir/all +all: _deps/ds-build/all +all: content/all +all: imports/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: _deps/ds-build/preinstall +preinstall: content/preinstall +preinstall: imports/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/Bolt_DashApp.dir/clean +clean: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean +clean: CMakeFiles/Bolt_DashApp_tooling.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean +clean: CMakeFiles/Bolt_DashApp_autogen.dir/clean +clean: _deps/ds-build/clean +clean: content/clean +clean: imports/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build + +# Recursive "all" directory target. +_deps/ds-build/all: _deps/ds-build/src/all +.PHONY : _deps/ds-build/all + +# Recursive "preinstall" directory target. +_deps/ds-build/preinstall: _deps/ds-build/src/preinstall +.PHONY : _deps/ds-build/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/clean: _deps/ds-build/src/clean +.PHONY : _deps/ds-build/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src + +# Recursive "all" directory target. +_deps/ds-build/src/all: _deps/ds-build/src/imports/all +.PHONY : _deps/ds-build/src/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/preinstall: _deps/ds-build/src/imports/preinstall +.PHONY : _deps/ds-build/src/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/clean: _deps/ds-build/src/imports/clean +.PHONY : _deps/ds-build/src/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports + +# Recursive "all" directory target. +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/components/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/effects_qt6/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/flowview/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/logichelper/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/multitext/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/tools/all +_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/application/all +.PHONY : _deps/ds-build/src/imports/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/components/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/effects_qt6/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/flowview/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/logichelper/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/multitext/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/tools/preinstall +_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/application/preinstall +.PHONY : _deps/ds-build/src/imports/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/components/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/effects_qt6/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/flowview/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/logichelper/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/multitext/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/tools/clean +_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/application/clean +.PHONY : _deps/ds-build/src/imports/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/application + +# Recursive "all" directory target. +_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all +_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all +_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all +_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/application/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/application/preinstall: +.PHONY : _deps/ds-build/src/imports/application/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean +_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/application/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/components + +# Recursive "all" directory target. +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all +_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/components/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/components/preinstall: +.PHONY : _deps/ds-build/src/imports/components/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/components/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/effects_qt6 + +# Recursive "all" directory target. +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all +_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/effects_qt6/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/effects_qt6/preinstall: +.PHONY : _deps/ds-build/src/imports/effects_qt6/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/flowview + +# Recursive "all" directory target. +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all +_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/flowview/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/flowview/preinstall: +.PHONY : _deps/ds-build/src/imports/flowview/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/logichelper + +# Recursive "all" directory target. +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all +_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/logichelper/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/logichelper/preinstall: +.PHONY : _deps/ds-build/src/imports/logichelper/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/multitext + +# Recursive "all" directory target. +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all +_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/multitext/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/multitext/preinstall: +.PHONY : _deps/ds-build/src/imports/multitext/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/tools + +# Recursive "all" directory target. +_deps/ds-build/src/imports/tools/all: _deps/ds-build/src/imports/tools/eventsimulator/all +_deps/ds-build/src/imports/tools/all: _deps/ds-build/src/imports/tools/eventsystem/all +.PHONY : _deps/ds-build/src/imports/tools/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/tools/preinstall: _deps/ds-build/src/imports/tools/eventsimulator/preinstall +_deps/ds-build/src/imports/tools/preinstall: _deps/ds-build/src/imports/tools/eventsystem/preinstall +.PHONY : _deps/ds-build/src/imports/tools/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/tools/clean: _deps/ds-build/src/imports/tools/eventsimulator/clean +_deps/ds-build/src/imports/tools/clean: _deps/ds-build/src/imports/tools/eventsystem/clean +.PHONY : _deps/ds-build/src/imports/tools/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/tools/eventsimulator + +# Recursive "all" directory target. +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/tools/eventsimulator/preinstall: +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/clean + +#============================================================================= +# Directory level rules for directory _deps/ds-build/src/imports/tools/eventsystem + +# Recursive "all" directory target. +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all +_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/all + +# Recursive "preinstall" directory target. +_deps/ds-build/src/imports/tools/eventsystem/preinstall: +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/preinstall + +# Recursive "clean" directory target. +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean +_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/clean + +#============================================================================= +# Directory level rules for directory content + +# Recursive "all" directory target. +content/all: content/CMakeFiles/content.dir/all +content/all: content/CMakeFiles/content_resources_1.dir/all +content/all: content/CMakeFiles/contentplugin.dir/all +content/all: content/CMakeFiles/content_qmlcache.dir/all +content/all: content/CMakeFiles/content_tooling.dir/all +content/all: content/CMakeFiles/content_resources_2.dir/all +content/all: content/CMakeFiles/contentplugin_init.dir/all +.PHONY : content/all + +# Recursive "preinstall" directory target. +content/preinstall: +.PHONY : content/preinstall + +# Recursive "clean" directory target. +content/clean: content/CMakeFiles/content.dir/clean +content/clean: content/CMakeFiles/content_automoc_json_extraction.dir/clean +content/clean: content/CMakeFiles/content_qmltyperegistration.dir/clean +content/clean: content/CMakeFiles/content_resources_1.dir/clean +content/clean: content/CMakeFiles/contentplugin.dir/clean +content/clean: content/CMakeFiles/content_qmllint.dir/clean +content/clean: content/CMakeFiles/content_qmllint_json.dir/clean +content/clean: content/CMakeFiles/content_qmllint_module.dir/clean +content/clean: content/CMakeFiles/content_qmlcache.dir/clean +content/clean: content/CMakeFiles/content_tooling.dir/clean +content/clean: content/CMakeFiles/content_resources_2.dir/clean +content/clean: content/CMakeFiles/contentplugin_init.dir/clean +content/clean: content/CMakeFiles/content_autogen.dir/clean +content/clean: content/CMakeFiles/contentplugin_autogen.dir/clean +content/clean: content/CMakeFiles/content_qmlcache_autogen.dir/clean +content/clean: content/CMakeFiles/contentplugin_init_autogen.dir/clean +.PHONY : content/clean + +#============================================================================= +# Directory level rules for directory imports + +# Recursive "all" directory target. +imports/all: imports/Bolt_Dash/all +imports/all: imports/Backend/all +.PHONY : imports/all + +# Recursive "preinstall" directory target. +imports/preinstall: imports/Bolt_Dash/preinstall +imports/preinstall: imports/Backend/preinstall +.PHONY : imports/preinstall + +# Recursive "clean" directory target. +imports/clean: imports/Bolt_Dash/clean +imports/clean: imports/Backend/clean +.PHONY : imports/clean + +#============================================================================= +# Directory level rules for directory imports/Backend + +# Recursive "all" directory target. +imports/Backend/all: imports/Backend/CMakeFiles/Backend.dir/all +imports/Backend/all: imports/Backend/CMakeFiles/BackendPlugin.dir/all +imports/Backend/all: imports/Backend/CMakeFiles/BackendPluginplugin.dir/all +.PHONY : imports/Backend/all + +# Recursive "preinstall" directory target. +imports/Backend/preinstall: +.PHONY : imports/Backend/preinstall + +# Recursive "clean" directory target. +imports/Backend/clean: imports/Backend/CMakeFiles/Backend.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/Backend_autogen.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean +imports/Backend/clean: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean +.PHONY : imports/Backend/clean + +#============================================================================= +# Directory level rules for directory imports/Bolt_Dash + +# Recursive "all" directory target. +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all +.PHONY : imports/Bolt_Dash/all + +# Recursive "preinstall" directory target. +imports/Bolt_Dash/preinstall: +.PHONY : imports/Bolt_Dash/preinstall + +# Recursive "clean" directory target. +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean +.PHONY : imports/Bolt_Dash/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=6,7,8 "Built target Bolt_DashApp" +.PHONY : CMakeFiles/Bolt_DashApp.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 92 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp.dir/rule + +# Convenience name for target. +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/rule +.PHONY : Bolt_DashApp + +# clean rule for target. +CMakeFiles/Bolt_DashApp.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_automoc_json_extraction" +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule + +# Convenience name for target. +Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule +.PHONY : Bolt_DashApp_automoc_json_extraction + +# clean rule for target. +CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmltyperegistration.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=9 "Built target Bolt_DashApp_qmltyperegistration" +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 86 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule +.PHONY : Bolt_DashApp_qmltyperegistration + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/rule +.PHONY : Bolt_DashApp_qmllint + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_json.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_json" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule +.PHONY : Bolt_DashApp_qmllint_json + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_module.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_module" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule +.PHONY : Bolt_DashApp_qmllint_module + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_tooling.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_tooling" +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/rule + +# Convenience name for target. +Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/rule +.PHONY : Bolt_DashApp_tooling + +# clean rule for target. +CMakeFiles/Bolt_DashApp_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmlimportscan.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmlimportscan" +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule +.PHONY : Bolt_DashApp_qmlimportscan + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_autogen.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: content/CMakeFiles/contentplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen" +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/rule + +# Convenience name for target. +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/rule +.PHONY : Bolt_DashApp_autogen + +# clean rule for target. +CMakeFiles/Bolt_DashApp_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=33,34,35,36,37 "Built target QuickStudioComponents" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule + +# Convenience name for target. +QuickStudioComponents: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule +.PHONY : QuickStudioComponents + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule +.PHONY : QuickStudioComponents_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule +.PHONY : QuickStudioComponents_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: content/CMakeFiles/content_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmltyperegistrations" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule + +# Convenience name for target. +all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule +.PHONY : all_qmltyperegistrations + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=39 "Built target QuickStudioComponents_resources_1" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule + +# Convenience name for target. +QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule +.PHONY : QuickStudioComponents_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule +.PHONY : QuickStudioComponentsplugin + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule +.PHONY : QuickStudioComponents_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint_json" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule +.PHONY : QuickStudioComponents_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint_module" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule +.PHONY : QuickStudioComponents_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: CMakeFiles/Bolt_DashApp_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: content/CMakeFiles/content_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule + +# Convenience name for target. +all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule +.PHONY : all_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: CMakeFiles/Bolt_DashApp_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: content/CMakeFiles/content_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_json" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule + +# Convenience name for target. +all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule +.PHONY : all_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: CMakeFiles/Bolt_DashApp_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: content/CMakeFiles/content_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_module" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule + +# Convenience name for target. +all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule +.PHONY : all_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmlcache" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule +.PHONY : QuickStudioComponents_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=40,41 "Built target QuickStudioComponents_tooling" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule + +# Convenience name for target. +QuickStudioComponents_tooling: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule +.PHONY : QuickStudioComponents_tooling + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_resources_2" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule + +# Convenience name for target. +QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule +.PHONY : QuickStudioComponents_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin_init" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule +.PHONY : QuickStudioComponentsplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_autogen" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule +.PHONY : QuickStudioComponents_autogen + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=42 "Built target QuickStudioComponentsplugin_autogen" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule +.PHONY : QuickStudioComponentsplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=38 "Built target QuickStudioComponents_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule +.PHONY : QuickStudioComponents_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule +.PHONY : QuickStudioComponentsplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 "Built target QuickStudioEffects" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 23 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule + +# Convenience name for target. +QuickStudioEffects: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule +.PHONY : QuickStudioEffects + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEffects_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule +.PHONY : QuickStudioEffects_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_resources_1" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule +.PHONY : QuickStudioEffects_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule +.PHONY : QuickStudioEffectsplugin + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule +.PHONY : QuickStudioEffects_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint_json" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule +.PHONY : QuickStudioEffects_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint_module" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule +.PHONY : QuickStudioEffects_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmlcache" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule +.PHONY : QuickStudioEffects_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=61,62,63,64,65,66,67 "Built target QuickStudioEffects_tooling" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule + +# Convenience name for target. +QuickStudioEffects_tooling: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule +.PHONY : QuickStudioEffects_tooling + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=60 "Built target QuickStudioEffects_resources_2" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule +.PHONY : QuickStudioEffects_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin_init" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule +.PHONY : QuickStudioEffectsplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_autogen" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule +.PHONY : QuickStudioEffects_autogen + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=68 "Built target QuickStudioEffectsplugin_autogen" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule +.PHONY : QuickStudioEffectsplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=59 "Built target QuickStudioEffects_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEffects_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule +.PHONY : QuickStudioEffectsplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=14,15,16,17,18,19,20,21 "Built target FlowView" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 13 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule + +# Convenience name for target. +FlowView: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule +.PHONY : FlowView + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=22 "Built target FlowView_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule + +# Convenience name for target. +FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule +.PHONY : FlowView_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=23 "Built target FlowView_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 6 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule + +# Convenience name for target. +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule +.PHONY : FlowView_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=28 "Built target FlowViewplugin" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 14 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule + +# Convenience name for target. +FlowViewplugin: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule +.PHONY : FlowViewplugin + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule + +# Convenience name for target. +FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule +.PHONY : FlowView_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint_json" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule + +# Convenience name for target. +FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule +.PHONY : FlowView_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint_module" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule + +# Convenience name for target. +FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule +.PHONY : FlowView_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmlcache" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule + +# Convenience name for target. +FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule +.PHONY : FlowView_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=24,25,26,27 "Built target FlowView_tooling" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule + +# Convenience name for target. +FlowView_tooling: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule +.PHONY : FlowView_tooling + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_resources_1" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule + +# Convenience name for target. +FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule +.PHONY : FlowView_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_init" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule + +# Convenience name for target. +FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule +.PHONY : FlowViewplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_autogen" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule + +# Convenience name for target. +FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule +.PHONY : FlowView_autogen + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_autogen" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule + +# Convenience name for target. +FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule +.PHONY : FlowViewplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule + +# Convenience name for target. +FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule +.PHONY : FlowView_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule + +# Convenience name for target. +FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule +.PHONY : FlowViewplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=80,81,82 "Built target QuickStudioLogicHelper" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule +.PHONY : QuickStudioLogicHelper + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule +.PHONY : QuickStudioLogicHelper_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule +.PHONY : QuickStudioLogicHelper_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=84 "Built target QuickStudioLogicHelper_resources_1" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule +.PHONY : QuickStudioLogicHelper_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=86 "Built target QuickStudioLogicHelperplugin" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule +.PHONY : QuickStudioLogicHelperplugin + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint_json" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint_module" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=83 "Built target QuickStudioLogicHelper_qmlcache" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule +.PHONY : QuickStudioLogicHelper_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=85 "Built target QuickStudioLogicHelper_tooling" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_tooling: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule +.PHONY : QuickStudioLogicHelper_tooling + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_resources_2" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule +.PHONY : QuickStudioLogicHelper_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_init" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule +.PHONY : QuickStudioLogicHelperplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_autogen" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule +.PHONY : QuickStudioLogicHelper_autogen + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_autogen" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule +.PHONY : QuickStudioLogicHelperplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule +.PHONY : QuickStudioLogicHelper_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule +.PHONY : QuickStudioLogicHelperplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=87,88 "Built target QuickStudioMultiText" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule + +# Convenience name for target. +QuickStudioMultiText: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule +.PHONY : QuickStudioMultiText + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=89 "Built target QuickStudioMultiText_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule +.PHONY : QuickStudioMultiText_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=90 "Built target QuickStudioMultiText_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule +.PHONY : QuickStudioMultiText_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_resources_1" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule + +# Convenience name for target. +QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule +.PHONY : QuickStudioMultiText_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule +.PHONY : QuickStudioMultiTextplugin + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule +.PHONY : QuickStudioMultiText_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint_json" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule +.PHONY : QuickStudioMultiText_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint_module" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule +.PHONY : QuickStudioMultiText_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmlcache" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule +.PHONY : QuickStudioMultiText_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_tooling" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule + +# Convenience name for target. +QuickStudioMultiText_tooling: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule +.PHONY : QuickStudioMultiText_tooling + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=91 "Built target QuickStudioMultiText_resources_2" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule + +# Convenience name for target. +QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule +.PHONY : QuickStudioMultiText_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin_init" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule +.PHONY : QuickStudioMultiTextplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_autogen" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule +.PHONY : QuickStudioMultiText_autogen + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=92 "Built target QuickStudioMultiTextplugin_autogen" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule +.PHONY : QuickStudioMultiTextplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule +.PHONY : QuickStudioMultiText_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule +.PHONY : QuickStudioMultiTextplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=69,70 "Built target QuickStudioEventSimulator" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule +.PHONY : QuickStudioEventSimulator + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEventSimulator_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule +.PHONY : QuickStudioEventSimulator_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=72 "Built target QuickStudioEventSimulator_resources_1" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule +.PHONY : QuickStudioEventSimulator_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=73 "Built target QuickStudioEventSimulatorplugin" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule +.PHONY : QuickStudioEventSimulatorplugin + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint_json" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint_module" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmlcache" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule +.PHONY : QuickStudioEventSimulator_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_tooling" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_tooling: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule +.PHONY : QuickStudioEventSimulator_tooling + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_resources_2" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule +.PHONY : QuickStudioEventSimulator_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_init" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule +.PHONY : QuickStudioEventSimulator_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=71 "Built target QuickStudioEventSimulator_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEventSimulator_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=74,75 "Built target QuickStudioEventSystem" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule + +# Convenience name for target. +QuickStudioEventSystem: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule +.PHONY : QuickStudioEventSystem + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEventSystem_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=77 "Built target QuickStudioEventSystem_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule +.PHONY : QuickStudioEventSystem_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_resources_1" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule +.PHONY : QuickStudioEventSystem_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule +.PHONY : QuickStudioEventSystemplugin + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule +.PHONY : QuickStudioEventSystem_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint_json" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule +.PHONY : QuickStudioEventSystem_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint_module" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule +.PHONY : QuickStudioEventSystem_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=76 "Built target QuickStudioEventSystem_qmlcache" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule +.PHONY : QuickStudioEventSystem_qmlcache + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=78 "Built target QuickStudioEventSystem_tooling" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_tooling: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule +.PHONY : QuickStudioEventSystem_tooling + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_resources_2" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule +.PHONY : QuickStudioEventSystem_resources_2 + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=79 "Built target QuickStudioEventSystemplugin_init" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule +.PHONY : QuickStudioEventSystemplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule +.PHONY : QuickStudioEventSystem_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule +.PHONY : QuickStudioEventSystemplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmlcache_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEventSystem_qmlcache_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule +.PHONY : QuickStudioEventSystemplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=29 "Built target QuickStudioApplication" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule + +# Convenience name for target. +QuickStudioApplication: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule +.PHONY : QuickStudioApplication + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=30 "Built target QuickStudioApplication_automoc_json_extraction" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule +.PHONY : QuickStudioApplication_automoc_json_extraction + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmltyperegistration" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule +.PHONY : QuickStudioApplication_qmltyperegistration + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_resources_1" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule + +# Convenience name for target. +QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule +.PHONY : QuickStudioApplication_resources_1 + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=31 "Built target QuickStudioApplicationplugin" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule +.PHONY : QuickStudioApplicationplugin + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule +.PHONY : QuickStudioApplication_qmllint + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint_json" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule +.PHONY : QuickStudioApplication_qmllint_json + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint_module" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule +.PHONY : QuickStudioApplication_qmllint_module + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplicationplugin_init" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule +.PHONY : QuickStudioApplicationplugin_init + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_autogen" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule +.PHONY : QuickStudioApplication_autogen + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplicationplugin_autogen" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule +.PHONY : QuickStudioApplicationplugin_autogen + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir + +# All Build rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=32 "Built target QuickStudioApplicationplugin_init_autogen" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule +.PHONY : QuickStudioApplicationplugin_init_autogen + +# clean rule for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content.dir + +# All Build rule for target. +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_automoc_json_extraction.dir/all +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_tooling.dir/all +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=93,94,95 "Built target content" +.PHONY : content/CMakeFiles/content.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content.dir/rule + +# Convenience name for target. +content: content/CMakeFiles/content.dir/rule +.PHONY : content + +# clean rule for target. +content/CMakeFiles/content.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/clean +.PHONY : content/CMakeFiles/content.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_automoc_json_extraction.dir + +# All Build rule for target. +content/CMakeFiles/content_automoc_json_extraction.dir/all: content/CMakeFiles/content_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_automoc_json_extraction" +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/rule + +# Convenience name for target. +content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/rule +.PHONY : content_automoc_json_extraction + +# clean rule for target. +content/CMakeFiles/content_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/clean +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmltyperegistration.dir + +# All Build rule for target. +content/CMakeFiles/content_qmltyperegistration.dir/all: content/CMakeFiles/content_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmltyperegistration" +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule + +# Convenience name for target. +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content_qmltyperegistration + +# clean rule for target. +content/CMakeFiles/content_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/clean +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_resources_1.dir + +# All Build rule for target. +content/CMakeFiles/content_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=97 "Built target content_resources_1" +.PHONY : content/CMakeFiles/content_resources_1.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_resources_1.dir/rule + +# Convenience name for target. +content_resources_1: content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content_resources_1 + +# clean rule for target. +content/CMakeFiles/content_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/clean +.PHONY : content/CMakeFiles/content_resources_1.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_1.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_qmlcache.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_2.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=99 "Built target contentplugin" +.PHONY : content/CMakeFiles/contentplugin.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin.dir/rule + +# Convenience name for target. +contentplugin: content/CMakeFiles/contentplugin.dir/rule +.PHONY : contentplugin + +# clean rule for target. +content/CMakeFiles/contentplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/clean +.PHONY : content/CMakeFiles/contentplugin.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint" +.PHONY : content/CMakeFiles/content_qmllint.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint.dir/rule + +# Convenience name for target. +content_qmllint: content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content_qmllint + +# clean rule for target. +content/CMakeFiles/content_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/clean +.PHONY : content/CMakeFiles/content_qmllint.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint_json.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_json" +.PHONY : content/CMakeFiles/content_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule + +# Convenience name for target. +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content_qmllint_json + +# clean rule for target. +content/CMakeFiles/content_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/clean +.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint_module.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_module" +.PHONY : content/CMakeFiles/content_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule + +# Convenience name for target. +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content_qmllint_module + +# clean rule for target. +content/CMakeFiles/content_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/clean +.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmlcache.dir + +# All Build rule for target. +content/CMakeFiles/content_qmlcache.dir/all: content/CMakeFiles/content_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=96 "Built target content_qmlcache" +.PHONY : content/CMakeFiles/content_qmlcache.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmlcache.dir/rule + +# Convenience name for target. +content_qmlcache: content/CMakeFiles/content_qmlcache.dir/rule +.PHONY : content_qmlcache + +# clean rule for target. +content/CMakeFiles/content_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/clean +.PHONY : content/CMakeFiles/content_qmlcache.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_tooling.dir + +# All Build rule for target. +content/CMakeFiles/content_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=98 "Built target content_tooling" +.PHONY : content/CMakeFiles/content_tooling.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_tooling.dir/rule + +# Convenience name for target. +content_tooling: content/CMakeFiles/content_tooling.dir/rule +.PHONY : content_tooling + +# clean rule for target. +content/CMakeFiles/content_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/clean +.PHONY : content/CMakeFiles/content_tooling.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_resources_2.dir + +# All Build rule for target. +content/CMakeFiles/content_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_resources_2" +.PHONY : content/CMakeFiles/content_resources_2.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_resources_2.dir/rule + +# Convenience name for target. +content_resources_2: content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content_resources_2 + +# clean rule for target. +content/CMakeFiles/content_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/clean +.PHONY : content/CMakeFiles/content_resources_2.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_init.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_init" +.PHONY : content/CMakeFiles/contentplugin_init.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_init.dir/rule + +# Convenience name for target. +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : contentplugin_init + +# clean rule for target. +content/CMakeFiles/contentplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/clean +.PHONY : content/CMakeFiles/contentplugin_init.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_autogen.dir + +# All Build rule for target. +content/CMakeFiles/content_autogen.dir/all: content/CMakeFiles/content_tooling.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen" +.PHONY : content/CMakeFiles/content_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_autogen.dir/rule + +# Convenience name for target. +content_autogen: content/CMakeFiles/content_autogen.dir/rule +.PHONY : content_autogen + +# clean rule for target. +content/CMakeFiles/content_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/clean +.PHONY : content/CMakeFiles/content_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_autogen.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_autogen" +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule + +# Convenience name for target. +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : contentplugin_autogen + +# clean rule for target. +content/CMakeFiles/contentplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/clean +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmlcache_autogen.dir + +# All Build rule for target. +content/CMakeFiles/content_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmlcache_autogen" +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/rule + +# Convenience name for target. +content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/rule +.PHONY : content_qmlcache_autogen + +# clean rule for target. +content/CMakeFiles/content_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/clean +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_init_autogen.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=100 "Built target contentplugin_init_autogen" +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule + +# Convenience name for target. +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : contentplugin_init_autogen + +# clean rule for target. +content/CMakeFiles/contentplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/clean +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=4,5 "Built target Bolt_Dash" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule + +# Convenience name for target. +Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : Bolt_Dash + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_automoc_json_extraction" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule + +# Convenience name for target. +Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule +.PHONY : Bolt_Dash_automoc_json_extraction + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=11 "Built target Bolt_Dash_qmltyperegistration" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : Bolt_Dash_qmltyperegistration + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_1" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : Bolt_Dash_resources_1 + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule + +# Convenience name for target. +Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : Bolt_Dashplugin + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : Bolt_Dash_qmllint + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_json" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : Bolt_Dash_qmllint_json + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_module" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : Bolt_Dash_qmllint_module + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=10 "Built target Bolt_Dash_qmlcache" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule + +# Convenience name for target. +Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule +.PHONY : Bolt_Dash_qmlcache + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=12 "Built target Bolt_Dash_tooling" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule + +# Convenience name for target. +Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule +.PHONY : Bolt_Dash_tooling + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_2" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : Bolt_Dash_resources_2 + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=13 "Built target Bolt_Dashplugin_init" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : Bolt_Dashplugin_init + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : Bolt_Dash_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : Bolt_Dashplugin_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmlcache_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule +.PHONY : Bolt_Dash_qmlcache_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/Backend.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/Backend.dir/all: imports/Backend/CMakeFiles/Backend_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Backend" +.PHONY : imports/Backend/CMakeFiles/Backend.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/Backend.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/Backend.dir/rule + +# Convenience name for target. +Backend: imports/Backend/CMakeFiles/Backend.dir/rule +.PHONY : Backend + +# clean rule for target. +imports/Backend/CMakeFiles/Backend.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/clean +.PHONY : imports/Backend/CMakeFiles/Backend.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all +imports/Backend/CMakeFiles/BackendPlugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=1 "Built target BackendPlugin" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/rule + +# Convenience name for target. +BackendPlugin: imports/Backend/CMakeFiles/BackendPlugin.dir/rule +.PHONY : BackendPlugin + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_automoc_json_extraction" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule + +# Convenience name for target. +BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule +.PHONY : BackendPlugin_automoc_json_extraction + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmltyperegistration" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule + +# Convenience name for target. +BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule +.PHONY : BackendPlugin_qmltyperegistration + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPluginplugin.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPluginplugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin.dir/all +imports/Backend/CMakeFiles/BackendPluginplugin.dir/all: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=3 "Built target BackendPluginplugin" +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule + +# Convenience name for target. +BackendPluginplugin: imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule +.PHONY : BackendPluginplugin + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/qt_internal_plugins.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/qt_internal_plugins.dir/all: imports/Backend/CMakeFiles/BackendPluginplugin.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target qt_internal_plugins" +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/qt_internal_plugins.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule + +# Convenience name for target. +qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : qt_internal_plugins + +# clean rule for target. +imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule +.PHONY : BackendPlugin_qmllint + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint_json" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule +.PHONY : BackendPlugin_qmllint_json + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint_module" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule +.PHONY : BackendPlugin_qmllint_module + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/Backend_autogen.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/Backend_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Backend_autogen" +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/Backend_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/rule + +# Convenience name for target. +Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/rule +.PHONY : Backend_autogen + +# clean rule for target. +imports/Backend/CMakeFiles/Backend_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/clean +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_autogen.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=2 "Built target BackendPlugin_autogen" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule + +# Convenience name for target. +BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule +.PHONY : BackendPlugin_autogen + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir + +# All Build rule for target. +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPluginplugin_autogen" +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule + +# Convenience name for target. +BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule +.PHONY : BackendPluginplugin_autogen + +# clean rule for target. +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..480aa38 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,282 @@ +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..5595fa4 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +95 diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..40ef3be --- /dev/null +++ b/build/Makefile @@ -0,0 +1,2925 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named Bolt_DashApp + +# Build rule for target. +Bolt_DashApp: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp +.PHONY : Bolt_DashApp + +# fast build rule for target. +Bolt_DashApp/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build +.PHONY : Bolt_DashApp/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_automoc_json_extraction + +# Build rule for target. +Bolt_DashApp_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_automoc_json_extraction +.PHONY : Bolt_DashApp_automoc_json_extraction + +# fast build rule for target. +Bolt_DashApp_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build +.PHONY : Bolt_DashApp_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmltyperegistration + +# Build rule for target. +Bolt_DashApp_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmltyperegistration +.PHONY : Bolt_DashApp_qmltyperegistration + +# fast build rule for target. +Bolt_DashApp_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build +.PHONY : Bolt_DashApp_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint + +# Build rule for target. +Bolt_DashApp_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint +.PHONY : Bolt_DashApp_qmllint + +# fast build rule for target. +Bolt_DashApp_qmllint/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build +.PHONY : Bolt_DashApp_qmllint/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint_json + +# Build rule for target. +Bolt_DashApp_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_json +.PHONY : Bolt_DashApp_qmllint_json + +# fast build rule for target. +Bolt_DashApp_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build +.PHONY : Bolt_DashApp_qmllint_json/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint_module + +# Build rule for target. +Bolt_DashApp_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_module +.PHONY : Bolt_DashApp_qmllint_module + +# fast build rule for target. +Bolt_DashApp_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build +.PHONY : Bolt_DashApp_qmllint_module/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_tooling + +# Build rule for target. +Bolt_DashApp_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_tooling +.PHONY : Bolt_DashApp_tooling + +# fast build rule for target. +Bolt_DashApp_tooling/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build +.PHONY : Bolt_DashApp_tooling/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmlimportscan + +# Build rule for target. +Bolt_DashApp_qmlimportscan: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmlimportscan +.PHONY : Bolt_DashApp_qmlimportscan + +# fast build rule for target. +Bolt_DashApp_qmlimportscan/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build +.PHONY : Bolt_DashApp_qmlimportscan/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_autogen + +# Build rule for target. +Bolt_DashApp_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen +.PHONY : Bolt_DashApp_autogen + +# fast build rule for target. +Bolt_DashApp_autogen/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build +.PHONY : Bolt_DashApp_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents + +# Build rule for target. +QuickStudioComponents: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents +.PHONY : QuickStudioComponents + +# fast build rule for target. +QuickStudioComponents/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build +.PHONY : QuickStudioComponents/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_automoc_json_extraction + +# Build rule for target. +QuickStudioComponents_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_automoc_json_extraction +.PHONY : QuickStudioComponents_automoc_json_extraction + +# fast build rule for target. +QuickStudioComponents_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build +.PHONY : QuickStudioComponents_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmltyperegistration + +# Build rule for target. +QuickStudioComponents_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmltyperegistration +.PHONY : QuickStudioComponents_qmltyperegistration + +# fast build rule for target. +QuickStudioComponents_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build +.PHONY : QuickStudioComponents_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named all_qmltyperegistrations + +# Build rule for target. +all_qmltyperegistrations: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmltyperegistrations +.PHONY : all_qmltyperegistrations + +# fast build rule for target. +all_qmltyperegistrations/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build +.PHONY : all_qmltyperegistrations/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_resources_1 + +# Build rule for target. +QuickStudioComponents_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_resources_1 +.PHONY : QuickStudioComponents_resources_1 + +# fast build rule for target. +QuickStudioComponents_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build +.PHONY : QuickStudioComponents_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponentsplugin + +# Build rule for target. +QuickStudioComponentsplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin +.PHONY : QuickStudioComponentsplugin + +# fast build rule for target. +QuickStudioComponentsplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build +.PHONY : QuickStudioComponentsplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmllint + +# Build rule for target. +QuickStudioComponents_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint +.PHONY : QuickStudioComponents_qmllint + +# fast build rule for target. +QuickStudioComponents_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build +.PHONY : QuickStudioComponents_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmllint_json + +# Build rule for target. +QuickStudioComponents_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint_json +.PHONY : QuickStudioComponents_qmllint_json + +# fast build rule for target. +QuickStudioComponents_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build +.PHONY : QuickStudioComponents_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmllint_module + +# Build rule for target. +QuickStudioComponents_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint_module +.PHONY : QuickStudioComponents_qmllint_module + +# fast build rule for target. +QuickStudioComponents_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build +.PHONY : QuickStudioComponents_qmllint_module/fast + +#============================================================================= +# Target rules for targets named all_qmllint + +# Build rule for target. +all_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint +.PHONY : all_qmllint + +# fast build rule for target. +all_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build +.PHONY : all_qmllint/fast + +#============================================================================= +# Target rules for targets named all_qmllint_json + +# Build rule for target. +all_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_json +.PHONY : all_qmllint_json + +# fast build rule for target. +all_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build +.PHONY : all_qmllint_json/fast + +#============================================================================= +# Target rules for targets named all_qmllint_module + +# Build rule for target. +all_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_module +.PHONY : all_qmllint_module + +# fast build rule for target. +all_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build +.PHONY : all_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmlcache + +# Build rule for target. +QuickStudioComponents_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmlcache +.PHONY : QuickStudioComponents_qmlcache + +# fast build rule for target. +QuickStudioComponents_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build +.PHONY : QuickStudioComponents_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_tooling + +# Build rule for target. +QuickStudioComponents_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_tooling +.PHONY : QuickStudioComponents_tooling + +# fast build rule for target. +QuickStudioComponents_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build +.PHONY : QuickStudioComponents_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_resources_2 + +# Build rule for target. +QuickStudioComponents_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_resources_2 +.PHONY : QuickStudioComponents_resources_2 + +# fast build rule for target. +QuickStudioComponents_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build +.PHONY : QuickStudioComponents_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponentsplugin_init + +# Build rule for target. +QuickStudioComponentsplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_init +.PHONY : QuickStudioComponentsplugin_init + +# fast build rule for target. +QuickStudioComponentsplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build +.PHONY : QuickStudioComponentsplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_autogen + +# Build rule for target. +QuickStudioComponents_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_autogen +.PHONY : QuickStudioComponents_autogen + +# fast build rule for target. +QuickStudioComponents_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build +.PHONY : QuickStudioComponents_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponentsplugin_autogen + +# Build rule for target. +QuickStudioComponentsplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_autogen +.PHONY : QuickStudioComponentsplugin_autogen + +# fast build rule for target. +QuickStudioComponentsplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build +.PHONY : QuickStudioComponentsplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponents_qmlcache_autogen + +# Build rule for target. +QuickStudioComponents_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmlcache_autogen +.PHONY : QuickStudioComponents_qmlcache_autogen + +# fast build rule for target. +QuickStudioComponents_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build +.PHONY : QuickStudioComponents_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioComponentsplugin_init_autogen + +# Build rule for target. +QuickStudioComponentsplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_init_autogen +.PHONY : QuickStudioComponentsplugin_init_autogen + +# fast build rule for target. +QuickStudioComponentsplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build +.PHONY : QuickStudioComponentsplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects + +# Build rule for target. +QuickStudioEffects: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects +.PHONY : QuickStudioEffects + +# fast build rule for target. +QuickStudioEffects/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build +.PHONY : QuickStudioEffects/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_automoc_json_extraction + +# Build rule for target. +QuickStudioEffects_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_automoc_json_extraction +.PHONY : QuickStudioEffects_automoc_json_extraction + +# fast build rule for target. +QuickStudioEffects_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build +.PHONY : QuickStudioEffects_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmltyperegistration + +# Build rule for target. +QuickStudioEffects_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmltyperegistration +.PHONY : QuickStudioEffects_qmltyperegistration + +# fast build rule for target. +QuickStudioEffects_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build +.PHONY : QuickStudioEffects_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_resources_1 + +# Build rule for target. +QuickStudioEffects_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_resources_1 +.PHONY : QuickStudioEffects_resources_1 + +# fast build rule for target. +QuickStudioEffects_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build +.PHONY : QuickStudioEffects_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffectsplugin + +# Build rule for target. +QuickStudioEffectsplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin +.PHONY : QuickStudioEffectsplugin + +# fast build rule for target. +QuickStudioEffectsplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build +.PHONY : QuickStudioEffectsplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmllint + +# Build rule for target. +QuickStudioEffects_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint +.PHONY : QuickStudioEffects_qmllint + +# fast build rule for target. +QuickStudioEffects_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build +.PHONY : QuickStudioEffects_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmllint_json + +# Build rule for target. +QuickStudioEffects_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint_json +.PHONY : QuickStudioEffects_qmllint_json + +# fast build rule for target. +QuickStudioEffects_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build +.PHONY : QuickStudioEffects_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmllint_module + +# Build rule for target. +QuickStudioEffects_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint_module +.PHONY : QuickStudioEffects_qmllint_module + +# fast build rule for target. +QuickStudioEffects_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build +.PHONY : QuickStudioEffects_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmlcache + +# Build rule for target. +QuickStudioEffects_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmlcache +.PHONY : QuickStudioEffects_qmlcache + +# fast build rule for target. +QuickStudioEffects_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build +.PHONY : QuickStudioEffects_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_tooling + +# Build rule for target. +QuickStudioEffects_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_tooling +.PHONY : QuickStudioEffects_tooling + +# fast build rule for target. +QuickStudioEffects_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build +.PHONY : QuickStudioEffects_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_resources_2 + +# Build rule for target. +QuickStudioEffects_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_resources_2 +.PHONY : QuickStudioEffects_resources_2 + +# fast build rule for target. +QuickStudioEffects_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build +.PHONY : QuickStudioEffects_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffectsplugin_init + +# Build rule for target. +QuickStudioEffectsplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_init +.PHONY : QuickStudioEffectsplugin_init + +# fast build rule for target. +QuickStudioEffectsplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build +.PHONY : QuickStudioEffectsplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_autogen + +# Build rule for target. +QuickStudioEffects_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_autogen +.PHONY : QuickStudioEffects_autogen + +# fast build rule for target. +QuickStudioEffects_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build +.PHONY : QuickStudioEffects_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffectsplugin_autogen + +# Build rule for target. +QuickStudioEffectsplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_autogen +.PHONY : QuickStudioEffectsplugin_autogen + +# fast build rule for target. +QuickStudioEffectsplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build +.PHONY : QuickStudioEffectsplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffects_qmlcache_autogen + +# Build rule for target. +QuickStudioEffects_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmlcache_autogen +.PHONY : QuickStudioEffects_qmlcache_autogen + +# fast build rule for target. +QuickStudioEffects_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build +.PHONY : QuickStudioEffects_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEffectsplugin_init_autogen + +# Build rule for target. +QuickStudioEffectsplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_init_autogen +.PHONY : QuickStudioEffectsplugin_init_autogen + +# fast build rule for target. +QuickStudioEffectsplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build +.PHONY : QuickStudioEffectsplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named FlowView + +# Build rule for target. +FlowView: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView +.PHONY : FlowView + +# fast build rule for target. +FlowView/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build +.PHONY : FlowView/fast + +#============================================================================= +# Target rules for targets named FlowView_automoc_json_extraction + +# Build rule for target. +FlowView_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_automoc_json_extraction +.PHONY : FlowView_automoc_json_extraction + +# fast build rule for target. +FlowView_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build +.PHONY : FlowView_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named FlowView_qmltyperegistration + +# Build rule for target. +FlowView_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmltyperegistration +.PHONY : FlowView_qmltyperegistration + +# fast build rule for target. +FlowView_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build +.PHONY : FlowView_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named FlowViewplugin + +# Build rule for target. +FlowViewplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin +.PHONY : FlowViewplugin + +# fast build rule for target. +FlowViewplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build +.PHONY : FlowViewplugin/fast + +#============================================================================= +# Target rules for targets named FlowView_qmllint + +# Build rule for target. +FlowView_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint +.PHONY : FlowView_qmllint + +# fast build rule for target. +FlowView_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build +.PHONY : FlowView_qmllint/fast + +#============================================================================= +# Target rules for targets named FlowView_qmllint_json + +# Build rule for target. +FlowView_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint_json +.PHONY : FlowView_qmllint_json + +# fast build rule for target. +FlowView_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build +.PHONY : FlowView_qmllint_json/fast + +#============================================================================= +# Target rules for targets named FlowView_qmllint_module + +# Build rule for target. +FlowView_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint_module +.PHONY : FlowView_qmllint_module + +# fast build rule for target. +FlowView_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build +.PHONY : FlowView_qmllint_module/fast + +#============================================================================= +# Target rules for targets named FlowView_qmlcache + +# Build rule for target. +FlowView_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmlcache +.PHONY : FlowView_qmlcache + +# fast build rule for target. +FlowView_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build +.PHONY : FlowView_qmlcache/fast + +#============================================================================= +# Target rules for targets named FlowView_tooling + +# Build rule for target. +FlowView_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_tooling +.PHONY : FlowView_tooling + +# fast build rule for target. +FlowView_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build +.PHONY : FlowView_tooling/fast + +#============================================================================= +# Target rules for targets named FlowView_resources_1 + +# Build rule for target. +FlowView_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_resources_1 +.PHONY : FlowView_resources_1 + +# fast build rule for target. +FlowView_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build +.PHONY : FlowView_resources_1/fast + +#============================================================================= +# Target rules for targets named FlowViewplugin_init + +# Build rule for target. +FlowViewplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_init +.PHONY : FlowViewplugin_init + +# fast build rule for target. +FlowViewplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build +.PHONY : FlowViewplugin_init/fast + +#============================================================================= +# Target rules for targets named FlowView_autogen + +# Build rule for target. +FlowView_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_autogen +.PHONY : FlowView_autogen + +# fast build rule for target. +FlowView_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build +.PHONY : FlowView_autogen/fast + +#============================================================================= +# Target rules for targets named FlowViewplugin_autogen + +# Build rule for target. +FlowViewplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_autogen +.PHONY : FlowViewplugin_autogen + +# fast build rule for target. +FlowViewplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build +.PHONY : FlowViewplugin_autogen/fast + +#============================================================================= +# Target rules for targets named FlowView_qmlcache_autogen + +# Build rule for target. +FlowView_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmlcache_autogen +.PHONY : FlowView_qmlcache_autogen + +# fast build rule for target. +FlowView_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build +.PHONY : FlowView_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named FlowViewplugin_init_autogen + +# Build rule for target. +FlowViewplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_init_autogen +.PHONY : FlowViewplugin_init_autogen + +# fast build rule for target. +FlowViewplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build +.PHONY : FlowViewplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper + +# Build rule for target. +QuickStudioLogicHelper: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper +.PHONY : QuickStudioLogicHelper + +# fast build rule for target. +QuickStudioLogicHelper/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build +.PHONY : QuickStudioLogicHelper/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_automoc_json_extraction + +# Build rule for target. +QuickStudioLogicHelper_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_automoc_json_extraction +.PHONY : QuickStudioLogicHelper_automoc_json_extraction + +# fast build rule for target. +QuickStudioLogicHelper_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build +.PHONY : QuickStudioLogicHelper_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmltyperegistration + +# Build rule for target. +QuickStudioLogicHelper_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmltyperegistration +.PHONY : QuickStudioLogicHelper_qmltyperegistration + +# fast build rule for target. +QuickStudioLogicHelper_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build +.PHONY : QuickStudioLogicHelper_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_resources_1 + +# Build rule for target. +QuickStudioLogicHelper_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_resources_1 +.PHONY : QuickStudioLogicHelper_resources_1 + +# fast build rule for target. +QuickStudioLogicHelper_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build +.PHONY : QuickStudioLogicHelper_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelperplugin + +# Build rule for target. +QuickStudioLogicHelperplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin +.PHONY : QuickStudioLogicHelperplugin + +# fast build rule for target. +QuickStudioLogicHelperplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build +.PHONY : QuickStudioLogicHelperplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmllint + +# Build rule for target. +QuickStudioLogicHelper_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint +.PHONY : QuickStudioLogicHelper_qmllint + +# fast build rule for target. +QuickStudioLogicHelper_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build +.PHONY : QuickStudioLogicHelper_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmllint_json + +# Build rule for target. +QuickStudioLogicHelper_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint_json +.PHONY : QuickStudioLogicHelper_qmllint_json + +# fast build rule for target. +QuickStudioLogicHelper_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build +.PHONY : QuickStudioLogicHelper_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmllint_module + +# Build rule for target. +QuickStudioLogicHelper_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint_module +.PHONY : QuickStudioLogicHelper_qmllint_module + +# fast build rule for target. +QuickStudioLogicHelper_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build +.PHONY : QuickStudioLogicHelper_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmlcache + +# Build rule for target. +QuickStudioLogicHelper_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmlcache +.PHONY : QuickStudioLogicHelper_qmlcache + +# fast build rule for target. +QuickStudioLogicHelper_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build +.PHONY : QuickStudioLogicHelper_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_tooling + +# Build rule for target. +QuickStudioLogicHelper_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_tooling +.PHONY : QuickStudioLogicHelper_tooling + +# fast build rule for target. +QuickStudioLogicHelper_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build +.PHONY : QuickStudioLogicHelper_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_resources_2 + +# Build rule for target. +QuickStudioLogicHelper_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_resources_2 +.PHONY : QuickStudioLogicHelper_resources_2 + +# fast build rule for target. +QuickStudioLogicHelper_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build +.PHONY : QuickStudioLogicHelper_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelperplugin_init + +# Build rule for target. +QuickStudioLogicHelperplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_init +.PHONY : QuickStudioLogicHelperplugin_init + +# fast build rule for target. +QuickStudioLogicHelperplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build +.PHONY : QuickStudioLogicHelperplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_autogen + +# Build rule for target. +QuickStudioLogicHelper_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_autogen +.PHONY : QuickStudioLogicHelper_autogen + +# fast build rule for target. +QuickStudioLogicHelper_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build +.PHONY : QuickStudioLogicHelper_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelperplugin_autogen + +# Build rule for target. +QuickStudioLogicHelperplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_autogen +.PHONY : QuickStudioLogicHelperplugin_autogen + +# fast build rule for target. +QuickStudioLogicHelperplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build +.PHONY : QuickStudioLogicHelperplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelper_qmlcache_autogen + +# Build rule for target. +QuickStudioLogicHelper_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmlcache_autogen +.PHONY : QuickStudioLogicHelper_qmlcache_autogen + +# fast build rule for target. +QuickStudioLogicHelper_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioLogicHelperplugin_init_autogen + +# Build rule for target. +QuickStudioLogicHelperplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_init_autogen +.PHONY : QuickStudioLogicHelperplugin_init_autogen + +# fast build rule for target. +QuickStudioLogicHelperplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build +.PHONY : QuickStudioLogicHelperplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText + +# Build rule for target. +QuickStudioMultiText: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText +.PHONY : QuickStudioMultiText + +# fast build rule for target. +QuickStudioMultiText/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build +.PHONY : QuickStudioMultiText/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_automoc_json_extraction + +# Build rule for target. +QuickStudioMultiText_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_automoc_json_extraction +.PHONY : QuickStudioMultiText_automoc_json_extraction + +# fast build rule for target. +QuickStudioMultiText_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build +.PHONY : QuickStudioMultiText_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmltyperegistration + +# Build rule for target. +QuickStudioMultiText_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmltyperegistration +.PHONY : QuickStudioMultiText_qmltyperegistration + +# fast build rule for target. +QuickStudioMultiText_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build +.PHONY : QuickStudioMultiText_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_resources_1 + +# Build rule for target. +QuickStudioMultiText_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_resources_1 +.PHONY : QuickStudioMultiText_resources_1 + +# fast build rule for target. +QuickStudioMultiText_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build +.PHONY : QuickStudioMultiText_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiTextplugin + +# Build rule for target. +QuickStudioMultiTextplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin +.PHONY : QuickStudioMultiTextplugin + +# fast build rule for target. +QuickStudioMultiTextplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build +.PHONY : QuickStudioMultiTextplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmllint + +# Build rule for target. +QuickStudioMultiText_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint +.PHONY : QuickStudioMultiText_qmllint + +# fast build rule for target. +QuickStudioMultiText_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build +.PHONY : QuickStudioMultiText_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmllint_json + +# Build rule for target. +QuickStudioMultiText_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint_json +.PHONY : QuickStudioMultiText_qmllint_json + +# fast build rule for target. +QuickStudioMultiText_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build +.PHONY : QuickStudioMultiText_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmllint_module + +# Build rule for target. +QuickStudioMultiText_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint_module +.PHONY : QuickStudioMultiText_qmllint_module + +# fast build rule for target. +QuickStudioMultiText_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build +.PHONY : QuickStudioMultiText_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmlcache + +# Build rule for target. +QuickStudioMultiText_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmlcache +.PHONY : QuickStudioMultiText_qmlcache + +# fast build rule for target. +QuickStudioMultiText_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build +.PHONY : QuickStudioMultiText_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_tooling + +# Build rule for target. +QuickStudioMultiText_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_tooling +.PHONY : QuickStudioMultiText_tooling + +# fast build rule for target. +QuickStudioMultiText_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build +.PHONY : QuickStudioMultiText_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_resources_2 + +# Build rule for target. +QuickStudioMultiText_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_resources_2 +.PHONY : QuickStudioMultiText_resources_2 + +# fast build rule for target. +QuickStudioMultiText_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build +.PHONY : QuickStudioMultiText_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiTextplugin_init + +# Build rule for target. +QuickStudioMultiTextplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_init +.PHONY : QuickStudioMultiTextplugin_init + +# fast build rule for target. +QuickStudioMultiTextplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build +.PHONY : QuickStudioMultiTextplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_autogen + +# Build rule for target. +QuickStudioMultiText_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_autogen +.PHONY : QuickStudioMultiText_autogen + +# fast build rule for target. +QuickStudioMultiText_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build +.PHONY : QuickStudioMultiText_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiTextplugin_autogen + +# Build rule for target. +QuickStudioMultiTextplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_autogen +.PHONY : QuickStudioMultiTextplugin_autogen + +# fast build rule for target. +QuickStudioMultiTextplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build +.PHONY : QuickStudioMultiTextplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiText_qmlcache_autogen + +# Build rule for target. +QuickStudioMultiText_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmlcache_autogen +.PHONY : QuickStudioMultiText_qmlcache_autogen + +# fast build rule for target. +QuickStudioMultiText_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build +.PHONY : QuickStudioMultiText_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioMultiTextplugin_init_autogen + +# Build rule for target. +QuickStudioMultiTextplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_init_autogen +.PHONY : QuickStudioMultiTextplugin_init_autogen + +# fast build rule for target. +QuickStudioMultiTextplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build +.PHONY : QuickStudioMultiTextplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator + +# Build rule for target. +QuickStudioEventSimulator: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator +.PHONY : QuickStudioEventSimulator + +# fast build rule for target. +QuickStudioEventSimulator/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build +.PHONY : QuickStudioEventSimulator/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_automoc_json_extraction + +# Build rule for target. +QuickStudioEventSimulator_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_automoc_json_extraction +.PHONY : QuickStudioEventSimulator_automoc_json_extraction + +# fast build rule for target. +QuickStudioEventSimulator_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build +.PHONY : QuickStudioEventSimulator_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmltyperegistration + +# Build rule for target. +QuickStudioEventSimulator_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmltyperegistration +.PHONY : QuickStudioEventSimulator_qmltyperegistration + +# fast build rule for target. +QuickStudioEventSimulator_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build +.PHONY : QuickStudioEventSimulator_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_resources_1 + +# Build rule for target. +QuickStudioEventSimulator_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_resources_1 +.PHONY : QuickStudioEventSimulator_resources_1 + +# fast build rule for target. +QuickStudioEventSimulator_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build +.PHONY : QuickStudioEventSimulator_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulatorplugin + +# Build rule for target. +QuickStudioEventSimulatorplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin +.PHONY : QuickStudioEventSimulatorplugin + +# fast build rule for target. +QuickStudioEventSimulatorplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build +.PHONY : QuickStudioEventSimulatorplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmllint + +# Build rule for target. +QuickStudioEventSimulator_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint +.PHONY : QuickStudioEventSimulator_qmllint + +# fast build rule for target. +QuickStudioEventSimulator_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build +.PHONY : QuickStudioEventSimulator_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmllint_json + +# Build rule for target. +QuickStudioEventSimulator_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint_json +.PHONY : QuickStudioEventSimulator_qmllint_json + +# fast build rule for target. +QuickStudioEventSimulator_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build +.PHONY : QuickStudioEventSimulator_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmllint_module + +# Build rule for target. +QuickStudioEventSimulator_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint_module +.PHONY : QuickStudioEventSimulator_qmllint_module + +# fast build rule for target. +QuickStudioEventSimulator_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build +.PHONY : QuickStudioEventSimulator_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmlcache + +# Build rule for target. +QuickStudioEventSimulator_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmlcache +.PHONY : QuickStudioEventSimulator_qmlcache + +# fast build rule for target. +QuickStudioEventSimulator_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build +.PHONY : QuickStudioEventSimulator_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_tooling + +# Build rule for target. +QuickStudioEventSimulator_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_tooling +.PHONY : QuickStudioEventSimulator_tooling + +# fast build rule for target. +QuickStudioEventSimulator_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build +.PHONY : QuickStudioEventSimulator_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_resources_2 + +# Build rule for target. +QuickStudioEventSimulator_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_resources_2 +.PHONY : QuickStudioEventSimulator_resources_2 + +# fast build rule for target. +QuickStudioEventSimulator_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build +.PHONY : QuickStudioEventSimulator_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulatorplugin_init + +# Build rule for target. +QuickStudioEventSimulatorplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_init +.PHONY : QuickStudioEventSimulatorplugin_init + +# fast build rule for target. +QuickStudioEventSimulatorplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build +.PHONY : QuickStudioEventSimulatorplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_autogen + +# Build rule for target. +QuickStudioEventSimulator_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_autogen +.PHONY : QuickStudioEventSimulator_autogen + +# fast build rule for target. +QuickStudioEventSimulator_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build +.PHONY : QuickStudioEventSimulator_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulatorplugin_autogen + +# Build rule for target. +QuickStudioEventSimulatorplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_autogen +.PHONY : QuickStudioEventSimulatorplugin_autogen + +# fast build rule for target. +QuickStudioEventSimulatorplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build +.PHONY : QuickStudioEventSimulatorplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulator_qmlcache_autogen + +# Build rule for target. +QuickStudioEventSimulator_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmlcache_autogen +.PHONY : QuickStudioEventSimulator_qmlcache_autogen + +# fast build rule for target. +QuickStudioEventSimulator_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSimulatorplugin_init_autogen + +# Build rule for target. +QuickStudioEventSimulatorplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_init_autogen +.PHONY : QuickStudioEventSimulatorplugin_init_autogen + +# fast build rule for target. +QuickStudioEventSimulatorplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem + +# Build rule for target. +QuickStudioEventSystem: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem +.PHONY : QuickStudioEventSystem + +# fast build rule for target. +QuickStudioEventSystem/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build +.PHONY : QuickStudioEventSystem/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_automoc_json_extraction + +# Build rule for target. +QuickStudioEventSystem_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_automoc_json_extraction +.PHONY : QuickStudioEventSystem_automoc_json_extraction + +# fast build rule for target. +QuickStudioEventSystem_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build +.PHONY : QuickStudioEventSystem_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmltyperegistration + +# Build rule for target. +QuickStudioEventSystem_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmltyperegistration +.PHONY : QuickStudioEventSystem_qmltyperegistration + +# fast build rule for target. +QuickStudioEventSystem_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build +.PHONY : QuickStudioEventSystem_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_resources_1 + +# Build rule for target. +QuickStudioEventSystem_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_resources_1 +.PHONY : QuickStudioEventSystem_resources_1 + +# fast build rule for target. +QuickStudioEventSystem_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build +.PHONY : QuickStudioEventSystem_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystemplugin + +# Build rule for target. +QuickStudioEventSystemplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin +.PHONY : QuickStudioEventSystemplugin + +# fast build rule for target. +QuickStudioEventSystemplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build +.PHONY : QuickStudioEventSystemplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmllint + +# Build rule for target. +QuickStudioEventSystem_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint +.PHONY : QuickStudioEventSystem_qmllint + +# fast build rule for target. +QuickStudioEventSystem_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build +.PHONY : QuickStudioEventSystem_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmllint_json + +# Build rule for target. +QuickStudioEventSystem_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint_json +.PHONY : QuickStudioEventSystem_qmllint_json + +# fast build rule for target. +QuickStudioEventSystem_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build +.PHONY : QuickStudioEventSystem_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmllint_module + +# Build rule for target. +QuickStudioEventSystem_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint_module +.PHONY : QuickStudioEventSystem_qmllint_module + +# fast build rule for target. +QuickStudioEventSystem_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build +.PHONY : QuickStudioEventSystem_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmlcache + +# Build rule for target. +QuickStudioEventSystem_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmlcache +.PHONY : QuickStudioEventSystem_qmlcache + +# fast build rule for target. +QuickStudioEventSystem_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build +.PHONY : QuickStudioEventSystem_qmlcache/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_tooling + +# Build rule for target. +QuickStudioEventSystem_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_tooling +.PHONY : QuickStudioEventSystem_tooling + +# fast build rule for target. +QuickStudioEventSystem_tooling/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build +.PHONY : QuickStudioEventSystem_tooling/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_resources_2 + +# Build rule for target. +QuickStudioEventSystem_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_resources_2 +.PHONY : QuickStudioEventSystem_resources_2 + +# fast build rule for target. +QuickStudioEventSystem_resources_2/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build +.PHONY : QuickStudioEventSystem_resources_2/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystemplugin_init + +# Build rule for target. +QuickStudioEventSystemplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_init +.PHONY : QuickStudioEventSystemplugin_init + +# fast build rule for target. +QuickStudioEventSystemplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build +.PHONY : QuickStudioEventSystemplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_autogen + +# Build rule for target. +QuickStudioEventSystem_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_autogen +.PHONY : QuickStudioEventSystem_autogen + +# fast build rule for target. +QuickStudioEventSystem_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build +.PHONY : QuickStudioEventSystem_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystemplugin_autogen + +# Build rule for target. +QuickStudioEventSystemplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_autogen +.PHONY : QuickStudioEventSystemplugin_autogen + +# fast build rule for target. +QuickStudioEventSystemplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build +.PHONY : QuickStudioEventSystemplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystem_qmlcache_autogen + +# Build rule for target. +QuickStudioEventSystem_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmlcache_autogen +.PHONY : QuickStudioEventSystem_qmlcache_autogen + +# fast build rule for target. +QuickStudioEventSystem_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build +.PHONY : QuickStudioEventSystem_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioEventSystemplugin_init_autogen + +# Build rule for target. +QuickStudioEventSystemplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_init_autogen +.PHONY : QuickStudioEventSystemplugin_init_autogen + +# fast build rule for target. +QuickStudioEventSystemplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build +.PHONY : QuickStudioEventSystemplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication + +# Build rule for target. +QuickStudioApplication: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication +.PHONY : QuickStudioApplication + +# fast build rule for target. +QuickStudioApplication/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build +.PHONY : QuickStudioApplication/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_automoc_json_extraction + +# Build rule for target. +QuickStudioApplication_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_automoc_json_extraction +.PHONY : QuickStudioApplication_automoc_json_extraction + +# fast build rule for target. +QuickStudioApplication_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build +.PHONY : QuickStudioApplication_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_qmltyperegistration + +# Build rule for target. +QuickStudioApplication_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmltyperegistration +.PHONY : QuickStudioApplication_qmltyperegistration + +# fast build rule for target. +QuickStudioApplication_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build +.PHONY : QuickStudioApplication_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_resources_1 + +# Build rule for target. +QuickStudioApplication_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_resources_1 +.PHONY : QuickStudioApplication_resources_1 + +# fast build rule for target. +QuickStudioApplication_resources_1/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build +.PHONY : QuickStudioApplication_resources_1/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplicationplugin + +# Build rule for target. +QuickStudioApplicationplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin +.PHONY : QuickStudioApplicationplugin + +# fast build rule for target. +QuickStudioApplicationplugin/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build +.PHONY : QuickStudioApplicationplugin/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_qmllint + +# Build rule for target. +QuickStudioApplication_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint +.PHONY : QuickStudioApplication_qmllint + +# fast build rule for target. +QuickStudioApplication_qmllint/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build +.PHONY : QuickStudioApplication_qmllint/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_qmllint_json + +# Build rule for target. +QuickStudioApplication_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint_json +.PHONY : QuickStudioApplication_qmllint_json + +# fast build rule for target. +QuickStudioApplication_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build +.PHONY : QuickStudioApplication_qmllint_json/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_qmllint_module + +# Build rule for target. +QuickStudioApplication_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint_module +.PHONY : QuickStudioApplication_qmllint_module + +# fast build rule for target. +QuickStudioApplication_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build +.PHONY : QuickStudioApplication_qmllint_module/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplicationplugin_init + +# Build rule for target. +QuickStudioApplicationplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_init +.PHONY : QuickStudioApplicationplugin_init + +# fast build rule for target. +QuickStudioApplicationplugin_init/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build +.PHONY : QuickStudioApplicationplugin_init/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplication_autogen + +# Build rule for target. +QuickStudioApplication_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_autogen +.PHONY : QuickStudioApplication_autogen + +# fast build rule for target. +QuickStudioApplication_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build +.PHONY : QuickStudioApplication_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplicationplugin_autogen + +# Build rule for target. +QuickStudioApplicationplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_autogen +.PHONY : QuickStudioApplicationplugin_autogen + +# fast build rule for target. +QuickStudioApplicationplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build +.PHONY : QuickStudioApplicationplugin_autogen/fast + +#============================================================================= +# Target rules for targets named QuickStudioApplicationplugin_init_autogen + +# Build rule for target. +QuickStudioApplicationplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_init_autogen +.PHONY : QuickStudioApplicationplugin_init_autogen + +# fast build rule for target. +QuickStudioApplicationplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build +.PHONY : QuickStudioApplicationplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named content + +# Build rule for target. +content: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content +.PHONY : content + +# fast build rule for target. +content/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build +.PHONY : content/fast + +#============================================================================= +# Target rules for targets named content_automoc_json_extraction + +# Build rule for target. +content_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_automoc_json_extraction +.PHONY : content_automoc_json_extraction + +# fast build rule for target. +content_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build +.PHONY : content_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named content_qmltyperegistration + +# Build rule for target. +content_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmltyperegistration +.PHONY : content_qmltyperegistration + +# fast build rule for target. +content_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build +.PHONY : content_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named content_resources_1 + +# Build rule for target. +content_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_1 +.PHONY : content_resources_1 + +# fast build rule for target. +content_resources_1/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build +.PHONY : content_resources_1/fast + +#============================================================================= +# Target rules for targets named contentplugin + +# Build rule for target. +contentplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin +.PHONY : contentplugin + +# fast build rule for target. +contentplugin/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build +.PHONY : contentplugin/fast + +#============================================================================= +# Target rules for targets named content_qmllint + +# Build rule for target. +content_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint +.PHONY : content_qmllint + +# fast build rule for target. +content_qmllint/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build +.PHONY : content_qmllint/fast + +#============================================================================= +# Target rules for targets named content_qmllint_json + +# Build rule for target. +content_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_json +.PHONY : content_qmllint_json + +# fast build rule for target. +content_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build +.PHONY : content_qmllint_json/fast + +#============================================================================= +# Target rules for targets named content_qmllint_module + +# Build rule for target. +content_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_module +.PHONY : content_qmllint_module + +# fast build rule for target. +content_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build +.PHONY : content_qmllint_module/fast + +#============================================================================= +# Target rules for targets named content_qmlcache + +# Build rule for target. +content_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmlcache +.PHONY : content_qmlcache + +# fast build rule for target. +content_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build +.PHONY : content_qmlcache/fast + +#============================================================================= +# Target rules for targets named content_tooling + +# Build rule for target. +content_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_tooling +.PHONY : content_tooling + +# fast build rule for target. +content_tooling/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build +.PHONY : content_tooling/fast + +#============================================================================= +# Target rules for targets named content_resources_2 + +# Build rule for target. +content_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_2 +.PHONY : content_resources_2 + +# fast build rule for target. +content_resources_2/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build +.PHONY : content_resources_2/fast + +#============================================================================= +# Target rules for targets named contentplugin_init + +# Build rule for target. +contentplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init +.PHONY : contentplugin_init + +# fast build rule for target. +contentplugin_init/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build +.PHONY : contentplugin_init/fast + +#============================================================================= +# Target rules for targets named content_autogen + +# Build rule for target. +content_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen +.PHONY : content_autogen + +# fast build rule for target. +content_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build +.PHONY : content_autogen/fast + +#============================================================================= +# Target rules for targets named contentplugin_autogen + +# Build rule for target. +contentplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen +.PHONY : contentplugin_autogen + +# fast build rule for target. +contentplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build +.PHONY : contentplugin_autogen/fast + +#============================================================================= +# Target rules for targets named content_qmlcache_autogen + +# Build rule for target. +content_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmlcache_autogen +.PHONY : content_qmlcache_autogen + +# fast build rule for target. +content_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build +.PHONY : content_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named contentplugin_init_autogen + +# Build rule for target. +contentplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen +.PHONY : contentplugin_init_autogen + +# fast build rule for target. +contentplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build +.PHONY : contentplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash + +# Build rule for target. +Bolt_Dash: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash +.PHONY : Bolt_Dash + +# fast build rule for target. +Bolt_Dash/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build +.PHONY : Bolt_Dash/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_automoc_json_extraction + +# Build rule for target. +Bolt_Dash_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_automoc_json_extraction +.PHONY : Bolt_Dash_automoc_json_extraction + +# fast build rule for target. +Bolt_Dash_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build +.PHONY : Bolt_Dash_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmltyperegistration + +# Build rule for target. +Bolt_Dash_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmltyperegistration +.PHONY : Bolt_Dash_qmltyperegistration + +# fast build rule for target. +Bolt_Dash_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build +.PHONY : Bolt_Dash_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_resources_1 + +# Build rule for target. +Bolt_Dash_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_1 +.PHONY : Bolt_Dash_resources_1 + +# fast build rule for target. +Bolt_Dash_resources_1/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build +.PHONY : Bolt_Dash_resources_1/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin + +# Build rule for target. +Bolt_Dashplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin +.PHONY : Bolt_Dashplugin + +# fast build rule for target. +Bolt_Dashplugin/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build +.PHONY : Bolt_Dashplugin/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint + +# Build rule for target. +Bolt_Dash_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint +.PHONY : Bolt_Dash_qmllint + +# fast build rule for target. +Bolt_Dash_qmllint/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build +.PHONY : Bolt_Dash_qmllint/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint_json + +# Build rule for target. +Bolt_Dash_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_json +.PHONY : Bolt_Dash_qmllint_json + +# fast build rule for target. +Bolt_Dash_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build +.PHONY : Bolt_Dash_qmllint_json/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint_module + +# Build rule for target. +Bolt_Dash_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_module +.PHONY : Bolt_Dash_qmllint_module + +# fast build rule for target. +Bolt_Dash_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build +.PHONY : Bolt_Dash_qmllint_module/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmlcache + +# Build rule for target. +Bolt_Dash_qmlcache: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmlcache +.PHONY : Bolt_Dash_qmlcache + +# fast build rule for target. +Bolt_Dash_qmlcache/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build +.PHONY : Bolt_Dash_qmlcache/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_tooling + +# Build rule for target. +Bolt_Dash_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_tooling +.PHONY : Bolt_Dash_tooling + +# fast build rule for target. +Bolt_Dash_tooling/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build +.PHONY : Bolt_Dash_tooling/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_resources_2 + +# Build rule for target. +Bolt_Dash_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_2 +.PHONY : Bolt_Dash_resources_2 + +# fast build rule for target. +Bolt_Dash_resources_2/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build +.PHONY : Bolt_Dash_resources_2/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_init + +# Build rule for target. +Bolt_Dashplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init +.PHONY : Bolt_Dashplugin_init + +# fast build rule for target. +Bolt_Dashplugin_init/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build +.PHONY : Bolt_Dashplugin_init/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_autogen + +# Build rule for target. +Bolt_Dash_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen +.PHONY : Bolt_Dash_autogen + +# fast build rule for target. +Bolt_Dash_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build +.PHONY : Bolt_Dash_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_autogen + +# Build rule for target. +Bolt_Dashplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen +.PHONY : Bolt_Dashplugin_autogen + +# fast build rule for target. +Bolt_Dashplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build +.PHONY : Bolt_Dashplugin_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmlcache_autogen + +# Build rule for target. +Bolt_Dash_qmlcache_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmlcache_autogen +.PHONY : Bolt_Dash_qmlcache_autogen + +# fast build rule for target. +Bolt_Dash_qmlcache_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build +.PHONY : Bolt_Dash_qmlcache_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_init_autogen + +# Build rule for target. +Bolt_Dashplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen +.PHONY : Bolt_Dashplugin_init_autogen + +# fast build rule for target. +Bolt_Dashplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build +.PHONY : Bolt_Dashplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named Backend + +# Build rule for target. +Backend: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Backend +.PHONY : Backend + +# fast build rule for target. +Backend/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build +.PHONY : Backend/fast + +#============================================================================= +# Target rules for targets named BackendPlugin + +# Build rule for target. +BackendPlugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin +.PHONY : BackendPlugin + +# fast build rule for target. +BackendPlugin/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build +.PHONY : BackendPlugin/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_automoc_json_extraction + +# Build rule for target. +BackendPlugin_automoc_json_extraction: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_automoc_json_extraction +.PHONY : BackendPlugin_automoc_json_extraction + +# fast build rule for target. +BackendPlugin_automoc_json_extraction/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build +.PHONY : BackendPlugin_automoc_json_extraction/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_qmltyperegistration + +# Build rule for target. +BackendPlugin_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmltyperegistration +.PHONY : BackendPlugin_qmltyperegistration + +# fast build rule for target. +BackendPlugin_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build +.PHONY : BackendPlugin_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named BackendPluginplugin + +# Build rule for target. +BackendPluginplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPluginplugin +.PHONY : BackendPluginplugin + +# fast build rule for target. +BackendPluginplugin/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build +.PHONY : BackendPluginplugin/fast + +#============================================================================= +# Target rules for targets named qt_internal_plugins + +# Build rule for target. +qt_internal_plugins: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qt_internal_plugins +.PHONY : qt_internal_plugins + +# fast build rule for target. +qt_internal_plugins/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build +.PHONY : qt_internal_plugins/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_qmllint + +# Build rule for target. +BackendPlugin_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint +.PHONY : BackendPlugin_qmllint + +# fast build rule for target. +BackendPlugin_qmllint/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build +.PHONY : BackendPlugin_qmllint/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_qmllint_json + +# Build rule for target. +BackendPlugin_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint_json +.PHONY : BackendPlugin_qmllint_json + +# fast build rule for target. +BackendPlugin_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build +.PHONY : BackendPlugin_qmllint_json/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_qmllint_module + +# Build rule for target. +BackendPlugin_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint_module +.PHONY : BackendPlugin_qmllint_module + +# fast build rule for target. +BackendPlugin_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build +.PHONY : BackendPlugin_qmllint_module/fast + +#============================================================================= +# Target rules for targets named Backend_autogen + +# Build rule for target. +Backend_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Backend_autogen +.PHONY : Backend_autogen + +# fast build rule for target. +Backend_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build +.PHONY : Backend_autogen/fast + +#============================================================================= +# Target rules for targets named BackendPlugin_autogen + +# Build rule for target. +BackendPlugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_autogen +.PHONY : BackendPlugin_autogen + +# fast build rule for target. +BackendPlugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build +.PHONY : BackendPlugin_autogen/fast + +#============================================================================= +# Target rules for targets named BackendPluginplugin_autogen + +# Build rule for target. +BackendPluginplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPluginplugin_autogen +.PHONY : BackendPluginplugin_autogen + +# fast build rule for target. +BackendPluginplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build +.PHONY : BackendPluginplugin_autogen/fast + +.rcc/qmlcache/Bolt_DashApp_main_qml.o: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o + +.rcc/qmlcache/Bolt_DashApp_main_qml.i: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i + +.rcc/qmlcache/Bolt_DashApp_main_qml.s: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s + +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o + +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i + +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s + +.rcc/qrc_Bolt_DashApp_raw_qml_0.o: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.o + +# target to build an object file +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o + +.rcc/qrc_Bolt_DashApp_raw_qml_0.i: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i + +.rcc/qrc_Bolt_DashApp_raw_qml_0.s: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s + +.rcc/qrc_configuration.o: .rcc/qrc_configuration.cpp.o +.PHONY : .rcc/qrc_configuration.o + +# target to build an object file +.rcc/qrc_configuration.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o +.PHONY : .rcc/qrc_configuration.cpp.o + +.rcc/qrc_configuration.i: .rcc/qrc_configuration.cpp.i +.PHONY : .rcc/qrc_configuration.i + +# target to preprocess a source file +.rcc/qrc_configuration.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i +.PHONY : .rcc/qrc_configuration.cpp.i + +.rcc/qrc_configuration.s: .rcc/qrc_configuration.cpp.s +.PHONY : .rcc/qrc_configuration.s + +# target to generate assembly for a file +.rcc/qrc_configuration.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s +.PHONY : .rcc/qrc_configuration.cpp.s + +.rcc/qrc_qmake_Main.o: .rcc/qrc_qmake_Main.cpp.o +.PHONY : .rcc/qrc_qmake_Main.o + +# target to build an object file +.rcc/qrc_qmake_Main.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o +.PHONY : .rcc/qrc_qmake_Main.cpp.o + +.rcc/qrc_qmake_Main.i: .rcc/qrc_qmake_Main.cpp.i +.PHONY : .rcc/qrc_qmake_Main.i + +# target to preprocess a source file +.rcc/qrc_qmake_Main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i +.PHONY : .rcc/qrc_qmake_Main.cpp.i + +.rcc/qrc_qmake_Main.s: .rcc/qrc_qmake_Main.cpp.s +.PHONY : .rcc/qrc_qmake_Main.s + +# target to generate assembly for a file +.rcc/qrc_qmake_Main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s +.PHONY : .rcc/qrc_qmake_Main.cpp.s + +Bolt_DashApp_autogen/mocs_compilation.o: Bolt_DashApp_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_DashApp_autogen/mocs_compilation.o + +# target to build an object file +Bolt_DashApp_autogen/mocs_compilation.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.o + +Bolt_DashApp_autogen/mocs_compilation.i: Bolt_DashApp_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_DashApp_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_DashApp_autogen/mocs_compilation.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.i + +Bolt_DashApp_autogen/mocs_compilation.s: Bolt_DashApp_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_DashApp_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_DashApp_autogen/mocs_compilation.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.s + +bolt_dashapp_qmltyperegistrations.o: bolt_dashapp_qmltyperegistrations.cpp.o +.PHONY : bolt_dashapp_qmltyperegistrations.o + +# target to build an object file +bolt_dashapp_qmltyperegistrations.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o +.PHONY : bolt_dashapp_qmltyperegistrations.cpp.o + +bolt_dashapp_qmltyperegistrations.i: bolt_dashapp_qmltyperegistrations.cpp.i +.PHONY : bolt_dashapp_qmltyperegistrations.i + +# target to preprocess a source file +bolt_dashapp_qmltyperegistrations.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i +.PHONY : bolt_dashapp_qmltyperegistrations.cpp.i + +bolt_dashapp_qmltyperegistrations.s: bolt_dashapp_qmltyperegistrations.cpp.s +.PHONY : bolt_dashapp_qmltyperegistrations.s + +# target to generate assembly for a file +bolt_dashapp_qmltyperegistrations.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s +.PHONY : bolt_dashapp_qmltyperegistrations.cpp.s + +src/main.o: src/main.cpp.o +.PHONY : src/main.o + +# target to build an object file +src/main.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o +.PHONY : src/main.cpp.o + +src/main.i: src/main.cpp.i +.PHONY : src/main.i + +# target to preprocess a source file +src/main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i +.PHONY : src/main.cpp.i + +src/main.s: src/main.cpp.s +.PHONY : src/main.s + +# target to generate assembly for a file +src/main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s +.PHONY : src/main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... BackendPlugin_autogen" + @echo "... BackendPlugin_automoc_json_extraction" + @echo "... BackendPlugin_qmllint" + @echo "... BackendPlugin_qmllint_json" + @echo "... BackendPlugin_qmllint_module" + @echo "... BackendPlugin_qmltyperegistration" + @echo "... BackendPluginplugin_autogen" + @echo "... Backend_autogen" + @echo "... Bolt_DashApp_autogen" + @echo "... Bolt_DashApp_automoc_json_extraction" + @echo "... Bolt_DashApp_qmlimportscan" + @echo "... Bolt_DashApp_qmllint" + @echo "... Bolt_DashApp_qmllint_json" + @echo "... Bolt_DashApp_qmllint_module" + @echo "... Bolt_DashApp_qmltyperegistration" + @echo "... Bolt_Dash_autogen" + @echo "... Bolt_Dash_automoc_json_extraction" + @echo "... Bolt_Dash_qmlcache_autogen" + @echo "... Bolt_Dash_qmllint" + @echo "... Bolt_Dash_qmllint_json" + @echo "... Bolt_Dash_qmllint_module" + @echo "... Bolt_Dash_qmltyperegistration" + @echo "... Bolt_Dashplugin_autogen" + @echo "... Bolt_Dashplugin_init_autogen" + @echo "... FlowView_autogen" + @echo "... FlowView_automoc_json_extraction" + @echo "... FlowView_qmlcache_autogen" + @echo "... FlowView_qmllint" + @echo "... FlowView_qmllint_json" + @echo "... FlowView_qmllint_module" + @echo "... FlowView_qmltyperegistration" + @echo "... FlowViewplugin_autogen" + @echo "... FlowViewplugin_init_autogen" + @echo "... QuickStudioApplication_autogen" + @echo "... QuickStudioApplication_automoc_json_extraction" + @echo "... QuickStudioApplication_qmllint" + @echo "... QuickStudioApplication_qmllint_json" + @echo "... QuickStudioApplication_qmllint_module" + @echo "... QuickStudioApplication_qmltyperegistration" + @echo "... QuickStudioApplicationplugin_autogen" + @echo "... QuickStudioApplicationplugin_init_autogen" + @echo "... QuickStudioComponents_autogen" + @echo "... QuickStudioComponents_automoc_json_extraction" + @echo "... QuickStudioComponents_qmlcache_autogen" + @echo "... QuickStudioComponents_qmllint" + @echo "... QuickStudioComponents_qmllint_json" + @echo "... QuickStudioComponents_qmllint_module" + @echo "... QuickStudioComponents_qmltyperegistration" + @echo "... QuickStudioComponentsplugin_autogen" + @echo "... QuickStudioComponentsplugin_init_autogen" + @echo "... QuickStudioEffects_autogen" + @echo "... QuickStudioEffects_automoc_json_extraction" + @echo "... QuickStudioEffects_qmlcache_autogen" + @echo "... QuickStudioEffects_qmllint" + @echo "... QuickStudioEffects_qmllint_json" + @echo "... QuickStudioEffects_qmllint_module" + @echo "... QuickStudioEffects_qmltyperegistration" + @echo "... QuickStudioEffectsplugin_autogen" + @echo "... QuickStudioEffectsplugin_init_autogen" + @echo "... QuickStudioEventSimulator_autogen" + @echo "... QuickStudioEventSimulator_automoc_json_extraction" + @echo "... QuickStudioEventSimulator_qmlcache_autogen" + @echo "... QuickStudioEventSimulator_qmllint" + @echo "... QuickStudioEventSimulator_qmllint_json" + @echo "... QuickStudioEventSimulator_qmllint_module" + @echo "... QuickStudioEventSimulator_qmltyperegistration" + @echo "... QuickStudioEventSimulatorplugin_autogen" + @echo "... QuickStudioEventSimulatorplugin_init_autogen" + @echo "... QuickStudioEventSystem_autogen" + @echo "... QuickStudioEventSystem_automoc_json_extraction" + @echo "... QuickStudioEventSystem_qmlcache_autogen" + @echo "... QuickStudioEventSystem_qmllint" + @echo "... QuickStudioEventSystem_qmllint_json" + @echo "... QuickStudioEventSystem_qmllint_module" + @echo "... QuickStudioEventSystem_qmltyperegistration" + @echo "... QuickStudioEventSystemplugin_autogen" + @echo "... QuickStudioEventSystemplugin_init_autogen" + @echo "... QuickStudioLogicHelper_autogen" + @echo "... QuickStudioLogicHelper_automoc_json_extraction" + @echo "... QuickStudioLogicHelper_qmlcache_autogen" + @echo "... QuickStudioLogicHelper_qmllint" + @echo "... QuickStudioLogicHelper_qmllint_json" + @echo "... QuickStudioLogicHelper_qmllint_module" + @echo "... QuickStudioLogicHelper_qmltyperegistration" + @echo "... QuickStudioLogicHelperplugin_autogen" + @echo "... QuickStudioLogicHelperplugin_init_autogen" + @echo "... QuickStudioMultiText_autogen" + @echo "... QuickStudioMultiText_automoc_json_extraction" + @echo "... QuickStudioMultiText_qmlcache_autogen" + @echo "... QuickStudioMultiText_qmllint" + @echo "... QuickStudioMultiText_qmllint_json" + @echo "... QuickStudioMultiText_qmllint_module" + @echo "... QuickStudioMultiText_qmltyperegistration" + @echo "... QuickStudioMultiTextplugin_autogen" + @echo "... QuickStudioMultiTextplugin_init_autogen" + @echo "... all_qmllint" + @echo "... all_qmllint_json" + @echo "... all_qmllint_module" + @echo "... all_qmltyperegistrations" + @echo "... content_autogen" + @echo "... content_automoc_json_extraction" + @echo "... content_qmlcache_autogen" + @echo "... content_qmllint" + @echo "... content_qmllint_json" + @echo "... content_qmllint_module" + @echo "... content_qmltyperegistration" + @echo "... contentplugin_autogen" + @echo "... contentplugin_init_autogen" + @echo "... qt_internal_plugins" + @echo "... Backend" + @echo "... BackendPlugin" + @echo "... BackendPluginplugin" + @echo "... Bolt_Dash" + @echo "... Bolt_DashApp" + @echo "... Bolt_DashApp_tooling" + @echo "... Bolt_Dash_qmlcache" + @echo "... Bolt_Dash_resources_1" + @echo "... Bolt_Dash_resources_2" + @echo "... Bolt_Dash_tooling" + @echo "... Bolt_Dashplugin" + @echo "... Bolt_Dashplugin_init" + @echo "... FlowView" + @echo "... FlowView_qmlcache" + @echo "... FlowView_resources_1" + @echo "... FlowView_tooling" + @echo "... FlowViewplugin" + @echo "... FlowViewplugin_init" + @echo "... QuickStudioApplication" + @echo "... QuickStudioApplication_resources_1" + @echo "... QuickStudioApplicationplugin" + @echo "... QuickStudioApplicationplugin_init" + @echo "... QuickStudioComponents" + @echo "... QuickStudioComponents_qmlcache" + @echo "... QuickStudioComponents_resources_1" + @echo "... QuickStudioComponents_resources_2" + @echo "... QuickStudioComponents_tooling" + @echo "... QuickStudioComponentsplugin" + @echo "... QuickStudioComponentsplugin_init" + @echo "... QuickStudioEffects" + @echo "... QuickStudioEffects_qmlcache" + @echo "... QuickStudioEffects_resources_1" + @echo "... QuickStudioEffects_resources_2" + @echo "... QuickStudioEffects_tooling" + @echo "... QuickStudioEffectsplugin" + @echo "... QuickStudioEffectsplugin_init" + @echo "... QuickStudioEventSimulator" + @echo "... QuickStudioEventSimulator_qmlcache" + @echo "... QuickStudioEventSimulator_resources_1" + @echo "... QuickStudioEventSimulator_resources_2" + @echo "... QuickStudioEventSimulator_tooling" + @echo "... QuickStudioEventSimulatorplugin" + @echo "... QuickStudioEventSimulatorplugin_init" + @echo "... QuickStudioEventSystem" + @echo "... QuickStudioEventSystem_qmlcache" + @echo "... QuickStudioEventSystem_resources_1" + @echo "... QuickStudioEventSystem_resources_2" + @echo "... QuickStudioEventSystem_tooling" + @echo "... QuickStudioEventSystemplugin" + @echo "... QuickStudioEventSystemplugin_init" + @echo "... QuickStudioLogicHelper" + @echo "... QuickStudioLogicHelper_qmlcache" + @echo "... QuickStudioLogicHelper_resources_1" + @echo "... QuickStudioLogicHelper_resources_2" + @echo "... QuickStudioLogicHelper_tooling" + @echo "... QuickStudioLogicHelperplugin" + @echo "... QuickStudioLogicHelperplugin_init" + @echo "... QuickStudioMultiText" + @echo "... QuickStudioMultiText_qmlcache" + @echo "... QuickStudioMultiText_resources_1" + @echo "... QuickStudioMultiText_resources_2" + @echo "... QuickStudioMultiText_tooling" + @echo "... QuickStudioMultiTextplugin" + @echo "... QuickStudioMultiTextplugin_init" + @echo "... content" + @echo "... content_qmlcache" + @echo "... content_resources_1" + @echo "... content_resources_2" + @echo "... content_tooling" + @echo "... contentplugin" + @echo "... contentplugin_init" + @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.o" + @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.i" + @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.s" + @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o" + @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i" + @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s" + @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.o" + @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.i" + @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.s" + @echo "... .rcc/qrc_configuration.o" + @echo "... .rcc/qrc_configuration.i" + @echo "... .rcc/qrc_configuration.s" + @echo "... .rcc/qrc_qmake_Main.o" + @echo "... .rcc/qrc_qmake_Main.i" + @echo "... .rcc/qrc_qmake_Main.s" + @echo "... Bolt_DashApp_autogen/mocs_compilation.o" + @echo "... Bolt_DashApp_autogen/mocs_compilation.i" + @echo "... Bolt_DashApp_autogen/mocs_compilation.s" + @echo "... bolt_dashapp_qmltyperegistrations.o" + @echo "... bolt_dashapp_qmltyperegistrations.i" + @echo "... bolt_dashapp_qmltyperegistrations.s" + @echo "... src/main.o" + @echo "... src/main.i" + @echo "... src/main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/CMakeFiles/progress.marks b/build/_deps/ds-build/CMakeFiles/progress.marks new file mode 100644 index 0000000..dd47563 --- /dev/null +++ b/build/_deps/ds-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +76 diff --git a/build/_deps/ds-build/Makefile b/build/_deps/ds-build/Makefile new file mode 100644 index 0000000..df3f375 --- /dev/null +++ b/build/_deps/ds-build/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/cmake_install.cmake b/build/_deps/ds-build/cmake_install.cmake new file mode 100644 index 0000000..513afab --- /dev/null +++ b/build/_deps/ds-build/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/cmake_install.cmake") +endif() + diff --git a/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/CMakeFiles/progress.marks b/build/_deps/ds-build/src/CMakeFiles/progress.marks new file mode 100644 index 0000000..dd47563 --- /dev/null +++ b/build/_deps/ds-build/src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +76 diff --git a/build/_deps/ds-build/src/Makefile b/build/_deps/ds-build/src/Makefile new file mode 100644 index 0000000..9e7975d --- /dev/null +++ b/build/_deps/ds-build/src/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/cmake_install.cmake b/build/_deps/ds-build/src/cmake_install.cmake new file mode 100644 index 0000000..56aff6b --- /dev/null +++ b/build/_deps/ds-build/src/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/cmake_install.cmake") +endif() + diff --git a/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks new file mode 100644 index 0000000..dd47563 --- /dev/null +++ b/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks @@ -0,0 +1 @@ +76 diff --git a/build/_deps/ds-build/src/imports/Makefile b/build/_deps/ds-build/src/imports/Makefile new file mode 100644 index 0000000..c76f18d --- /dev/null +++ b/build/_deps/ds-build/src/imports/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc b/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc new file mode 100644 index 0000000..b3c26ac --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp new file mode 100644 index 0000000..0cc4e21 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp @@ -0,0 +1,9 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp new file mode 100644 index 0000000..c726b00 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp @@ -0,0 +1,11 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioApplication_qmllint.json diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp new file mode 100644 index 0000000..7e1a8e4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp @@ -0,0 +1,10 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc +--module +QtQuick.Studio.Application diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake new file mode 100644 index 0000000..d948eef --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake @@ -0,0 +1,27 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make new file mode 100644 index 0000000..37dd35a --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make @@ -0,0 +1,171 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make + +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: _deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json + +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes --import-name=QtQuick.Studio.Application --major-version=6 --minor-version=4 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated/QuickStudioApplication.qmltypes + +qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes + +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating meta_types/qt6quickstudioapplication_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp > CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp > CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s + +# Object files for target QuickStudioApplication +QuickStudioApplication_OBJECTS = \ +"CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" + +# External object files for target QuickStudioApplication +QuickStudioApplication_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o +_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make +_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX static library libQuickStudioApplication.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioApplication.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build: _deps/ds-build/src/imports/application/libQuickStudioApplication.a +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake new file mode 100644 index 0000000..5442d15 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake @@ -0,0 +1,22 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" + "CMakeFiles/QuickStudioApplication_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt" + "QuickStudioApplication_autogen" + "CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" + "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d" + "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d" + "libQuickStudioApplication.a" + "libQuickStudioApplication.pdb" + "meta_types/qt6quickstudioapplication_debug_metatypes.json" + "meta_types/qt6quickstudioapplication_debug_metatypes.json.gen" + "quickstudioapplication_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioApplication.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8e5ad8f --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioApplication.a" +) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make new file mode 100644 index 0000000..4cea382 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioApplication. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts new file mode 100644 index 0000000..64b9808 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioApplication. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make new file mode 100644 index 0000000..4e2d4f9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioApplication. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make new file mode 100644 index 0000000..37e12bc --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt new file mode 100644 index 0000000..0c5c163 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioApplication.a CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioApplication.a diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make new file mode 100644 index 0000000..2f240cb --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make @@ -0,0 +1,8 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 29 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..a6cc64d --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json @@ -0,0 +1,118 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication_p.h", + "MU", + "EWIEGA46WW/moc_quickstudioapplication_p.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtGui.framework/Headers", + "/opt/homebrew/lib/QtGui.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make new file mode 100644 index 0000000..472ca73 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json Debug + +QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen +QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make +.PHONY : QuickStudioApplication_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build: QuickStudioApplication_autogen +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..d62ef1b --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplication_autogen" + "QuickStudioApplication_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..0c61c95 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..e0d23c9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..c07b76e --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include + +QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction +QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioApplication_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build: QuickStudioApplication_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..b80997a --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplication_automoc_json_extraction" + "meta_types/QuickStudioApplication_json_file_list.txt" + "meta_types/QuickStudioApplication_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..1306b88 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..4930e36 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..3040898 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 30 + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make new file mode 100644 index 0000000..68bf4e0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo Nothing\ to\ do\ for\ target\ QuickStudioApplication_qmllint. + +QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint +QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make +.PHONY : QuickStudioApplication_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build: QuickStudioApplication_qmllint +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..f01fc77 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplication_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..dc59f98 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..986cd48 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make new file mode 100644 index 0000000..7dd10f9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp + +QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json +QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make +.PHONY : QuickStudioApplication_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build: QuickStudioApplication_qmllint_json +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..c0d2dff --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplication_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..a6252ee --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..9cc17ed --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make new file mode 100644 index 0000000..c3d7aee --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp + +QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module +QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make +.PHONY : QuickStudioApplication_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build: QuickStudioApplication_qmllint_module +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..1e21180 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplication_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..6a60b96 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..466f972 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..dacfa35 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..ee8d4cd --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplication_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes + +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json +_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes --import-name=QtQuick.Studio.Application --major-version=6 --minor-version=4 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated/QuickStudioApplication.qmltypes + +qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes + +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioapplication_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: _deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioApplication" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json + +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp +QuickStudioApplication_qmltyperegistration: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make +.PHONY : QuickStudioApplication_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build: QuickStudioApplication_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..d57767e --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" + "CMakeFiles/QuickStudioApplication_qmltyperegistration" + "meta_types/qt6quickstudioapplication_debug_metatypes.json" + "meta_types/qt6quickstudioapplication_debug_metatypes.json.gen" + "quickstudioapplication_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..af14d21 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplication_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..06fc9d7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..93baac3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make new file mode 100644 index 0000000..82fcd43 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make + +_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: qml/QtQuick/Studio/Application/qmldir +_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: _deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc +_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Application" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp --name qmake_QtQuick_Studio_Application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -MF CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp > CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s + +QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o +QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make +.PHONY : QuickStudioApplication_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build: QuickStudioApplication_resources_1 +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend: _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..ec70a32 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_Application.cpp" + "CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" + "CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..f792618 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioApplication_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..8d83d7a --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioApplication_resources_1. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make new file mode 100644 index 0000000..3f4ffed --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioApplication_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make new file mode 100644 index 0000000..5331b70 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -I/opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..4bb83d4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make new file mode 100644 index 0000000..d898ce5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp > CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s + +# Object files for target QuickStudioApplicationplugin +QuickStudioApplicationplugin_OBJECTS = \ +"CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" + +# External object files for target QuickStudioApplicationplugin +QuickStudioApplicationplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o +qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make +qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioApplicationplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build: qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..82885b6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" + "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.pdb" + "CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioApplicationplugin_autogen.dir/ParseCache.txt" + "QuickStudioApplicationplugin_autogen" + "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" + "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d" + "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8a99c2e --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make new file mode 100644 index 0000000..e4af676 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioApplicationplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..9f9072e --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioApplicationplugin. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make new file mode 100644 index 0000000..81c5b71 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioApplicationplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make new file mode 100644 index 0000000..1f19683 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt new file mode 100644 index 0000000..19d9a7d --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make new file mode 100644 index 0000000..32d0eb7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 31 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..cec6be5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,107 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Application" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make new file mode 100644 index 0000000..7401bc8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplicationplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplicationplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen +QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make +.PHONY : QuickStudioApplicationplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build: QuickStudioApplicationplugin_autogen +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..f99b6bd --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplicationplugin_autogen" + "QuickStudioApplicationplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..1556147 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplicationplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..49e9c0b --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplicationplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..64be776 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make new file mode 100644 index 0000000..891d999 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp > CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s + +QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o +QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make +.PHONY : QuickStudioApplicationplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build: QuickStudioApplicationplugin_init +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..9dc94e4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioApplicationplugin_init_autogen" + "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" + "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..e3688ee --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioApplicationplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..9e933ba --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioApplicationplugin_init. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make new file mode 100644 index 0000000..b668d91 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioApplicationplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make new file mode 100644 index 0000000..786f298 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..32b6871 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,110 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..60f56f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioApplicationplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplicationplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen +QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make +.PHONY : QuickStudioApplicationplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build: QuickStudioApplicationplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..5cf1957 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioApplicationplugin_init_autogen" + "QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..bfa2297 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioApplicationplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..b185d2f --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioApplicationplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..044b5ab --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 32 + diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/_deps/ds-build/src/imports/application/Makefile b/build/_deps/ds-build/src/imports/application/Makefile new file mode 100644 index 0000000..2aa3bc0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/Makefile @@ -0,0 +1,585 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule + +# Convenience name for target. +QuickStudioApplication: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule +.PHONY : QuickStudioApplication + +# fast build rule for target. +QuickStudioApplication/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build +.PHONY : QuickStudioApplication/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule +.PHONY : QuickStudioApplication_automoc_json_extraction + +# fast build rule for target. +QuickStudioApplication_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build +.PHONY : QuickStudioApplication_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule +.PHONY : QuickStudioApplication_qmltyperegistration + +# fast build rule for target. +QuickStudioApplication_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build +.PHONY : QuickStudioApplication_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule + +# Convenience name for target. +QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule +.PHONY : QuickStudioApplication_resources_1 + +# fast build rule for target. +QuickStudioApplication_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build +.PHONY : QuickStudioApplication_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule +.PHONY : QuickStudioApplicationplugin + +# fast build rule for target. +QuickStudioApplicationplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build +.PHONY : QuickStudioApplicationplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule +.PHONY : QuickStudioApplication_qmllint + +# fast build rule for target. +QuickStudioApplication_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build +.PHONY : QuickStudioApplication_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule +.PHONY : QuickStudioApplication_qmllint_json + +# fast build rule for target. +QuickStudioApplication_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build +.PHONY : QuickStudioApplication_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule +.PHONY : QuickStudioApplication_qmllint_module + +# fast build rule for target. +QuickStudioApplication_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build +.PHONY : QuickStudioApplication_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule +.PHONY : QuickStudioApplicationplugin_init + +# fast build rule for target. +QuickStudioApplicationplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build +.PHONY : QuickStudioApplicationplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule +.PHONY : QuickStudioApplication_autogen + +# fast build rule for target. +QuickStudioApplication_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build +.PHONY : QuickStudioApplication_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule +.PHONY : QuickStudioApplicationplugin_autogen + +# fast build rule for target. +QuickStudioApplicationplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build +.PHONY : QuickStudioApplicationplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule +.PHONY : QuickStudioApplicationplugin_init_autogen + +# fast build rule for target. +QuickStudioApplicationplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build +.PHONY : QuickStudioApplicationplugin_init_autogen/fast + +.rcc/qrc_qmake_QtQuick_Studio_Application.o: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_Application.i: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_Application.s: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s + +QuickStudioApplication_autogen/mocs_compilation.o: QuickStudioApplication_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplication_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioApplication_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.o + +QuickStudioApplication_autogen/mocs_compilation.i: QuickStudioApplication_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplication_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioApplication_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.i + +QuickStudioApplication_autogen/mocs_compilation.s: QuickStudioApplication_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplication_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioApplication_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.s + +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o + +# target to build an object file +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o + +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i + +# target to preprocess a source file +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i + +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s + +# target to generate assembly for a file +QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s +.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s + +QuickStudioApplicationplugin_autogen/mocs_compilation.o: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o + +QuickStudioApplicationplugin_autogen/mocs_compilation.i: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i + +QuickStudioApplicationplugin_autogen/mocs_compilation.s: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s + +QuickStudioApplicationplugin_init.o: QuickStudioApplicationplugin_init.cpp.o +.PHONY : QuickStudioApplicationplugin_init.o + +# target to build an object file +QuickStudioApplicationplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o +.PHONY : QuickStudioApplicationplugin_init.cpp.o + +QuickStudioApplicationplugin_init.i: QuickStudioApplicationplugin_init.cpp.i +.PHONY : QuickStudioApplicationplugin_init.i + +# target to preprocess a source file +QuickStudioApplicationplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i +.PHONY : QuickStudioApplicationplugin_init.cpp.i + +QuickStudioApplicationplugin_init.s: QuickStudioApplicationplugin_init.cpp.s +.PHONY : QuickStudioApplicationplugin_init.s + +# target to generate assembly for a file +QuickStudioApplicationplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s +.PHONY : QuickStudioApplicationplugin_init.cpp.s + +QuickStudioApplicationplugin_init_autogen/mocs_compilation.o: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioApplicationplugin_init_autogen/mocs_compilation.i: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioApplicationplugin_init_autogen/mocs_compilation.s: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s + +quickstudioapplication.o: quickstudioapplication.cpp.o +.PHONY : quickstudioapplication.o + +# target to build an object file +quickstudioapplication.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o +.PHONY : quickstudioapplication.cpp.o + +quickstudioapplication.i: quickstudioapplication.cpp.i +.PHONY : quickstudioapplication.i + +# target to preprocess a source file +quickstudioapplication.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i +.PHONY : quickstudioapplication.cpp.i + +quickstudioapplication.s: quickstudioapplication.cpp.s +.PHONY : quickstudioapplication.s + +# target to generate assembly for a file +quickstudioapplication.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s +.PHONY : quickstudioapplication.cpp.s + +quickstudioapplication_qmltyperegistrations.o: quickstudioapplication_qmltyperegistrations.cpp.o +.PHONY : quickstudioapplication_qmltyperegistrations.o + +# target to build an object file +quickstudioapplication_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o +.PHONY : quickstudioapplication_qmltyperegistrations.cpp.o + +quickstudioapplication_qmltyperegistrations.i: quickstudioapplication_qmltyperegistrations.cpp.i +.PHONY : quickstudioapplication_qmltyperegistrations.i + +# target to preprocess a source file +quickstudioapplication_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i +.PHONY : quickstudioapplication_qmltyperegistrations.cpp.i + +quickstudioapplication_qmltyperegistrations.s: quickstudioapplication_qmltyperegistrations.cpp.s +.PHONY : quickstudioapplication_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudioapplication_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s +.PHONY : quickstudioapplication_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioApplication_autogen" + @echo "... QuickStudioApplication_automoc_json_extraction" + @echo "... QuickStudioApplication_qmllint" + @echo "... QuickStudioApplication_qmllint_json" + @echo "... QuickStudioApplication_qmllint_module" + @echo "... QuickStudioApplication_qmltyperegistration" + @echo "... QuickStudioApplicationplugin_autogen" + @echo "... QuickStudioApplicationplugin_init_autogen" + @echo "... QuickStudioApplication" + @echo "... QuickStudioApplication_resources_1" + @echo "... QuickStudioApplicationplugin" + @echo "... QuickStudioApplicationplugin_init" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.s" + @echo "... QuickStudioApplication_autogen/mocs_compilation.o" + @echo "... QuickStudioApplication_autogen/mocs_compilation.i" + @echo "... QuickStudioApplication_autogen/mocs_compilation.s" + @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o" + @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i" + @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s" + @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioApplicationplugin_init.o" + @echo "... QuickStudioApplicationplugin_init.i" + @echo "... QuickStudioApplicationplugin_init.s" + @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudioapplication.o" + @echo "... quickstudioapplication.i" + @echo "... quickstudioapplication.s" + @echo "... quickstudioapplication_qmltyperegistrations.o" + @echo "... quickstudioapplication_qmltyperegistrations.i" + @echo "... quickstudioapplication_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp new file mode 100644 index 0000000..d483c58 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_Application(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Application) + +class QtQuick_Studio_ApplicationPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_ApplicationPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_Application; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp new file mode 100644 index 0000000..1e361d0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_ApplicationPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/application/cmake_install.cmake b/build/_deps/ds-build/src/imports/application/cmake_install.cmake new file mode 100644 index 0000000..aacce4c --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json b/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt b/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt new file mode 100644 index 0000000..81c7db2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/cmake_install.cmake b/build/_deps/ds-build/src/imports/cmake_install.cmake new file mode 100644 index 0000000..6da43d5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/cmake_install.cmake @@ -0,0 +1,74 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/cmake_install.cmake") +endif() + diff --git a/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc new file mode 100644 index 0000000..fe8cb85 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc @@ -0,0 +1,18 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml + + + diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc b/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc new file mode 100644 index 0000000..ffd3681 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp new file mode 100644 index 0000000..559fc54 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp @@ -0,0 +1,13 @@ +/QtQuick/Studio/Components/ArcItem.qml +/QtQuick/Studio/Components/PieItem.qml +/QtQuick/Studio/Components/TriangleItem.qml +/QtQuick/Studio/Components/SvgPathItem.qml +/QtQuick/Studio/Components/EllipseItem.qml +/QtQuick/Studio/Components/FlipableItem.qml +/QtQuick/Studio/Components/RectangleItem.qml +/QtQuick/Studio/Components/RegularPolygonItem.qml +/QtQuick/Studio/Components/BorderItem.qml +/QtQuick/Studio/Components/IsoItem.qml +/QtQuick/Studio/Components/GroupItem.qml +/QtQuick/Studio/Components/ArcArrow.qml +/QtQuick/Studio/Components/StraightArrow.qml diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp new file mode 100644 index 0000000..793193d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp @@ -0,0 +1,24 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp new file mode 100644 index 0000000..940ea57 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp @@ -0,0 +1,26 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioComponents_qmllint.json diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp new file mode 100644 index 0000000..e6c046b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +--module +QtQuick.Studio.Components diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake new file mode 100644 index 0000000..ea97d68 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake @@ -0,0 +1,39 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make new file mode 100644 index 0000000..b298615 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make @@ -0,0 +1,505 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make + +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: _deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json + +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes --import-name=QtQuick.Studio.Components --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated/QuickStudioComponents.qmltypes + +qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/ArcItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/PieItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/TriangleItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/SvgPathItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/EllipseItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/FlipableItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/RectangleItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/RegularPolygonItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/BorderItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/IsoItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/GroupItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/ArcArrow.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: qml/QtQuick/Studio/Components/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/StraightArrow.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml + +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating meta_types/qt6quickstudiocomponents_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp > CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s + +# Object files for target QuickStudioComponents +QuickStudioComponents_OBJECTS = \ +"CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" \ +"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" + +# External object files for target QuickStudioComponents +QuickStudioComponents_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make +_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Linking CXX static library libQuickStudioComponents.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioComponents.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build: _deps/ds-build/src/imports/components/libQuickStudioComponents.a +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake new file mode 100644 index 0000000..6936b0c --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake @@ -0,0 +1,59 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" + ".rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" + ".rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" + "CMakeFiles/QuickStudioComponents_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt" + "QuickStudioComponents_autogen" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d" + "libQuickStudioComponents.a" + "libQuickStudioComponents.pdb" + "meta_types/qt6quickstudiocomponents_debug_metatypes.json" + "meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen" + "quickstudiocomponents_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponents.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8d778bb --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioComponents.a" +) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make new file mode 100644 index 0000000..60b0e28 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponents. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts new file mode 100644 index 0000000..50f3949 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponents. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make new file mode 100644 index 0000000..a635d82 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponents. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make new file mode 100644 index 0000000..723cb3d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt new file mode 100644 index 0000000..f6df649 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioComponents.a CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioComponents.a diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make new file mode 100644 index 0000000..6cc1e7e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make @@ -0,0 +1,33 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 33 +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = 34 +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = +CMAKE_PROGRESS_19 = 35 +CMAKE_PROGRESS_20 = +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = +CMAKE_PROGRESS_25 = 36 +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = +CMAKE_PROGRESS_30 = +CMAKE_PROGRESS_31 = 37 +CMAKE_PROGRESS_32 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d2562f3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json @@ -0,0 +1,129 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make new file mode 100644 index 0000000..d5efca4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json Debug + +QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen +QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make +.PHONY : QuickStudioComponents_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build: QuickStudioComponents_autogen +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..d99cf91 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponents_autogen" + "QuickStudioComponents_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..3439c70 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..dcef2b8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..341a495 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include + +QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction +QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioComponents_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build: QuickStudioComponents_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..e69e4c5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponents_automoc_json_extraction" + "meta_types/QuickStudioComponents_json_file_list.txt" + "meta_types/QuickStudioComponents_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..1b8a709 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..b14de5e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..0dfc662 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make new file mode 100644 index 0000000..ee9eb1b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioComponents --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp > CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s + +QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o +QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make +.PHONY : QuickStudioComponents_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build: QuickStudioComponents_qmlcache +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..134d162 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioComponents_qmlcache_autogen" + "CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..e8be781 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponents_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..e079f80 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponents_qmlcache. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make new file mode 100644 index 0000000..d1d0de6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponents_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make new file mode 100644 index 0000000..9188866 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..b266f82 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,141 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..e335b17 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponents_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioComponents --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp + +QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp +QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen +QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioComponents_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build: QuickStudioComponents_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..107cd44 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioComponents_qmlcache_autogen" + "QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..a987339 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..6186270 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..cb5873d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 38 +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make new file mode 100644 index 0000000..e050c1a --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp + +QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint +QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make +.PHONY : QuickStudioComponents_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build: QuickStudioComponents_qmllint +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..55f6abe --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponents_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..c0fb51c --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..3075bc4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make new file mode 100644 index 0000000..f786e5b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp + +QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json +QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make +.PHONY : QuickStudioComponents_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build: QuickStudioComponents_qmllint_json +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..4033f3f --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponents_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..2726c08 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..af10121 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make new file mode 100644 index 0000000..e8fae1f --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp + +QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module +QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make +.PHONY : QuickStudioComponents_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build: QuickStudioComponents_qmllint_module +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..405acce --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponents_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..2833939 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..a7817b6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..9878629 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..cdf4b58 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes + +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes --import-name=QtQuick.Studio.Components --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated/QuickStudioComponents.qmltypes + +qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes + +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiocomponents_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: _deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioComponents" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json + +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp +QuickStudioComponents_qmltyperegistration: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make +.PHONY : QuickStudioComponents_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build: QuickStudioComponents_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..5fcdf04 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" + "CMakeFiles/QuickStudioComponents_qmltyperegistration" + "meta_types/qt6quickstudiocomponents_debug_metatypes.json" + "meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen" + "quickstudiocomponents_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..e9d981a --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..9d168b8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..db2f930 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make new file mode 100644 index 0000000..1d511f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make + +_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: qml/QtQuick/Studio/Components/qmldir +_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Components" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp --name qmake_QtQuick_Studio_Components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -MF CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp > CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s + +QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o +QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make +.PHONY : QuickStudioComponents_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build: QuickStudioComponents_resources_1 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend: _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..74b2f81 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_Components.cpp" + "CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" + "CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..1828089 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponents_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..0581efe --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponents_resources_1. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make new file mode 100644 index 0000000..9afa1b4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponents_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make new file mode 100644 index 0000000..74ab7a8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make new file mode 100644 index 0000000..6ef9ffe --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 39 + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..4a873be --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make new file mode 100644 index 0000000..730391c --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make @@ -0,0 +1,119 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make + +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioComponents_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp --name QuickStudioComponents_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp > CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s + +QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o +QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make +.PHONY : QuickStudioComponents_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build: QuickStudioComponents_resources_2 +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend: _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..f4c2dab --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioComponents_raw_qml_0.cpp" + "CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..b68c525 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponents_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..cd4a1e0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponents_resources_2. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make new file mode 100644 index 0000000..8fedd31 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponents_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make new file mode 100644 index 0000000..74ab7a8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make new file mode 100644 index 0000000..e8e794e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make @@ -0,0 +1,148 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponents_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make + +qml/QtQuick/Studio/Components/ArcItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying ArcItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml + +qml/QtQuick/Studio/Components/PieItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying PieItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml + +qml/QtQuick/Studio/Components/TriangleItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying TriangleItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml + +qml/QtQuick/Studio/Components/SvgPathItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying SvgPathItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml + +qml/QtQuick/Studio/Components/EllipseItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying EllipseItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml + +qml/QtQuick/Studio/Components/FlipableItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying FlipableItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml + +qml/QtQuick/Studio/Components/RectangleItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying RectangleItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml + +qml/QtQuick/Studio/Components/RegularPolygonItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying RegularPolygonItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml + +qml/QtQuick/Studio/Components/BorderItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying BorderItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml + +qml/QtQuick/Studio/Components/IsoItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying IsoItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml + +qml/QtQuick/Studio/Components/GroupItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying GroupItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml + +qml/QtQuick/Studio/Components/ArcArrow.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying ArcArrow.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml + +qml/QtQuick/Studio/Components/StraightArrow.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying StraightArrow.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml + +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/ArcArrow.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/ArcItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/BorderItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/EllipseItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/FlipableItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/GroupItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/IsoItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/PieItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/RectangleItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/RegularPolygonItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/StraightArrow.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/SvgPathItem.qml +QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/TriangleItem.qml +QuickStudioComponents_tooling: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make +.PHONY : QuickStudioComponents_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build: QuickStudioComponents_tooling +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..5f6f549 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake @@ -0,0 +1,20 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Components/ArcArrow.qml" + "../../../../../qml/QtQuick/Studio/Components/ArcItem.qml" + "../../../../../qml/QtQuick/Studio/Components/BorderItem.qml" + "../../../../../qml/QtQuick/Studio/Components/EllipseItem.qml" + "../../../../../qml/QtQuick/Studio/Components/FlipableItem.qml" + "../../../../../qml/QtQuick/Studio/Components/GroupItem.qml" + "../../../../../qml/QtQuick/Studio/Components/IsoItem.qml" + "../../../../../qml/QtQuick/Studio/Components/PieItem.qml" + "../../../../../qml/QtQuick/Studio/Components/RectangleItem.qml" + "../../../../../qml/QtQuick/Studio/Components/RegularPolygonItem.qml" + "../../../../../qml/QtQuick/Studio/Components/StraightArrow.qml" + "../../../../../qml/QtQuick/Studio/Components/SvgPathItem.qml" + "../../../../../qml/QtQuick/Studio/Components/TriangleItem.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..80ec708 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponents_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..8384ea6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponents_tooling. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make new file mode 100644 index 0000000..8c6431c --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make @@ -0,0 +1,14 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = 40 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 41 +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..172be68 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make new file mode 100644 index 0000000..1c4b6bd --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp > CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s + +# Object files for target QuickStudioComponentsplugin +QuickStudioComponentsplugin_OBJECTS = \ +"CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" + +# External object files for target QuickStudioComponentsplugin +QuickStudioComponentsplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o +qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make +qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioComponentsplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build: qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..c39d80c --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" + "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.pdb" + "CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioComponentsplugin_autogen.dir/ParseCache.txt" + "QuickStudioComponentsplugin_autogen" + "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" + "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d" + "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..c47072e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make new file mode 100644 index 0000000..739e7cb --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponentsplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..ae38b46 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponentsplugin. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make new file mode 100644 index 0000000..0e880c8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponentsplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make new file mode 100644 index 0000000..91e9308 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt new file mode 100644 index 0000000..cca2e2e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..c3f7cc1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,136 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Components" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make new file mode 100644 index 0000000..826a36e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponentsplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponentsplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen +QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make +.PHONY : QuickStudioComponentsplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build: QuickStudioComponentsplugin_autogen +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..0c026d8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponentsplugin_autogen" + "QuickStudioComponentsplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..dc74414 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponentsplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..bb1b86b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponentsplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make new file mode 100644 index 0000000..08da5aa --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 42 + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..ead194d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make new file mode 100644 index 0000000..0403bc5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp > CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s + +QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o +QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make +.PHONY : QuickStudioComponentsplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build: QuickStudioComponentsplugin_init +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..6538c76 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioComponentsplugin_init_autogen" + "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" + "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..1866e83 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioComponentsplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..9b12eb7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioComponentsplugin_init. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make new file mode 100644 index 0000000..b724a94 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioComponentsplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make new file mode 100644 index 0000000..7f21689 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..b9a54d6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,141 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..acf7eb7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioComponentsplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponentsplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen +QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make +.PHONY : QuickStudioComponentsplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build: QuickStudioComponentsplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..d1d789d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioComponentsplugin_init_autogen" + "QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..6c79ed1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioComponentsplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..038c7a9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioComponentsplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make new file mode 100644 index 0000000..d47fe8b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make + +all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make +.PHONY : all_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build: all_qmllint +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..f57148b --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..4237b7f --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..bbf6441 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make new file mode 100644 index 0000000..c948db5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make + +all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make +.PHONY : all_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build: all_qmllint_json +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..8cb0a83 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..3dec026 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..d95f9ec --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make new file mode 100644 index 0000000..b5401d2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make + +all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make +.PHONY : all_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build: all_qmllint_module +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b170335 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..5e6138d --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..17f8c78 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make new file mode 100644 index 0000000..928a37f --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmltyperegistrations. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make + +all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make +.PHONY : all_qmltyperegistrations + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build: all_qmltyperegistrations +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean + +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake new file mode 100644 index 0000000..83cfb80 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmltyperegistrations.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make new file mode 100644 index 0000000..529926e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmltyperegistrations. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts new file mode 100644 index 0000000..02603d9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmltyperegistrations. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks @@ -0,0 +1 @@ +10 diff --git a/build/_deps/ds-build/src/imports/components/Makefile b/build/_deps/ds-build/src/imports/components/Makefile new file mode 100644 index 0000000..a5cc527 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/Makefile @@ -0,0 +1,1096 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule + +# Convenience name for target. +QuickStudioComponents: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule +.PHONY : QuickStudioComponents + +# fast build rule for target. +QuickStudioComponents/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build +.PHONY : QuickStudioComponents/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule +.PHONY : QuickStudioComponents_automoc_json_extraction + +# fast build rule for target. +QuickStudioComponents_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build +.PHONY : QuickStudioComponents_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule +.PHONY : QuickStudioComponents_qmltyperegistration + +# fast build rule for target. +QuickStudioComponents_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build +.PHONY : QuickStudioComponents_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule + +# Convenience name for target. +all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule +.PHONY : all_qmltyperegistrations + +# fast build rule for target. +all_qmltyperegistrations/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build +.PHONY : all_qmltyperegistrations/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule + +# Convenience name for target. +QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule +.PHONY : QuickStudioComponents_resources_1 + +# fast build rule for target. +QuickStudioComponents_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build +.PHONY : QuickStudioComponents_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule +.PHONY : QuickStudioComponentsplugin + +# fast build rule for target. +QuickStudioComponentsplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build +.PHONY : QuickStudioComponentsplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule +.PHONY : QuickStudioComponents_qmllint + +# fast build rule for target. +QuickStudioComponents_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build +.PHONY : QuickStudioComponents_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule +.PHONY : QuickStudioComponents_qmllint_json + +# fast build rule for target. +QuickStudioComponents_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build +.PHONY : QuickStudioComponents_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule +.PHONY : QuickStudioComponents_qmllint_module + +# fast build rule for target. +QuickStudioComponents_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build +.PHONY : QuickStudioComponents_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule + +# Convenience name for target. +all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule +.PHONY : all_qmllint + +# fast build rule for target. +all_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build +.PHONY : all_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule + +# Convenience name for target. +all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule +.PHONY : all_qmllint_json + +# fast build rule for target. +all_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build +.PHONY : all_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule + +# Convenience name for target. +all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule +.PHONY : all_qmllint_module + +# fast build rule for target. +all_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build +.PHONY : all_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule +.PHONY : QuickStudioComponents_qmlcache + +# fast build rule for target. +QuickStudioComponents_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build +.PHONY : QuickStudioComponents_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule + +# Convenience name for target. +QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule +.PHONY : QuickStudioComponents_resources_2 + +# fast build rule for target. +QuickStudioComponents_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build +.PHONY : QuickStudioComponents_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule +.PHONY : QuickStudioComponentsplugin_init + +# fast build rule for target. +QuickStudioComponentsplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build +.PHONY : QuickStudioComponentsplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule +.PHONY : QuickStudioComponents_autogen + +# fast build rule for target. +QuickStudioComponents_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build +.PHONY : QuickStudioComponents_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule +.PHONY : QuickStudioComponentsplugin_autogen + +# fast build rule for target. +QuickStudioComponentsplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build +.PHONY : QuickStudioComponentsplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule +.PHONY : QuickStudioComponents_qmlcache_autogen + +# fast build rule for target. +QuickStudioComponents_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build +.PHONY : QuickStudioComponents_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule +.PHONY : QuickStudioComponentsplugin_init_autogen + +# fast build rule for target. +QuickStudioComponentsplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build +.PHONY : QuickStudioComponentsplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.o: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.i: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.s: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioComponents_raw_qml_0.o: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioComponents_raw_qml_0.i: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioComponents_raw_qml_0.s: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_Components.o: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_Components.i: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_Components.s: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s + +QuickStudioComponents_autogen/mocs_compilation.o: QuickStudioComponents_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponents_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioComponents_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.o + +QuickStudioComponents_autogen/mocs_compilation.i: QuickStudioComponents_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponents_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioComponents_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.i + +QuickStudioComponents_autogen/mocs_compilation.s: QuickStudioComponents_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponents_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioComponents_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.s + +QuickStudioComponents_qmlcache_autogen/mocs_compilation.o: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioComponents_qmlcache_autogen/mocs_compilation.i: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioComponents_qmlcache_autogen/mocs_compilation.s: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o + +# target to build an object file +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o + +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i + +# target to preprocess a source file +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i + +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s + +# target to generate assembly for a file +QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s +.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s + +QuickStudioComponentsplugin_autogen/mocs_compilation.o: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o + +QuickStudioComponentsplugin_autogen/mocs_compilation.i: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i + +QuickStudioComponentsplugin_autogen/mocs_compilation.s: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s + +QuickStudioComponentsplugin_init.o: QuickStudioComponentsplugin_init.cpp.o +.PHONY : QuickStudioComponentsplugin_init.o + +# target to build an object file +QuickStudioComponentsplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o +.PHONY : QuickStudioComponentsplugin_init.cpp.o + +QuickStudioComponentsplugin_init.i: QuickStudioComponentsplugin_init.cpp.i +.PHONY : QuickStudioComponentsplugin_init.i + +# target to preprocess a source file +QuickStudioComponentsplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i +.PHONY : QuickStudioComponentsplugin_init.cpp.i + +QuickStudioComponentsplugin_init.s: QuickStudioComponentsplugin_init.cpp.s +.PHONY : QuickStudioComponentsplugin_init.s + +# target to generate assembly for a file +QuickStudioComponentsplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s +.PHONY : QuickStudioComponentsplugin_init.cpp.s + +QuickStudioComponentsplugin_init_autogen/mocs_compilation.o: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioComponentsplugin_init_autogen/mocs_compilation.i: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioComponentsplugin_init_autogen/mocs_compilation.s: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s + +quickstudiocomponents_qmltyperegistrations.o: quickstudiocomponents_qmltyperegistrations.cpp.o +.PHONY : quickstudiocomponents_qmltyperegistrations.o + +# target to build an object file +quickstudiocomponents_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o +.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.o + +quickstudiocomponents_qmltyperegistrations.i: quickstudiocomponents_qmltyperegistrations.cpp.i +.PHONY : quickstudiocomponents_qmltyperegistrations.i + +# target to preprocess a source file +quickstudiocomponents_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i +.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.i + +quickstudiocomponents_qmltyperegistrations.s: quickstudiocomponents_qmltyperegistrations.cpp.s +.PHONY : quickstudiocomponents_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudiocomponents_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s +.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioComponents_autogen" + @echo "... QuickStudioComponents_automoc_json_extraction" + @echo "... QuickStudioComponents_qmlcache_autogen" + @echo "... QuickStudioComponents_qmllint" + @echo "... QuickStudioComponents_qmllint_json" + @echo "... QuickStudioComponents_qmllint_module" + @echo "... QuickStudioComponents_qmltyperegistration" + @echo "... QuickStudioComponentsplugin_autogen" + @echo "... QuickStudioComponentsplugin_init_autogen" + @echo "... all_qmllint" + @echo "... all_qmllint_json" + @echo "... all_qmllint_module" + @echo "... all_qmltyperegistrations" + @echo "... QuickStudioComponents" + @echo "... QuickStudioComponents_qmlcache" + @echo "... QuickStudioComponents_resources_1" + @echo "... QuickStudioComponents_resources_2" + @echo "... QuickStudioComponents_tooling" + @echo "... QuickStudioComponentsplugin" + @echo "... QuickStudioComponentsplugin_init" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.s" + @echo "... QuickStudioComponents_autogen/mocs_compilation.o" + @echo "... QuickStudioComponents_autogen/mocs_compilation.i" + @echo "... QuickStudioComponents_autogen/mocs_compilation.s" + @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o" + @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i" + @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s" + @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioComponentsplugin_init.o" + @echo "... QuickStudioComponentsplugin_init.i" + @echo "... QuickStudioComponentsplugin_init.s" + @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudiocomponents_qmltyperegistrations.o" + @echo "... quickstudiocomponents_qmltyperegistrations.i" + @echo "... quickstudiocomponents_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp new file mode 100644 index 0000000..44d2c3a --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_Components(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Components) + +class QtQuick_Studio_ComponentsPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_ComponentsPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_Components; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp new file mode 100644 index 0000000..69c675e --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_ComponentsPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/components/cmake_install.cmake b/build/_deps/ds-build/src/imports/components/cmake_install.cmake new file mode 100644 index 0000000..2595c65 --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json b/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt b/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc new file mode 100644 index 0000000..f02a2c7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc @@ -0,0 +1,50 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml + + + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc new file mode 100644 index 0000000..dcdf124 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp new file mode 100644 index 0000000..ba4db14 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp @@ -0,0 +1,45 @@ +/QtQuick/Studio/Effects/FastBlurItem.qml +/QtQuick/Studio/Effects/GlowItem.qml +/QtQuick/Studio/Effects/ZoomBlurItem.qml +/QtQuick/Studio/Effects/RadialBlurItem.qml +/QtQuick/Studio/Effects/DesaturationItem.qml +/QtQuick/Studio/Effects/SaturationItem.qml +/QtQuick/Studio/Effects/DirectionalBlurItem.qml +/QtQuick/Studio/Effects/ColorOverlayItem.qml +/QtQuick/Studio/Effects/DropShadowItem.qml +/QtQuick/Studio/Effects/ColorizeItem.qml +/QtQuick/Studio/Effects/BrightnessContrastItem.qml +/QtQuick/Studio/Effects/HueSaturationItem.qml +/QtQuick/Studio/Effects/MaskedBlurItem.qml +/QtQuick/Studio/Effects/BlendItem.qml +/QtQuick/Studio/Effects/OpacityMaskItem.qml +/QtQuick/Studio/Effects/MaskItem.qml +/QtQuick/Studio/Effects/RotationItem.qml +/QtQuick/Studio/Effects/GaussianBlurItem.qml +/QtQuick/Studio/Effects/GammaAdjustItem.qml +/QtQuick/Studio/Effects/RecursiveBlurItem.qml +/QtQuick/Studio/Effects/ThresholdMaskItem.qml +/QtQuick/Studio/Effects/LevelAdjustItem.qml +/QtQuick/Studio/Effects/InnerShadowItem.qml +/QtQuick/Studio/Effects/DisplaceItem.qml +/QtQuick/Studio/Effects/BlendEffect.qml +/QtQuick/Studio/Effects/BrightnessContrastEffect.qml +/QtQuick/Studio/Effects/ColorizeEffect.qml +/QtQuick/Studio/Effects/ColorOverlayEffect.qml +/QtQuick/Studio/Effects/DesaturationEffect.qml +/QtQuick/Studio/Effects/DirectionalBlurEffect.qml +/QtQuick/Studio/Effects/DisplaceEffect.qml +/QtQuick/Studio/Effects/DropShadowEffect.qml +/QtQuick/Studio/Effects/FastBlurEffect.qml +/QtQuick/Studio/Effects/GammaAdjustEffect.qml +/QtQuick/Studio/Effects/GaussianBlurEffect.qml +/QtQuick/Studio/Effects/GlowEffect.qml +/QtQuick/Studio/Effects/HueSaturationEffect.qml +/QtQuick/Studio/Effects/InnerShadowEffect.qml +/QtQuick/Studio/Effects/LevelAdjustEffect.qml +/QtQuick/Studio/Effects/MaskedBlurEffect.qml +/QtQuick/Studio/Effects/OpacityMaskEffect.qml +/QtQuick/Studio/Effects/RadialBlurEffect.qml +/QtQuick/Studio/Effects/RecursiveBlurEffect.qml +/QtQuick/Studio/Effects/ThresholdMaskEffect.qml +/QtQuick/Studio/Effects/ZoomBlurEffect.qml diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp new file mode 100644 index 0000000..ec9d65f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp @@ -0,0 +1,56 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp new file mode 100644 index 0000000..4756ccf --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp @@ -0,0 +1,58 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEffects_qmllint.json diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp new file mode 100644 index 0000000..5784122 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +--module +QtQuick.Studio.Effects diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake new file mode 100644 index 0000000..c662ea0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake @@ -0,0 +1,71 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make new file mode 100644 index 0000000..0d231a4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make @@ -0,0 +1,1369 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: _deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json + +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes --import-name=QtQuick.Studio.Effects --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated/QuickStudioEffects.qmltypes + +qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/FastBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ZoomBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RadialBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DesaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/SaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DirectionalBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorOverlayItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DropShadowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorizeItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BrightnessContrastItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/HueSaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskedBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BlendItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/OpacityMaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RotationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GaussianBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GammaAdjustItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RecursiveBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ThresholdMaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/LevelAdjustItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/InnerShadowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Generating .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DisplaceItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Generating .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BlendEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Generating .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BrightnessContrastEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Generating .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorizeEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Generating .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorOverlayEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Generating .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DesaturationEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Generating .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DirectionalBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Generating .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DisplaceEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Generating .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DropShadowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Generating .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/FastBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Generating .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GammaAdjustEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Generating .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GaussianBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Generating .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Generating .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/HueSaturationEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Generating .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/InnerShadowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Generating .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/LevelAdjustEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Generating .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskedBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Generating .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/OpacityMaskEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Generating .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RadialBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Generating .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RecursiveBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Generating .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ThresholdMaskEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Generating .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ZoomBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml + +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Generating meta_types/qt6quickstudioeffects_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_53) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_54) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_55) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_56) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_57) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_58) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_59) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_60) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_61) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_62) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_63) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_64) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_65) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_66) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_67) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_68) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_69) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_70) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_71) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_72) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_73) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_74) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_75) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_76) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_77) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_78) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_79) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_80) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_81) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_82) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_83) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_84) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_85) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_86) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_87) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_88) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_89) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_90) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_91) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_92) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_93) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_94) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_95) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s + +# Object files for target QuickStudioEffects +QuickStudioEffects_OBJECTS = \ +"CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" \ +"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" + +# External object files for target QuickStudioEffects +QuickStudioEffects_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make +_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_96) "Linking CXX static library libQuickStudioEffects.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEffects.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build: _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake new file mode 100644 index 0000000..c0eff9c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake @@ -0,0 +1,155 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" + ".rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" + ".rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" + "CMakeFiles/QuickStudioEffects_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt" + "QuickStudioEffects_autogen" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d" + "libQuickStudioEffects.a" + "libQuickStudioEffects.pdb" + "meta_types/qt6quickstudioeffects_debug_metatypes.json" + "meta_types/qt6quickstudioeffects_debug_metatypes.json.gen" + "quickstudioeffects_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffects.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..a8a6514 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioEffects.a" +) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make new file mode 100644 index 0000000..5f7fecd --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffects. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts new file mode 100644 index 0000000..c5ee4bb --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffects. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make new file mode 100644 index 0000000..9f6a1c2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffects. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make new file mode 100644 index 0000000..ae1fb63 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt new file mode 100644 index 0000000..61073eb --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEffects.a CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEffects.a diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make new file mode 100644 index 0000000..622f217 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make @@ -0,0 +1,97 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 43 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = 44 +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 45 +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = 46 +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = +CMAKE_PROGRESS_25 = +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = +CMAKE_PROGRESS_28 = 47 +CMAKE_PROGRESS_29 = +CMAKE_PROGRESS_30 = +CMAKE_PROGRESS_31 = +CMAKE_PROGRESS_32 = +CMAKE_PROGRESS_33 = +CMAKE_PROGRESS_34 = 48 +CMAKE_PROGRESS_35 = +CMAKE_PROGRESS_36 = +CMAKE_PROGRESS_37 = +CMAKE_PROGRESS_38 = +CMAKE_PROGRESS_39 = +CMAKE_PROGRESS_40 = 49 +CMAKE_PROGRESS_41 = +CMAKE_PROGRESS_42 = +CMAKE_PROGRESS_43 = +CMAKE_PROGRESS_44 = +CMAKE_PROGRESS_45 = +CMAKE_PROGRESS_46 = 50 +CMAKE_PROGRESS_47 = +CMAKE_PROGRESS_48 = +CMAKE_PROGRESS_49 = +CMAKE_PROGRESS_50 = +CMAKE_PROGRESS_51 = +CMAKE_PROGRESS_52 = +CMAKE_PROGRESS_53 = 51 +CMAKE_PROGRESS_54 = +CMAKE_PROGRESS_55 = +CMAKE_PROGRESS_56 = +CMAKE_PROGRESS_57 = +CMAKE_PROGRESS_58 = +CMAKE_PROGRESS_59 = 52 +CMAKE_PROGRESS_60 = +CMAKE_PROGRESS_61 = +CMAKE_PROGRESS_62 = +CMAKE_PROGRESS_63 = +CMAKE_PROGRESS_64 = +CMAKE_PROGRESS_65 = 53 +CMAKE_PROGRESS_66 = +CMAKE_PROGRESS_67 = +CMAKE_PROGRESS_68 = +CMAKE_PROGRESS_69 = +CMAKE_PROGRESS_70 = +CMAKE_PROGRESS_71 = 54 +CMAKE_PROGRESS_72 = +CMAKE_PROGRESS_73 = +CMAKE_PROGRESS_74 = +CMAKE_PROGRESS_75 = +CMAKE_PROGRESS_76 = +CMAKE_PROGRESS_77 = +CMAKE_PROGRESS_78 = 55 +CMAKE_PROGRESS_79 = +CMAKE_PROGRESS_80 = +CMAKE_PROGRESS_81 = +CMAKE_PROGRESS_82 = +CMAKE_PROGRESS_83 = +CMAKE_PROGRESS_84 = 56 +CMAKE_PROGRESS_85 = +CMAKE_PROGRESS_86 = +CMAKE_PROGRESS_87 = +CMAKE_PROGRESS_88 = +CMAKE_PROGRESS_89 = +CMAKE_PROGRESS_90 = 57 +CMAKE_PROGRESS_91 = +CMAKE_PROGRESS_92 = +CMAKE_PROGRESS_93 = +CMAKE_PROGRESS_94 = +CMAKE_PROGRESS_95 = +CMAKE_PROGRESS_96 = 58 + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ac4be3e --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json @@ -0,0 +1,193 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make new file mode 100644 index 0000000..681408f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json Debug + +QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen +QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make +.PHONY : QuickStudioEffects_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build: QuickStudioEffects_autogen +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..71392ef --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffects_autogen" + "QuickStudioEffects_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..4b4a7d1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..8306d0f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..0cdfa31 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include + +QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction +QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioEffects_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build: QuickStudioEffects_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..f746c00 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffects_automoc_json_extraction" + "meta_types/QuickStudioEffects_json_file_list.txt" + "meta_types/QuickStudioEffects_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..3369415 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..caedbff --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..b245f7c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make new file mode 100644 index 0000000..7476ca9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEffects --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp > CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s + +QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o +QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make +.PHONY : QuickStudioEffects_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build: QuickStudioEffects_qmlcache +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..efdcd89 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioEffects_qmlcache_autogen" + "CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..1921f2b --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffects_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..c3fda78 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffects_qmlcache. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make new file mode 100644 index 0000000..710674e --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffects_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make new file mode 100644 index 0000000..705ebcf --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..f89f59a --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,205 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..8fc71be --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffects_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEffects --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp + +QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp +QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen +QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioEffects_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build: QuickStudioEffects_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..0aef354 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEffects_qmlcache_autogen" + "QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..16d2da5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..2bd62a1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..5b6b61f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 59 + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make new file mode 100644 index 0000000..d1123b9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make @@ -0,0 +1,133 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp + +QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint +QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make +.PHONY : QuickStudioEffects_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build: QuickStudioEffects_qmllint +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..4cc6e47 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffects_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..d2e144f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..3cd47d5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make new file mode 100644 index 0000000..94014ca --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make @@ -0,0 +1,133 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp + +QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json +QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make +.PHONY : QuickStudioEffects_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build: QuickStudioEffects_qmllint_json +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..d50f02d --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffects_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..1837ea4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..642ea1b --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make new file mode 100644 index 0000000..4fb5f97 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make @@ -0,0 +1,133 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp + +QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module +QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make +.PHONY : QuickStudioEffects_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build: QuickStudioEffects_qmllint_module +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b0be322 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffects_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..031f266 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..9243cb5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..ce60c07 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..697f224 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes + +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes --import-name=QtQuick.Studio.Effects --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated/QuickStudioEffects.qmltypes + +qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes + +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeffects_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: _deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEffects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json + +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp +QuickStudioEffects_qmltyperegistration: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make +.PHONY : QuickStudioEffects_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build: QuickStudioEffects_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..599688e --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" + "CMakeFiles/QuickStudioEffects_qmltyperegistration" + "meta_types/qt6quickstudioeffects_debug_metatypes.json" + "meta_types/qt6quickstudioeffects_debug_metatypes.json.gen" + "quickstudioeffects_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..d80f004 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..a8464f5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..4e80ee6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make new file mode 100644 index 0000000..d4deb14 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: qml/QtQuick/Studio/Effects/qmldir +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Effects" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp --name qmake_QtQuick_Studio_Effects /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -MF CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp > CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s + +QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o +QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make +.PHONY : QuickStudioEffects_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build: QuickStudioEffects_resources_1 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..3a66a72 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_Effects.cpp" + "CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" + "CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..6edf9db --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffects_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..00afc16 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffects_resources_1. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make new file mode 100644 index 0000000..2cde21f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffects_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make new file mode 100644 index 0000000..99cd891 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..421e92e --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make new file mode 100644 index 0000000..84f463c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make @@ -0,0 +1,151 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEffects_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp --name QuickStudioEffects_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp > CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s + +QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o +QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make +.PHONY : QuickStudioEffects_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build: QuickStudioEffects_resources_2 +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..a0a9ca5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioEffects_raw_qml_0.cpp" + "CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..937fc22 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffects_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..41b1a02 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffects_resources_2. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make new file mode 100644 index 0000000..9ea1259 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffects_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make new file mode 100644 index 0000000..99cd891 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make new file mode 100644 index 0000000..ab9fbad --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 60 +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make new file mode 100644 index 0000000..8f876a0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make @@ -0,0 +1,308 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffects_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make + +qml/QtQuick/Studio/Effects/FastBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying FastBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml + +qml/QtQuick/Studio/Effects/GlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying GlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml + +qml/QtQuick/Studio/Effects/ZoomBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying ZoomBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml + +qml/QtQuick/Studio/Effects/RadialBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying RadialBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml + +qml/QtQuick/Studio/Effects/DesaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying DesaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml + +qml/QtQuick/Studio/Effects/SaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying SaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml + +qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying DirectionalBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml + +qml/QtQuick/Studio/Effects/ColorOverlayItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying ColorOverlayItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml + +qml/QtQuick/Studio/Effects/DropShadowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying DropShadowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml + +qml/QtQuick/Studio/Effects/ColorizeItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying ColorizeItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml + +qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying BrightnessContrastItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml + +qml/QtQuick/Studio/Effects/HueSaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying HueSaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml + +qml/QtQuick/Studio/Effects/MaskedBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying MaskedBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml + +qml/QtQuick/Studio/Effects/BlendItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying BlendItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml + +qml/QtQuick/Studio/Effects/OpacityMaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying OpacityMaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml + +qml/QtQuick/Studio/Effects/MaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying MaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml + +qml/QtQuick/Studio/Effects/RotationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying RotationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml + +qml/QtQuick/Studio/Effects/GaussianBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying GaussianBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml + +qml/QtQuick/Studio/Effects/GammaAdjustItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying GammaAdjustItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml + +qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying RecursiveBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml + +qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying ThresholdMaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml + +qml/QtQuick/Studio/Effects/LevelAdjustItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying LevelAdjustItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml + +qml/QtQuick/Studio/Effects/InnerShadowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying InnerShadowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml + +qml/QtQuick/Studio/Effects/DisplaceItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying DisplaceItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml + +qml/QtQuick/Studio/Effects/BlendEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Copying BlendEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml + +qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Copying BrightnessContrastEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml + +qml/QtQuick/Studio/Effects/ColorizeEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Copying ColorizeEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml + +qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Copying ColorOverlayEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml + +qml/QtQuick/Studio/Effects/DesaturationEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Copying DesaturationEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml + +qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Copying DirectionalBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml + +qml/QtQuick/Studio/Effects/DisplaceEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Copying DisplaceEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml + +qml/QtQuick/Studio/Effects/DropShadowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Copying DropShadowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml + +qml/QtQuick/Studio/Effects/FastBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Copying FastBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml + +qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Copying GammaAdjustEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml + +qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Copying GaussianBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml + +qml/QtQuick/Studio/Effects/GlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Copying GlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml + +qml/QtQuick/Studio/Effects/HueSaturationEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Copying HueSaturationEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml + +qml/QtQuick/Studio/Effects/InnerShadowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Copying InnerShadowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml + +qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Copying LevelAdjustEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml + +qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Copying MaskedBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml + +qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Copying OpacityMaskEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml + +qml/QtQuick/Studio/Effects/RadialBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Copying RadialBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml + +qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Copying RecursiveBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml + +qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Copying ThresholdMaskEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml + +qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Copying ZoomBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml + +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BlendEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BlendItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorOverlayItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorizeEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorizeItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DesaturationEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DesaturationItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DisplaceEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DisplaceItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DropShadowEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DropShadowItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/FastBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/FastBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GammaAdjustItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GaussianBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GlowEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GlowItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/HueSaturationEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/HueSaturationItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/InnerShadowEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/InnerShadowItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/LevelAdjustItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskedBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/OpacityMaskItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RadialBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RadialBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RotationItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/SaturationItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml +QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ZoomBlurItem.qml +QuickStudioEffects_tooling: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make +.PHONY : QuickStudioEffects_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build: QuickStudioEffects_tooling +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..967a920 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake @@ -0,0 +1,52 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Effects/BlendEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/BlendItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/ColorOverlayItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/ColorizeEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/ColorizeItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/DesaturationEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/DesaturationItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/DisplaceEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/DisplaceItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/DropShadowEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/DropShadowItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/FastBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/FastBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/GammaAdjustItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/GaussianBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/GlowEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/GlowItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/HueSaturationEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/HueSaturationItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/InnerShadowEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/InnerShadowItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/LevelAdjustItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/MaskItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/MaskedBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/OpacityMaskItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/RadialBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/RadialBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/RotationItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/SaturationItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml" + "../../../../../qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml" + "../../../../../qml/QtQuick/Studio/Effects/ZoomBlurItem.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..75d14d5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffects_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..94ffd7f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffects_tooling. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make new file mode 100644 index 0000000..0adb66b --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make @@ -0,0 +1,46 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = 61 +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = 62 +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = 63 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = 64 +CMAKE_PROGRESS_25 = +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = +CMAKE_PROGRESS_30 = 65 +CMAKE_PROGRESS_31 = +CMAKE_PROGRESS_32 = +CMAKE_PROGRESS_33 = +CMAKE_PROGRESS_34 = +CMAKE_PROGRESS_35 = +CMAKE_PROGRESS_36 = 66 +CMAKE_PROGRESS_37 = +CMAKE_PROGRESS_38 = +CMAKE_PROGRESS_39 = +CMAKE_PROGRESS_40 = +CMAKE_PROGRESS_41 = +CMAKE_PROGRESS_42 = +CMAKE_PROGRESS_43 = 67 +CMAKE_PROGRESS_44 = +CMAKE_PROGRESS_45 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..cfcef80 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make new file mode 100644 index 0000000..2fbcca2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp > CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s + +# Object files for target QuickStudioEffectsplugin +QuickStudioEffectsplugin_OBJECTS = \ +"CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" + +# External object files for target QuickStudioEffectsplugin +QuickStudioEffectsplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o +qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make +qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEffectsplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build: qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..7ca8e81 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" + "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.pdb" + "CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEffectsplugin_autogen.dir/ParseCache.txt" + "QuickStudioEffectsplugin_autogen" + "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" + "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d" + "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..5755d76 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make new file mode 100644 index 0000000..f5099df --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffectsplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..d487bc5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffectsplugin. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make new file mode 100644 index 0000000..b0db5d4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffectsplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make new file mode 100644 index 0000000..ca60528 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt new file mode 100644 index 0000000..cf96272 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d0cfec3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,200 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Effects" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make new file mode 100644 index 0000000..70fee6c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffectsplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffectsplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen +QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make +.PHONY : QuickStudioEffectsplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build: QuickStudioEffectsplugin_autogen +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..137e7e4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffectsplugin_autogen" + "QuickStudioEffectsplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..bffc225 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffectsplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..09a4239 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffectsplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make new file mode 100644 index 0000000..a9dc8c8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 68 + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..9ef907b --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make new file mode 100644 index 0000000..f98fd97 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp > CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s + +QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o +QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make +.PHONY : QuickStudioEffectsplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build: QuickStudioEffectsplugin_init +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..cc7617f --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioEffectsplugin_init_autogen" + "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" + "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..8d026ce --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEffectsplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..27f5f4c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEffectsplugin_init. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make new file mode 100644 index 0000000..f8b0f69 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEffectsplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make new file mode 100644 index 0000000..cd24782 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..164550a --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,205 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..84aa751 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEffectsplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffectsplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen +QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make +.PHONY : QuickStudioEffectsplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build: QuickStudioEffectsplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..4af680e --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEffectsplugin_init_autogen" + "QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..e6b161c --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEffectsplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..e94f640 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEffectsplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks new file mode 100644 index 0000000..6f4247a --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks @@ -0,0 +1 @@ +26 diff --git a/build/_deps/ds-build/src/imports/effects_qt6/Makefile b/build/_deps/ds-build/src/imports/effects_qt6/Makefile new file mode 100644 index 0000000..b3a49b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/Makefile @@ -0,0 +1,1900 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule + +# Convenience name for target. +QuickStudioEffects: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule +.PHONY : QuickStudioEffects + +# fast build rule for target. +QuickStudioEffects/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build +.PHONY : QuickStudioEffects/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEffects_automoc_json_extraction + +# fast build rule for target. +QuickStudioEffects_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build +.PHONY : QuickStudioEffects_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule +.PHONY : QuickStudioEffects_qmltyperegistration + +# fast build rule for target. +QuickStudioEffects_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build +.PHONY : QuickStudioEffects_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule +.PHONY : QuickStudioEffects_resources_1 + +# fast build rule for target. +QuickStudioEffects_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build +.PHONY : QuickStudioEffects_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule +.PHONY : QuickStudioEffectsplugin + +# fast build rule for target. +QuickStudioEffectsplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build +.PHONY : QuickStudioEffectsplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule +.PHONY : QuickStudioEffects_qmllint + +# fast build rule for target. +QuickStudioEffects_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build +.PHONY : QuickStudioEffects_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule +.PHONY : QuickStudioEffects_qmllint_json + +# fast build rule for target. +QuickStudioEffects_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build +.PHONY : QuickStudioEffects_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule +.PHONY : QuickStudioEffects_qmllint_module + +# fast build rule for target. +QuickStudioEffects_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build +.PHONY : QuickStudioEffects_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule +.PHONY : QuickStudioEffects_qmlcache + +# fast build rule for target. +QuickStudioEffects_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build +.PHONY : QuickStudioEffects_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule +.PHONY : QuickStudioEffects_resources_2 + +# fast build rule for target. +QuickStudioEffects_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build +.PHONY : QuickStudioEffects_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule +.PHONY : QuickStudioEffectsplugin_init + +# fast build rule for target. +QuickStudioEffectsplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build +.PHONY : QuickStudioEffectsplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule +.PHONY : QuickStudioEffects_autogen + +# fast build rule for target. +QuickStudioEffects_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build +.PHONY : QuickStudioEffects_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule +.PHONY : QuickStudioEffectsplugin_autogen + +# fast build rule for target. +QuickStudioEffectsplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build +.PHONY : QuickStudioEffectsplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEffects_qmlcache_autogen + +# fast build rule for target. +QuickStudioEffects_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build +.PHONY : QuickStudioEffects_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule +.PHONY : QuickStudioEffectsplugin_init_autogen + +# fast build rule for target. +QuickStudioEffectsplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build +.PHONY : QuickStudioEffectsplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioEffects_raw_qml_0.o: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioEffects_raw_qml_0.i: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioEffects_raw_qml_0.s: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_Effects.o: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_Effects.i: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_Effects.s: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s + +QuickStudioEffects_autogen/mocs_compilation.o: QuickStudioEffects_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffects_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEffects_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.o + +QuickStudioEffects_autogen/mocs_compilation.i: QuickStudioEffects_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffects_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEffects_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.i + +QuickStudioEffects_autogen/mocs_compilation.s: QuickStudioEffects_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffects_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEffects_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.s + +QuickStudioEffects_qmlcache_autogen/mocs_compilation.o: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioEffects_qmlcache_autogen/mocs_compilation.i: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioEffects_qmlcache_autogen/mocs_compilation.s: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o + +# target to build an object file +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o + +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i + +# target to preprocess a source file +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i + +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s + +# target to generate assembly for a file +QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s +.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s + +QuickStudioEffectsplugin_autogen/mocs_compilation.o: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o + +QuickStudioEffectsplugin_autogen/mocs_compilation.i: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i + +QuickStudioEffectsplugin_autogen/mocs_compilation.s: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s + +QuickStudioEffectsplugin_init.o: QuickStudioEffectsplugin_init.cpp.o +.PHONY : QuickStudioEffectsplugin_init.o + +# target to build an object file +QuickStudioEffectsplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o +.PHONY : QuickStudioEffectsplugin_init.cpp.o + +QuickStudioEffectsplugin_init.i: QuickStudioEffectsplugin_init.cpp.i +.PHONY : QuickStudioEffectsplugin_init.i + +# target to preprocess a source file +QuickStudioEffectsplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i +.PHONY : QuickStudioEffectsplugin_init.cpp.i + +QuickStudioEffectsplugin_init.s: QuickStudioEffectsplugin_init.cpp.s +.PHONY : QuickStudioEffectsplugin_init.s + +# target to generate assembly for a file +QuickStudioEffectsplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s +.PHONY : QuickStudioEffectsplugin_init.cpp.s + +QuickStudioEffectsplugin_init_autogen/mocs_compilation.o: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioEffectsplugin_init_autogen/mocs_compilation.i: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioEffectsplugin_init_autogen/mocs_compilation.s: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s + +quickstudioeffects_qmltyperegistrations.o: quickstudioeffects_qmltyperegistrations.cpp.o +.PHONY : quickstudioeffects_qmltyperegistrations.o + +# target to build an object file +quickstudioeffects_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o +.PHONY : quickstudioeffects_qmltyperegistrations.cpp.o + +quickstudioeffects_qmltyperegistrations.i: quickstudioeffects_qmltyperegistrations.cpp.i +.PHONY : quickstudioeffects_qmltyperegistrations.i + +# target to preprocess a source file +quickstudioeffects_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i +.PHONY : quickstudioeffects_qmltyperegistrations.cpp.i + +quickstudioeffects_qmltyperegistrations.s: quickstudioeffects_qmltyperegistrations.cpp.s +.PHONY : quickstudioeffects_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudioeffects_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s +.PHONY : quickstudioeffects_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioEffects_autogen" + @echo "... QuickStudioEffects_automoc_json_extraction" + @echo "... QuickStudioEffects_qmlcache_autogen" + @echo "... QuickStudioEffects_qmllint" + @echo "... QuickStudioEffects_qmllint_json" + @echo "... QuickStudioEffects_qmllint_module" + @echo "... QuickStudioEffects_qmltyperegistration" + @echo "... QuickStudioEffectsplugin_autogen" + @echo "... QuickStudioEffectsplugin_init_autogen" + @echo "... QuickStudioEffects" + @echo "... QuickStudioEffects_qmlcache" + @echo "... QuickStudioEffects_resources_1" + @echo "... QuickStudioEffects_resources_2" + @echo "... QuickStudioEffects_tooling" + @echo "... QuickStudioEffectsplugin" + @echo "... QuickStudioEffectsplugin_init" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.s" + @echo "... QuickStudioEffects_autogen/mocs_compilation.o" + @echo "... QuickStudioEffects_autogen/mocs_compilation.i" + @echo "... QuickStudioEffects_autogen/mocs_compilation.s" + @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o" + @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i" + @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s" + @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioEffectsplugin_init.o" + @echo "... QuickStudioEffectsplugin_init.i" + @echo "... QuickStudioEffectsplugin_init.s" + @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudioeffects_qmltyperegistrations.o" + @echo "... quickstudioeffects_qmltyperegistrations.i" + @echo "... quickstudioeffects_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp new file mode 100644 index 0000000..30a0655 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_Effects(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Effects) + +class QtQuick_Studio_EffectsPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_EffectsPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_Effects; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp new file mode 100644 index 0000000..1f886c7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_EffectsPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake b/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake new file mode 100644 index 0000000..8913971 --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json b/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt b/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc new file mode 100644 index 0000000..13c7c40 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc @@ -0,0 +1,29 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp new file mode 100644 index 0000000..ae608d9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp @@ -0,0 +1,23 @@ +/FlowView/DefaultFlowEffect.qml +/FlowView/SwipeInteraction.qml +/FlowView/FlowEffect.qml +/FlowView/FlowFadeEffect.qml +/FlowView/FlowPushLeftEffect.qml +/FlowView/FlowPushRightEffect.qml +/FlowView/FlowSlideDownEffect.qml +/FlowView/FlowSlideLeftEffect.qml +/FlowView/FlowSlideRightEffect.qml +/FlowView/FlowSlideUpEffect.qml +/FlowView/FlowMoveEffect.qml +/FlowView/FlowPushEffect.qml +/FlowView/FlowTransition.qml +/FlowView/FlowTransitionList.qml +/FlowView/FlowView.qml +/FlowView/FlowPushUpEffect.qml +/FlowView/FlowItem.qml +/FlowView/FlowDecision.qml +/FlowView/FlowWildcard.qml +/FlowView/FlowActionArea.qml +/FlowView/FlowState.qml +/FlowView/+DesignMode/FlowItem.qml +/FlowView/+DesignMode/FlowView.qml diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp new file mode 100644 index 0000000..c397728 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp @@ -0,0 +1,32 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp new file mode 100644 index 0000000..7da444b --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp @@ -0,0 +1,34 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/FlowView_qmllint.json diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp new file mode 100644 index 0000000..194d44a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp @@ -0,0 +1,10 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +--module +FlowView diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake new file mode 100644 index 0000000..69bcab9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake @@ -0,0 +1,49 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make new file mode 100644 index 0000000..da6db15 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make @@ -0,0 +1,752 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make + +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: _deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json + +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes --import-name=FlowView --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated/FlowView.qmltypes + +qml/FlowView/FlowView.qmltypes: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/FlowView/FlowView.qmltypes + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/DefaultFlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/SwipeInteraction.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/FlowView_FlowEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowFadeEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushLeftEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushRightEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideDownEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideLeftEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideRightEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideUpEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowMoveEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/FlowView_FlowTransition_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowTransition.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowTransitionList.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/FlowView_FlowView_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowView.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushUpEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/FlowView_FlowItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/FlowView_FlowDecision_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowDecision.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowWildcard.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowActionArea.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/FlowView_FlowState_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowState.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/+DesignMode/FlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: qml/FlowView/FlowView.qmltypes +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: qml/FlowView/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/+DesignMode/FlowView.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml + +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Generating meta_types/qt6flowview_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp > CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -MF CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp > CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s + +# Object files for target FlowView +FlowView_OBJECTS = \ +"CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" \ +"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" + +# External object files for target FlowView +FlowView_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make +_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Linking CXX static library libFlowView.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FlowView.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build: _deps/ds-build/src/imports/flowview/libFlowView.a +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: qml/FlowView/FlowView.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake new file mode 100644 index 0000000..8f5fb72 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake @@ -0,0 +1,89 @@ +file(REMOVE_RECURSE + "../../../../../qml/FlowView/FlowView.qmltypes" + ".rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" + ".rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" + ".rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" + ".rcc/qmlcache/FlowView_FlowDecision_qml.cpp" + ".rcc/qmlcache/FlowView_FlowEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowItem_qml.cpp" + ".rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" + ".rcc/qmlcache/FlowView_FlowState_qml.cpp" + ".rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" + ".rcc/qmlcache/FlowView_FlowTransition_qml.cpp" + ".rcc/qmlcache/FlowView_FlowView_qml.cpp" + ".rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" + ".rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" + "CMakeFiles/FlowView_autogen.dir/AutogenUsed.txt" + "CMakeFiles/FlowView_autogen.dir/ParseCache.txt" + "FlowView_autogen" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" + "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d" + "CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" + "CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" + "CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d" + "flowview_qmltyperegistrations.cpp" + "libFlowView.a" + "libFlowView.pdb" + "meta_types/qt6flowview_debug_metatypes.json" + "meta_types/qt6flowview_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FlowView.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..85d999b --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libFlowView.a" +) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make new file mode 100644 index 0000000..be2242c --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FlowView. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts new file mode 100644 index 0000000..6ba481a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FlowView. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make new file mode 100644 index 0000000..1137a8b --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FlowView. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make new file mode 100644 index 0000000..0f7c1a4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt new file mode 100644 index 0000000..787414d --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libFlowView.a CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libFlowView.a diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make new file mode 100644 index 0000000..68d13f3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make @@ -0,0 +1,53 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = 14 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 15 +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = +CMAKE_PROGRESS_23 = 17 +CMAKE_PROGRESS_24 = +CMAKE_PROGRESS_25 = +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = 18 +CMAKE_PROGRESS_30 = +CMAKE_PROGRESS_31 = +CMAKE_PROGRESS_32 = +CMAKE_PROGRESS_33 = +CMAKE_PROGRESS_34 = +CMAKE_PROGRESS_35 = 19 +CMAKE_PROGRESS_36 = +CMAKE_PROGRESS_37 = +CMAKE_PROGRESS_38 = +CMAKE_PROGRESS_39 = +CMAKE_PROGRESS_40 = +CMAKE_PROGRESS_41 = 20 +CMAKE_PROGRESS_42 = +CMAKE_PROGRESS_43 = +CMAKE_PROGRESS_44 = +CMAKE_PROGRESS_45 = +CMAKE_PROGRESS_46 = +CMAKE_PROGRESS_47 = +CMAKE_PROGRESS_48 = 21 +CMAKE_PROGRESS_49 = +CMAKE_PROGRESS_50 = +CMAKE_PROGRESS_51 = +CMAKE_PROGRESS_52 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..48cb2ae --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json @@ -0,0 +1,145 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make new file mode 100644 index 0000000..4c56bcc --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json Debug + +FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen +FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make +.PHONY : FlowView_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build: FlowView_autogen +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..9c451c5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowView_autogen" + "FlowView_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..dc9306a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..489309e --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..c54b9c0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include + +FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction +FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make +.PHONY : FlowView_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build: FlowView_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..3fbc41a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowView_automoc_json_extraction" + "meta_types/FlowView_json_file_list.txt" + "meta_types/FlowView_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..5e63eec --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..3ecb04d --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..9e6c9ba --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 22 + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..89246b3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make new file mode 100644 index 0000000..c654aac --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make @@ -0,0 +1,122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/FlowView_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_FlowView --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -MF CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp > CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s + +FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o +FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o +FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make +.PHONY : FlowView_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build: FlowView_qmlcache +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..62e3a63 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/FlowView_qmlcache_loader.cpp" + "CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/FlowView_qmlcache_autogen.dir/ParseCache.txt" + "FlowView_qmlcache_autogen" + "CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" + "CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d" + "CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FlowView_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..7b37608 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FlowView_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..6c4d200 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FlowView_qmlcache. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make new file mode 100644 index 0000000..1357e67 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FlowView_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make new file mode 100644 index 0000000..4c9c614 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..a406b76 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,157 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..afe5561 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowView_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp +_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/FlowView_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_FlowView --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp + +FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp +FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen +FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make +.PHONY : FlowView_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build: FlowView_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..6289740 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/FlowView_qmlcache_loader.cpp" + "CMakeFiles/FlowView_qmlcache_autogen" + "FlowView_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..5a9a161 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..0d07e5a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make new file mode 100644 index 0000000..b3e7ff3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp + +FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint +FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make +.PHONY : FlowView_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build: FlowView_qmllint +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..755db1e --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowView_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..a8c9025 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..ad4668d --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_qmllint. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make new file mode 100644 index 0000000..62362ab --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp + +FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json +FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make +.PHONY : FlowView_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build: FlowView_qmllint_json +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..a12497f --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowView_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..fe77e11 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..760ff96 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make new file mode 100644 index 0000000..9b26505 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp + +FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module +FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make +.PHONY : FlowView_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build: FlowView_qmllint_module +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..92cb532 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowView_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..83d2401 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..fdc69d2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..26acd33 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..eed5842 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration: qml/FlowView/FlowView.qmltypes + +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes --import-name=FlowView --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated/FlowView.qmltypes + +qml/FlowView/FlowView.qmltypes: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/FlowView/FlowView.qmltypes + +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6flowview_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: _deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target FlowView" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json + +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen +FlowView_qmltyperegistration: qml/FlowView/FlowView.qmltypes +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make +.PHONY : FlowView_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build: FlowView_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..24927e1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/FlowView/FlowView.qmltypes" + "CMakeFiles/FlowView_qmltyperegistration" + "flowview_qmltyperegistrations.cpp" + "meta_types/qt6flowview_debug_metatypes.json" + "meta_types/qt6flowview_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..fe8373f --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..c2d58ed --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..e1bec7d --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 23 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..c25c669 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make new file mode 100644 index 0000000..8718844 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make @@ -0,0 +1,130 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make + +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource FlowView_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp --name FlowView_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -MF CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp > CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s + +FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o +FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make +.PHONY : FlowView_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build: FlowView_resources_1 +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..db2c774 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_FlowView_raw_qml_0.cpp" + "CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" + "CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FlowView_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..8ec3219 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FlowView_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..fdcef10 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FlowView_resources_1. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make new file mode 100644 index 0000000..6f027a2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FlowView_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make new file mode 100644 index 0000000..5037b29 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make new file mode 100644 index 0000000..d199cf2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make @@ -0,0 +1,203 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowView_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make + +qml/FlowView/DefaultFlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying DefaultFlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml + +qml/FlowView/SwipeInteraction.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying SwipeInteraction.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml + +qml/FlowView/FlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying FlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml + +qml/FlowView/FlowFadeEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying FlowFadeEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml + +qml/FlowView/FlowPushLeftEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying FlowPushLeftEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml + +qml/FlowView/FlowPushRightEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying FlowPushRightEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml + +qml/FlowView/FlowSlideDownEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying FlowSlideDownEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml + +qml/FlowView/FlowSlideLeftEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying FlowSlideLeftEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml + +qml/FlowView/FlowSlideRightEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying FlowSlideRightEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml + +qml/FlowView/FlowSlideUpEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying FlowSlideUpEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml + +qml/FlowView/FlowMoveEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying FlowMoveEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml + +qml/FlowView/FlowPushEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying FlowPushEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml + +qml/FlowView/FlowTransition.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying FlowTransition.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml + +qml/FlowView/FlowTransitionList.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying FlowTransitionList.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml + +qml/FlowView/FlowView.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying FlowView.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml + +qml/FlowView/FlowPushUpEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying FlowPushUpEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml + +qml/FlowView/FlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying FlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml + +qml/FlowView/FlowDecision.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying FlowDecision.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml + +qml/FlowView/FlowWildcard.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying FlowWildcard.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml + +qml/FlowView/FlowActionArea.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying FlowActionArea.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml + +qml/FlowView/FlowState.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying FlowState.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml + +qml/FlowView/+DesignMode/FlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying +DesignMode/FlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml + +qml/FlowView/+DesignMode/FlowView.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying +DesignMode/FlowView.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml + +qml/FlowView/qmldir: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying qmldir to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir + +FlowView_tooling: qml/FlowView/+DesignMode/FlowItem.qml +FlowView_tooling: qml/FlowView/+DesignMode/FlowView.qml +FlowView_tooling: qml/FlowView/DefaultFlowEffect.qml +FlowView_tooling: qml/FlowView/FlowActionArea.qml +FlowView_tooling: qml/FlowView/FlowDecision.qml +FlowView_tooling: qml/FlowView/FlowEffect.qml +FlowView_tooling: qml/FlowView/FlowFadeEffect.qml +FlowView_tooling: qml/FlowView/FlowItem.qml +FlowView_tooling: qml/FlowView/FlowMoveEffect.qml +FlowView_tooling: qml/FlowView/FlowPushEffect.qml +FlowView_tooling: qml/FlowView/FlowPushLeftEffect.qml +FlowView_tooling: qml/FlowView/FlowPushRightEffect.qml +FlowView_tooling: qml/FlowView/FlowPushUpEffect.qml +FlowView_tooling: qml/FlowView/FlowSlideDownEffect.qml +FlowView_tooling: qml/FlowView/FlowSlideLeftEffect.qml +FlowView_tooling: qml/FlowView/FlowSlideRightEffect.qml +FlowView_tooling: qml/FlowView/FlowSlideUpEffect.qml +FlowView_tooling: qml/FlowView/FlowState.qml +FlowView_tooling: qml/FlowView/FlowTransition.qml +FlowView_tooling: qml/FlowView/FlowTransitionList.qml +FlowView_tooling: qml/FlowView/FlowView.qml +FlowView_tooling: qml/FlowView/FlowWildcard.qml +FlowView_tooling: qml/FlowView/SwipeInteraction.qml +FlowView_tooling: qml/FlowView/qmldir +FlowView_tooling: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make +.PHONY : FlowView_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build: FlowView_tooling +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..e4dd1fb --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake @@ -0,0 +1,31 @@ +file(REMOVE_RECURSE + "../../../../../qml/FlowView/+DesignMode/FlowItem.qml" + "../../../../../qml/FlowView/+DesignMode/FlowView.qml" + "../../../../../qml/FlowView/DefaultFlowEffect.qml" + "../../../../../qml/FlowView/FlowActionArea.qml" + "../../../../../qml/FlowView/FlowDecision.qml" + "../../../../../qml/FlowView/FlowEffect.qml" + "../../../../../qml/FlowView/FlowFadeEffect.qml" + "../../../../../qml/FlowView/FlowItem.qml" + "../../../../../qml/FlowView/FlowMoveEffect.qml" + "../../../../../qml/FlowView/FlowPushEffect.qml" + "../../../../../qml/FlowView/FlowPushLeftEffect.qml" + "../../../../../qml/FlowView/FlowPushRightEffect.qml" + "../../../../../qml/FlowView/FlowPushUpEffect.qml" + "../../../../../qml/FlowView/FlowSlideDownEffect.qml" + "../../../../../qml/FlowView/FlowSlideLeftEffect.qml" + "../../../../../qml/FlowView/FlowSlideRightEffect.qml" + "../../../../../qml/FlowView/FlowSlideUpEffect.qml" + "../../../../../qml/FlowView/FlowState.qml" + "../../../../../qml/FlowView/FlowTransition.qml" + "../../../../../qml/FlowView/FlowTransitionList.qml" + "../../../../../qml/FlowView/FlowView.qml" + "../../../../../qml/FlowView/FlowWildcard.qml" + "../../../../../qml/FlowView/SwipeInteraction.qml" + "../../../../../qml/FlowView/qmldir" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowView_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..6aa93fc --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowView_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..492ceb5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowView_tooling. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make new file mode 100644 index 0000000..a22a4f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make @@ -0,0 +1,25 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 24 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 25 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 26 +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = +CMAKE_PROGRESS_21 = 27 +CMAKE_PROGRESS_22 = +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..20771fa --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make new file mode 100644 index 0000000..bad52f8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp > CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -MF CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp > CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s + +# Object files for target FlowViewplugin +FlowViewplugin_OBJECTS = \ +"CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" + +# External object files for target FlowViewplugin +FlowViewplugin_EXTERNAL_OBJECTS = + +qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o +qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o +qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make +qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/FlowView/libFlowViewplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FlowViewplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build: qml/FlowView/libFlowViewplugin.a +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..8948d42 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/FlowView/libFlowViewplugin.a" + "../../../../../qml/FlowView/libFlowViewplugin.pdb" + "CMakeFiles/FlowViewplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/FlowViewplugin_autogen.dir/ParseCache.txt" + "FlowViewplugin_autogen" + "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" + "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d" + "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FlowViewplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..9c38f47 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/FlowView/libFlowViewplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make new file mode 100644 index 0000000..7adb548 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FlowViewplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..553a0ae --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FlowViewplugin. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make new file mode 100644 index 0000000..9bda647 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FlowViewplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make new file mode 100644 index 0000000..416886b --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt new file mode 100644 index 0000000..644872a --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/FlowView/libFlowViewplugin.a CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/FlowView/libFlowViewplugin.a diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make new file mode 100644 index 0000000..9aaf079 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 28 + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..f4655b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,152 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=FlowView" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make new file mode 100644 index 0000000..9e1ff65 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowViewplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowViewplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json Debug + +FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen +FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make +.PHONY : FlowViewplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build: FlowViewplugin_autogen +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..cf2442e --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowViewplugin_autogen" + "FlowViewplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..782fd01 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowViewplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..fd3159f --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowViewplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..55a8ec4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make new file mode 100644 index 0000000..feb728f --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -MF CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp > CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s + +FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o +FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o +FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make +.PHONY : FlowViewplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build: FlowViewplugin_init +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..b1593a1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/FlowViewplugin_init_autogen.dir/ParseCache.txt" + "FlowViewplugin_init_autogen" + "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" + "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d" + "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FlowViewplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..ba1108f --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FlowViewplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..34f5fe2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FlowViewplugin_init. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make new file mode 100644 index 0000000..6f4a999 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FlowViewplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make new file mode 100644 index 0000000..961ade9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..1b8d166 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,157 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..ba2fa2e --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for FlowViewplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowViewplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json Debug + +FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen +FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make +.PHONY : FlowViewplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build: FlowViewplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..ea2ff3b --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/FlowViewplugin_init_autogen" + "FlowViewplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..c8710c1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for FlowViewplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..7e6ef02 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for FlowViewplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks new file mode 100644 index 0000000..8351c19 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks @@ -0,0 +1 @@ +14 diff --git a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp new file mode 100644 index 0000000..45651a9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_FlowView(); +Q_GHS_KEEP_REFERENCE(qml_register_types_FlowView) + +class FlowViewPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + FlowViewPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_FlowView; + Q_UNUSED(registration) + } +}; + + + +#include "FlowViewplugin_FlowViewPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp new file mode 100644 index 0000000..9e27a33 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(FlowViewPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/flowview/Makefile b/build/_deps/ds-build/src/imports/flowview/Makefile new file mode 100644 index 0000000..2d88010 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/Makefile @@ -0,0 +1,1264 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule + +# Convenience name for target. +FlowView: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule +.PHONY : FlowView + +# fast build rule for target. +FlowView/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build +.PHONY : FlowView/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule + +# Convenience name for target. +FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule +.PHONY : FlowView_automoc_json_extraction + +# fast build rule for target. +FlowView_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build +.PHONY : FlowView_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule + +# Convenience name for target. +FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule +.PHONY : FlowView_qmltyperegistration + +# fast build rule for target. +FlowView_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build +.PHONY : FlowView_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule + +# Convenience name for target. +FlowViewplugin: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule +.PHONY : FlowViewplugin + +# fast build rule for target. +FlowViewplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build +.PHONY : FlowViewplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule + +# Convenience name for target. +FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule +.PHONY : FlowView_qmllint + +# fast build rule for target. +FlowView_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build +.PHONY : FlowView_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule + +# Convenience name for target. +FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule +.PHONY : FlowView_qmllint_json + +# fast build rule for target. +FlowView_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build +.PHONY : FlowView_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule + +# Convenience name for target. +FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule +.PHONY : FlowView_qmllint_module + +# fast build rule for target. +FlowView_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build +.PHONY : FlowView_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule + +# Convenience name for target. +FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule +.PHONY : FlowView_qmlcache + +# fast build rule for target. +FlowView_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build +.PHONY : FlowView_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule + +# Convenience name for target. +FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule +.PHONY : FlowView_resources_1 + +# fast build rule for target. +FlowView_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build +.PHONY : FlowView_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule + +# Convenience name for target. +FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule +.PHONY : FlowViewplugin_init + +# fast build rule for target. +FlowViewplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build +.PHONY : FlowViewplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule + +# Convenience name for target. +FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule +.PHONY : FlowView_autogen + +# fast build rule for target. +FlowView_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build +.PHONY : FlowView_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule + +# Convenience name for target. +FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule +.PHONY : FlowViewplugin_autogen + +# fast build rule for target. +FlowViewplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build +.PHONY : FlowViewplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule + +# Convenience name for target. +FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule +.PHONY : FlowView_qmlcache_autogen + +# fast build rule for target. +FlowView_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build +.PHONY : FlowView_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule + +# Convenience name for target. +FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule +.PHONY : FlowViewplugin_init_autogen + +# fast build rule for target. +FlowViewplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build +.PHONY : FlowViewplugin_init_autogen/fast + +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o + +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i + +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s + +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o + +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i + +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s + +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowActionArea_qml.o: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowActionArea_qml.i: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowActionArea_qml.s: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowDecision_qml.o: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowDecision_qml.i: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowDecision_qml.s: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowEffect_qml.o: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowEffect_qml.i: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowEffect_qml.s: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.o: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.i: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.s: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowItem_qml.o: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowItem_qml.i: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowItem_qml.s: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.o: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.i: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.s: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowPushEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowPushEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowPushEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowState_qml.o: .rcc/qmlcache/FlowView_FlowState_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowState_qml.i: .rcc/qmlcache/FlowView_FlowState_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowState_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowState_qml.s: .rcc/qmlcache/FlowView_FlowState_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowState_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowTransitionList_qml.o: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowTransitionList_qml.i: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowTransitionList_qml.s: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowTransition_qml.o: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowTransition_qml.i: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowTransition_qml.s: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowView_qml.o: .rcc/qmlcache/FlowView_FlowView_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowView_qml.i: .rcc/qmlcache/FlowView_FlowView_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowView_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowView_qml.s: .rcc/qmlcache/FlowView_FlowView_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowView_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.s + +.rcc/qmlcache/FlowView_FlowWildcard_qml.o: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o + +.rcc/qmlcache/FlowView_FlowWildcard_qml.i: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i + +.rcc/qmlcache/FlowView_FlowWildcard_qml.s: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s + +.rcc/qmlcache/FlowView_SwipeInteraction_qml.o: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.o + +# target to build an object file +.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o + +.rcc/qmlcache/FlowView_SwipeInteraction_qml.i: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i + +.rcc/qmlcache/FlowView_SwipeInteraction_qml.s: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s +.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s + +.rcc/qmlcache/FlowView_qmlcache_loader.o: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.o + +.rcc/qmlcache/FlowView_qmlcache_loader.i: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.i + +.rcc/qmlcache/FlowView_qmlcache_loader.s: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.s + +.rcc/qrc_FlowView_raw_qml_0.o: .rcc/qrc_FlowView_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_FlowView_raw_qml_0.o + +# target to build an object file +.rcc/qrc_FlowView_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.o + +.rcc/qrc_FlowView_raw_qml_0.i: .rcc/qrc_FlowView_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_FlowView_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_FlowView_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.i + +.rcc/qrc_FlowView_raw_qml_0.s: .rcc/qrc_FlowView_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_FlowView_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_FlowView_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.s + +FlowView_autogen/mocs_compilation.o: FlowView_autogen/mocs_compilation.cpp.o +.PHONY : FlowView_autogen/mocs_compilation.o + +# target to build an object file +FlowView_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o +.PHONY : FlowView_autogen/mocs_compilation.cpp.o + +FlowView_autogen/mocs_compilation.i: FlowView_autogen/mocs_compilation.cpp.i +.PHONY : FlowView_autogen/mocs_compilation.i + +# target to preprocess a source file +FlowView_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i +.PHONY : FlowView_autogen/mocs_compilation.cpp.i + +FlowView_autogen/mocs_compilation.s: FlowView_autogen/mocs_compilation.cpp.s +.PHONY : FlowView_autogen/mocs_compilation.s + +# target to generate assembly for a file +FlowView_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s +.PHONY : FlowView_autogen/mocs_compilation.cpp.s + +FlowView_qmlcache_autogen/mocs_compilation.o: FlowView_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +FlowView_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.o + +FlowView_qmlcache_autogen/mocs_compilation.i: FlowView_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +FlowView_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.i + +FlowView_qmlcache_autogen/mocs_compilation.s: FlowView_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +FlowView_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.s + +FlowViewplugin_FlowViewPlugin.o: FlowViewplugin_FlowViewPlugin.cpp.o +.PHONY : FlowViewplugin_FlowViewPlugin.o + +# target to build an object file +FlowViewplugin_FlowViewPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o +.PHONY : FlowViewplugin_FlowViewPlugin.cpp.o + +FlowViewplugin_FlowViewPlugin.i: FlowViewplugin_FlowViewPlugin.cpp.i +.PHONY : FlowViewplugin_FlowViewPlugin.i + +# target to preprocess a source file +FlowViewplugin_FlowViewPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i +.PHONY : FlowViewplugin_FlowViewPlugin.cpp.i + +FlowViewplugin_FlowViewPlugin.s: FlowViewplugin_FlowViewPlugin.cpp.s +.PHONY : FlowViewplugin_FlowViewPlugin.s + +# target to generate assembly for a file +FlowViewplugin_FlowViewPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s +.PHONY : FlowViewplugin_FlowViewPlugin.cpp.s + +FlowViewplugin_autogen/mocs_compilation.o: FlowViewplugin_autogen/mocs_compilation.cpp.o +.PHONY : FlowViewplugin_autogen/mocs_compilation.o + +# target to build an object file +FlowViewplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o +.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.o + +FlowViewplugin_autogen/mocs_compilation.i: FlowViewplugin_autogen/mocs_compilation.cpp.i +.PHONY : FlowViewplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +FlowViewplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i +.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.i + +FlowViewplugin_autogen/mocs_compilation.s: FlowViewplugin_autogen/mocs_compilation.cpp.s +.PHONY : FlowViewplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +FlowViewplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s +.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.s + +FlowViewplugin_init.o: FlowViewplugin_init.cpp.o +.PHONY : FlowViewplugin_init.o + +# target to build an object file +FlowViewplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o +.PHONY : FlowViewplugin_init.cpp.o + +FlowViewplugin_init.i: FlowViewplugin_init.cpp.i +.PHONY : FlowViewplugin_init.i + +# target to preprocess a source file +FlowViewplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i +.PHONY : FlowViewplugin_init.cpp.i + +FlowViewplugin_init.s: FlowViewplugin_init.cpp.s +.PHONY : FlowViewplugin_init.s + +# target to generate assembly for a file +FlowViewplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s +.PHONY : FlowViewplugin_init.cpp.s + +FlowViewplugin_init_autogen/mocs_compilation.o: FlowViewplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.o + +# target to build an object file +FlowViewplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.o + +FlowViewplugin_init_autogen/mocs_compilation.i: FlowViewplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +FlowViewplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.i + +FlowViewplugin_init_autogen/mocs_compilation.s: FlowViewplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +FlowViewplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.s + +flowview_qmltyperegistrations.o: flowview_qmltyperegistrations.cpp.o +.PHONY : flowview_qmltyperegistrations.o + +# target to build an object file +flowview_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o +.PHONY : flowview_qmltyperegistrations.cpp.o + +flowview_qmltyperegistrations.i: flowview_qmltyperegistrations.cpp.i +.PHONY : flowview_qmltyperegistrations.i + +# target to preprocess a source file +flowview_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i +.PHONY : flowview_qmltyperegistrations.cpp.i + +flowview_qmltyperegistrations.s: flowview_qmltyperegistrations.cpp.s +.PHONY : flowview_qmltyperegistrations.s + +# target to generate assembly for a file +flowview_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s +.PHONY : flowview_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... FlowView_autogen" + @echo "... FlowView_automoc_json_extraction" + @echo "... FlowView_qmlcache_autogen" + @echo "... FlowView_qmllint" + @echo "... FlowView_qmllint_json" + @echo "... FlowView_qmllint_module" + @echo "... FlowView_qmltyperegistration" + @echo "... FlowViewplugin_autogen" + @echo "... FlowViewplugin_init_autogen" + @echo "... FlowView" + @echo "... FlowView_qmlcache" + @echo "... FlowView_resources_1" + @echo "... FlowView_tooling" + @echo "... FlowViewplugin" + @echo "... FlowViewplugin_init" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i" + @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s" + @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowState_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowState_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowState_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowView_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowView_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowView_qml.s" + @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.o" + @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.i" + @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.s" + @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.o" + @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.i" + @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.s" + @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.o" + @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.i" + @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.s" + @echo "... .rcc/qrc_FlowView_raw_qml_0.o" + @echo "... .rcc/qrc_FlowView_raw_qml_0.i" + @echo "... .rcc/qrc_FlowView_raw_qml_0.s" + @echo "... FlowView_autogen/mocs_compilation.o" + @echo "... FlowView_autogen/mocs_compilation.i" + @echo "... FlowView_autogen/mocs_compilation.s" + @echo "... FlowView_qmlcache_autogen/mocs_compilation.o" + @echo "... FlowView_qmlcache_autogen/mocs_compilation.i" + @echo "... FlowView_qmlcache_autogen/mocs_compilation.s" + @echo "... FlowViewplugin_FlowViewPlugin.o" + @echo "... FlowViewplugin_FlowViewPlugin.i" + @echo "... FlowViewplugin_FlowViewPlugin.s" + @echo "... FlowViewplugin_autogen/mocs_compilation.o" + @echo "... FlowViewplugin_autogen/mocs_compilation.i" + @echo "... FlowViewplugin_autogen/mocs_compilation.s" + @echo "... FlowViewplugin_init.o" + @echo "... FlowViewplugin_init.i" + @echo "... FlowViewplugin_init.s" + @echo "... FlowViewplugin_init_autogen/mocs_compilation.o" + @echo "... FlowViewplugin_init_autogen/mocs_compilation.i" + @echo "... FlowViewplugin_init_autogen/mocs_compilation.s" + @echo "... flowview_qmltyperegistrations.o" + @echo "... flowview_qmltyperegistrations.i" + @echo "... flowview_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake b/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake new file mode 100644 index 0000000..14ee241 --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json b/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt b/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc new file mode 100644 index 0000000..ccd47ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc @@ -0,0 +1,12 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml + + + diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc new file mode 100644 index 0000000..41eb4f4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp new file mode 100644 index 0000000..a66fa90 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp @@ -0,0 +1,7 @@ +/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml +/QtQuick/Studio/LogicHelper/RangeMapper.qml +/QtQuick/Studio/LogicHelper/MinMaxMapper.qml +/QtQuick/Studio/LogicHelper/StringMapper.qml +/QtQuick/Studio/LogicHelper/OrOperator.qml +/QtQuick/Studio/LogicHelper/AndOperator.qml +/QtQuick/Studio/LogicHelper/NotOperator.qml diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp new file mode 100644 index 0000000..543e164 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp @@ -0,0 +1,18 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp new file mode 100644 index 0000000..b9080fd --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp @@ -0,0 +1,20 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioLogicHelper_qmllint.json diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp new file mode 100644 index 0000000..5d98921 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +--module +QtQuick.Studio.LogicHelper diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake new file mode 100644 index 0000000..6fed20d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake @@ -0,0 +1,33 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make new file mode 100644 index 0000000..ddb184e --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make @@ -0,0 +1,343 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make + +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: _deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json + +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes --import-name=QtQuick.Studio.LogicHelper --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated/QuickStudioLogicHelper.qmltypes + +qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/BidirectionalBinding.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/RangeMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/MinMaxMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/StringMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/OrOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/AndOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/NotOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml + +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating meta_types/qt6quickstudiologichelper_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp > CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s + +# Object files for target QuickStudioLogicHelper +QuickStudioLogicHelper_OBJECTS = \ +"CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" + +# External object files for target QuickStudioLogicHelper +QuickStudioLogicHelper_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make +_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Linking CXX static library libQuickStudioLogicHelper.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioLogicHelper.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build: _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake new file mode 100644 index 0000000..df699db --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake @@ -0,0 +1,41 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" + ".rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" + ".rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" + "CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt" + "QuickStudioLogicHelper_autogen" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d" + "libQuickStudioLogicHelper.a" + "libQuickStudioLogicHelper.pdb" + "meta_types/qt6quickstudiologichelper_debug_metatypes.json" + "meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen" + "quickstudiologichelper_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..35c82fe --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioLogicHelper.a" +) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make new file mode 100644 index 0000000..8071df2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelper. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts new file mode 100644 index 0000000..cd542ae --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make new file mode 100644 index 0000000..7a39b96 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelper. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make new file mode 100644 index 0000000..b59b2f9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt new file mode 100644 index 0000000..bfc3ef6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioLogicHelper.a CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioLogicHelper.a diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make new file mode 100644 index 0000000..2caca34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make @@ -0,0 +1,21 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 80 +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = 81 +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = 82 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ebe3704 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json @@ -0,0 +1,117 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make new file mode 100644 index 0000000..fc4d54c --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json Debug + +QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen +QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make +.PHONY : QuickStudioLogicHelper_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build: QuickStudioLogicHelper_autogen +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..2369211 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelper_autogen" + "QuickStudioLogicHelper_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..d4e3e4d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..5e7c5a2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..be4caf3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include + +QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction +QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioLogicHelper_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build: QuickStudioLogicHelper_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..1421146 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction" + "meta_types/QuickStudioLogicHelper_json_file_list.txt" + "meta_types/QuickStudioLogicHelper_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..01037c6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..6ef7627 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..9cd4e35 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make new file mode 100644 index 0000000..d19907b --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioLogicHelper --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp > CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s + +QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o +QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make +.PHONY : QuickStudioLogicHelper_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build: QuickStudioLogicHelper_qmlcache +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..caa7aa6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioLogicHelper_qmlcache_autogen" + "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..878b9af --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelper_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..8424833 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_qmlcache. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make new file mode 100644 index 0000000..10a1d1b --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelper_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make new file mode 100644 index 0000000..913ca0c --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make new file mode 100644 index 0000000..b8bc3f3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 83 +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..28f9d01 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,129 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..81c0c61 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelper_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioLogicHelper --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp + +QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp +QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen +QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioLogicHelper_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build: QuickStudioLogicHelper_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..196318b --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen" + "QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..d1e9f86 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..8357019 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make new file mode 100644 index 0000000..4bf91be --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp + +QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint +QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make +.PHONY : QuickStudioLogicHelper_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build: QuickStudioLogicHelper_qmllint +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..5dff0b3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelper_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..3df6501 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..f0d2498 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make new file mode 100644 index 0000000..b8ca261 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp + +QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json +QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make +.PHONY : QuickStudioLogicHelper_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build: QuickStudioLogicHelper_qmllint_json +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..4f73d5e --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelper_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..033249d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..ea61a2d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make new file mode 100644 index 0000000..49fa40b --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp + +QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module +QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make +.PHONY : QuickStudioLogicHelper_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build: QuickStudioLogicHelper_qmllint_module +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..e174825 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelper_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..5a82e01 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..b5894ec --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..10b6e38 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..6e01f59 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes + +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes --import-name=QtQuick.Studio.LogicHelper --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated/QuickStudioLogicHelper.qmltypes + +qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes + +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiologichelper_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: _deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioLogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json + +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp +QuickStudioLogicHelper_qmltyperegistration: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make +.PHONY : QuickStudioLogicHelper_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build: QuickStudioLogicHelper_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..182eed8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" + "CMakeFiles/QuickStudioLogicHelper_qmltyperegistration" + "meta_types/qt6quickstudiologichelper_debug_metatypes.json" + "meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen" + "quickstudiologichelper_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..82cd35a --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..7b8b44d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..7f02109 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make new file mode 100644 index 0000000..b9cc0cc --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make + +_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: qml/QtQuick/Studio/LogicHelper/qmldir +_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_LogicHelper" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp --name qmake_QtQuick_Studio_LogicHelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp > CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s + +QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o +QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make +.PHONY : QuickStudioLogicHelper_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build: QuickStudioLogicHelper_resources_1 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..e80ed60 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp" + "CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" + "CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..406944c --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelper_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..e921481 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_resources_1. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make new file mode 100644 index 0000000..0f4b2f3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelper_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make new file mode 100644 index 0000000..6047416 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make new file mode 100644 index 0000000..7b8681c --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 84 +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..e52fe48 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make new file mode 100644 index 0000000..2609ad1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make @@ -0,0 +1,113 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make + +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioLogicHelper_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp --name QuickStudioLogicHelper_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp > CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s + +QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o +QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make +.PHONY : QuickStudioLogicHelper_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build: QuickStudioLogicHelper_resources_2 +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..fd466e0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp" + "CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..e969352 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelper_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..041dd4a --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_resources_2. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make new file mode 100644 index 0000000..c63bde9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelper_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make new file mode 100644 index 0000000..6047416 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make new file mode 100644 index 0000000..1c8cdf5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make @@ -0,0 +1,118 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelper_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make + +qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying BidirectionalBinding.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml + +qml/QtQuick/Studio/LogicHelper/RangeMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying RangeMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml + +qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying MinMaxMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml + +qml/QtQuick/Studio/LogicHelper/StringMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying StringMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml + +qml/QtQuick/Studio/LogicHelper/OrOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying OrOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml + +qml/QtQuick/Studio/LogicHelper/AndOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying AndOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml + +qml/QtQuick/Studio/LogicHelper/NotOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying NotOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml + +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/AndOperator.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/NotOperator.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/OrOperator.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/RangeMapper.qml +QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/StringMapper.qml +QuickStudioLogicHelper_tooling: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make +.PHONY : QuickStudioLogicHelper_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build: QuickStudioLogicHelper_tooling +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..8478270 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/LogicHelper/AndOperator.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/NotOperator.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/OrOperator.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/RangeMapper.qml" + "../../../../../qml/QtQuick/Studio/LogicHelper/StringMapper.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..0adafd1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelper_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..ca4376b --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_tooling. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make new file mode 100644 index 0000000..4b66c63 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make @@ -0,0 +1,8 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 85 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..7010fe8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make new file mode 100644 index 0000000..e92fa7f --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp > CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s + +# Object files for target QuickStudioLogicHelperplugin +QuickStudioLogicHelperplugin_OBJECTS = \ +"CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" + +# External object files for target QuickStudioLogicHelperplugin +QuickStudioLogicHelperplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o +qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make +qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build: qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..d13e07d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" + "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.pdb" + "CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/ParseCache.txt" + "QuickStudioLogicHelperplugin_autogen" + "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" + "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..c48cbe1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make new file mode 100644 index 0000000..b7426ce --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelperplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..77a3235 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelperplugin. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make new file mode 100644 index 0000000..cc33e89 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelperplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make new file mode 100644 index 0000000..bdf40c1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt new file mode 100644 index 0000000..f639cdd --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make new file mode 100644 index 0000000..670cba8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 86 +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..e80abba --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,124 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.LogicHelper" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make new file mode 100644 index 0000000..ece8786 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelperplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelperplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen +QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make +.PHONY : QuickStudioLogicHelperplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build: QuickStudioLogicHelperplugin_autogen +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..5092acd --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelperplugin_autogen" + "QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..94899e1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelperplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..ab56083 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelperplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..ccd36cd --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make new file mode 100644 index 0000000..6d81476 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp > CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s + +QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o +QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make +.PHONY : QuickStudioLogicHelperplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build: QuickStudioLogicHelperplugin_init +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..1eb0f3d --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioLogicHelperplugin_init_autogen" + "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" + "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..bc2609a --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioLogicHelperplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..8286d99 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelperplugin_init. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make new file mode 100644 index 0000000..d8926cc --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioLogicHelperplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make new file mode 100644 index 0000000..a100dcd --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..f9d78c3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,129 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..a1065ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioLogicHelperplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelperplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen +QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make +.PHONY : QuickStudioLogicHelperplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build: QuickStudioLogicHelperplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..914ffb9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen" + "QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..9b8e0c2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioLogicHelperplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..a35ee86 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioLogicHelperplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks @@ -0,0 +1 @@ +7 diff --git a/build/_deps/ds-build/src/imports/logichelper/Makefile b/build/_deps/ds-build/src/imports/logichelper/Makefile new file mode 100644 index 0000000..600db8a --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/Makefile @@ -0,0 +1,874 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule +.PHONY : QuickStudioLogicHelper + +# fast build rule for target. +QuickStudioLogicHelper/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build +.PHONY : QuickStudioLogicHelper/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule +.PHONY : QuickStudioLogicHelper_automoc_json_extraction + +# fast build rule for target. +QuickStudioLogicHelper_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build +.PHONY : QuickStudioLogicHelper_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule +.PHONY : QuickStudioLogicHelper_qmltyperegistration + +# fast build rule for target. +QuickStudioLogicHelper_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build +.PHONY : QuickStudioLogicHelper_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule +.PHONY : QuickStudioLogicHelper_resources_1 + +# fast build rule for target. +QuickStudioLogicHelper_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build +.PHONY : QuickStudioLogicHelper_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule +.PHONY : QuickStudioLogicHelperplugin + +# fast build rule for target. +QuickStudioLogicHelperplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build +.PHONY : QuickStudioLogicHelperplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint + +# fast build rule for target. +QuickStudioLogicHelper_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build +.PHONY : QuickStudioLogicHelper_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint_json + +# fast build rule for target. +QuickStudioLogicHelper_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build +.PHONY : QuickStudioLogicHelper_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule +.PHONY : QuickStudioLogicHelper_qmllint_module + +# fast build rule for target. +QuickStudioLogicHelper_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build +.PHONY : QuickStudioLogicHelper_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule +.PHONY : QuickStudioLogicHelper_qmlcache + +# fast build rule for target. +QuickStudioLogicHelper_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build +.PHONY : QuickStudioLogicHelper_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule +.PHONY : QuickStudioLogicHelper_resources_2 + +# fast build rule for target. +QuickStudioLogicHelper_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build +.PHONY : QuickStudioLogicHelper_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule +.PHONY : QuickStudioLogicHelperplugin_init + +# fast build rule for target. +QuickStudioLogicHelperplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build +.PHONY : QuickStudioLogicHelperplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule +.PHONY : QuickStudioLogicHelper_autogen + +# fast build rule for target. +QuickStudioLogicHelper_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build +.PHONY : QuickStudioLogicHelper_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule +.PHONY : QuickStudioLogicHelperplugin_autogen + +# fast build rule for target. +QuickStudioLogicHelperplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build +.PHONY : QuickStudioLogicHelperplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule +.PHONY : QuickStudioLogicHelper_qmlcache_autogen + +# fast build rule for target. +QuickStudioLogicHelper_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule +.PHONY : QuickStudioLogicHelperplugin_init_autogen + +# fast build rule for target. +QuickStudioLogicHelperplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build +.PHONY : QuickStudioLogicHelperplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s + +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s + +QuickStudioLogicHelper_autogen/mocs_compilation.o: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o + +QuickStudioLogicHelper_autogen/mocs_compilation.i: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i + +QuickStudioLogicHelper_autogen/mocs_compilation.s: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s + +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o + +# target to build an object file +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o + +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i + +# target to preprocess a source file +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i + +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s + +# target to generate assembly for a file +QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s +.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s + +QuickStudioLogicHelperplugin_autogen/mocs_compilation.o: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o + +QuickStudioLogicHelperplugin_autogen/mocs_compilation.i: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i + +QuickStudioLogicHelperplugin_autogen/mocs_compilation.s: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s + +QuickStudioLogicHelperplugin_init.o: QuickStudioLogicHelperplugin_init.cpp.o +.PHONY : QuickStudioLogicHelperplugin_init.o + +# target to build an object file +QuickStudioLogicHelperplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o +.PHONY : QuickStudioLogicHelperplugin_init.cpp.o + +QuickStudioLogicHelperplugin_init.i: QuickStudioLogicHelperplugin_init.cpp.i +.PHONY : QuickStudioLogicHelperplugin_init.i + +# target to preprocess a source file +QuickStudioLogicHelperplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i +.PHONY : QuickStudioLogicHelperplugin_init.cpp.i + +QuickStudioLogicHelperplugin_init.s: QuickStudioLogicHelperplugin_init.cpp.s +.PHONY : QuickStudioLogicHelperplugin_init.s + +# target to generate assembly for a file +QuickStudioLogicHelperplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s +.PHONY : QuickStudioLogicHelperplugin_init.cpp.s + +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s + +quickstudiologichelper_qmltyperegistrations.o: quickstudiologichelper_qmltyperegistrations.cpp.o +.PHONY : quickstudiologichelper_qmltyperegistrations.o + +# target to build an object file +quickstudiologichelper_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o +.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.o + +quickstudiologichelper_qmltyperegistrations.i: quickstudiologichelper_qmltyperegistrations.cpp.i +.PHONY : quickstudiologichelper_qmltyperegistrations.i + +# target to preprocess a source file +quickstudiologichelper_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i +.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.i + +quickstudiologichelper_qmltyperegistrations.s: quickstudiologichelper_qmltyperegistrations.cpp.s +.PHONY : quickstudiologichelper_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudiologichelper_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s +.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioLogicHelper_autogen" + @echo "... QuickStudioLogicHelper_automoc_json_extraction" + @echo "... QuickStudioLogicHelper_qmlcache_autogen" + @echo "... QuickStudioLogicHelper_qmllint" + @echo "... QuickStudioLogicHelper_qmllint_json" + @echo "... QuickStudioLogicHelper_qmllint_module" + @echo "... QuickStudioLogicHelper_qmltyperegistration" + @echo "... QuickStudioLogicHelperplugin_autogen" + @echo "... QuickStudioLogicHelperplugin_init_autogen" + @echo "... QuickStudioLogicHelper" + @echo "... QuickStudioLogicHelper_qmlcache" + @echo "... QuickStudioLogicHelper_resources_1" + @echo "... QuickStudioLogicHelper_resources_2" + @echo "... QuickStudioLogicHelper_tooling" + @echo "... QuickStudioLogicHelperplugin" + @echo "... QuickStudioLogicHelperplugin_init" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s" + @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.o" + @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.i" + @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.s" + @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o" + @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i" + @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s" + @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioLogicHelperplugin_init.o" + @echo "... QuickStudioLogicHelperplugin_init.i" + @echo "... QuickStudioLogicHelperplugin_init.s" + @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudiologichelper_qmltyperegistrations.o" + @echo "... quickstudiologichelper_qmltyperegistrations.i" + @echo "... quickstudiologichelper_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp new file mode 100644 index 0000000..01d8c37 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_LogicHelper(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_LogicHelper) + +class QtQuick_Studio_LogicHelperPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_LogicHelperPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_LogicHelper; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp new file mode 100644 index 0000000..d13e2c6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_LogicHelperPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake b/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake new file mode 100644 index 0000000..73c18f2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json b/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt b/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc new file mode 100644 index 0000000..784f085 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc @@ -0,0 +1,8 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml + + + diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc b/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc new file mode 100644 index 0000000..35a4827 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp new file mode 100644 index 0000000..f5c0c34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp @@ -0,0 +1,3 @@ +/QtQuick/Studio/MultiText/MultiTextElement.qml +/QtQuick/Studio/MultiText/MultiTextItem.qml +/QtQuick/Studio/MultiText/MultiTextException.qml diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp new file mode 100644 index 0000000..89139ec --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp @@ -0,0 +1,14 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp new file mode 100644 index 0000000..cbd1626 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp @@ -0,0 +1,16 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioMultiText_qmllint.json diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp new file mode 100644 index 0000000..249c25d --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +--module +QtQuick.Studio.MultiText diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake new file mode 100644 index 0000000..4a58007 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make new file mode 100644 index 0000000..e243b8f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make @@ -0,0 +1,235 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make + +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: _deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json + +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes --import-name=QtQuick.Studio.MultiText --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated/QuickStudioMultiText.qmltypes + +qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes + +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextElement.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml + +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml + +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextException.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml + +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating meta_types/qt6quickstudiomultitext_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp > CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s + +# Object files for target QuickStudioMultiText +QuickStudioMultiText_OBJECTS = \ +"CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" \ +"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" \ +"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" + +# External object files for target QuickStudioMultiText +QuickStudioMultiText_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make +_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Linking CXX static library libQuickStudioMultiText.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioMultiText.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build: _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake new file mode 100644 index 0000000..d4e258f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake @@ -0,0 +1,29 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" + ".rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" + ".rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" + ".rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" + "CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt" + "QuickStudioMultiText_autogen" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" + "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d" + "CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d" + "libQuickStudioMultiText.a" + "libQuickStudioMultiText.pdb" + "meta_types/qt6quickstudiomultitext_debug_metatypes.json" + "meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen" + "quickstudiomultitext_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiText.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..9e1e47f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioMultiText.a" +) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make new file mode 100644 index 0000000..2f6a84c --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiText. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts new file mode 100644 index 0000000..29d8fb6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiText. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make new file mode 100644 index 0000000..43b3a33 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiText. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make new file mode 100644 index 0000000..846cce8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt new file mode 100644 index 0000000..4bcbdcf --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioMultiText.a CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioMultiText.a diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make new file mode 100644 index 0000000..47640f3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make @@ -0,0 +1,13 @@ +CMAKE_PROGRESS_1 = 87 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 88 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d562237 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json @@ -0,0 +1,109 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make new file mode 100644 index 0000000..822394b --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json Debug + +QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen +QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make +.PHONY : QuickStudioMultiText_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build: QuickStudioMultiText_autogen +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..12180b2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiText_autogen" + "QuickStudioMultiText_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..75a7599 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..5a71ea5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..d19385f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include + +QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction +QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioMultiText_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build: QuickStudioMultiText_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..db223e3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiText_automoc_json_extraction" + "meta_types/QuickStudioMultiText_json_file_list.txt" + "meta_types/QuickStudioMultiText_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..742edc9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..a4133b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..690660a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 89 + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..d850811 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make new file mode 100644 index 0000000..e694393 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioMultiText --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp > CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s + +QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o +QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make +.PHONY : QuickStudioMultiText_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build: QuickStudioMultiText_qmlcache +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..637e32a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioMultiText_qmlcache_autogen" + "CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..1381f51 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiText_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..c3e3180 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_qmlcache. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make new file mode 100644 index 0000000..0aac7cb --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiText_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make new file mode 100644 index 0000000..f8fb955 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..7bd10b8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,121 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..51d248e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiText_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioMultiText --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp + +QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp +QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen +QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioMultiText_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build: QuickStudioMultiText_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..dc29c72 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioMultiText_qmlcache_autogen" + "QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b51dee4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..cc5657e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make new file mode 100644 index 0000000..c7f45c8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp + +QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint +QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make +.PHONY : QuickStudioMultiText_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build: QuickStudioMultiText_qmllint +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..4839dc8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiText_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..727daf8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..161b0a7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make new file mode 100644 index 0000000..d73417d --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp + +QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json +QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make +.PHONY : QuickStudioMultiText_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build: QuickStudioMultiText_qmllint_json +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..636f4e5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiText_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..eb4f26d --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..e44d7c1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make new file mode 100644 index 0000000..45c06b2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp + +QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module +QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make +.PHONY : QuickStudioMultiText_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build: QuickStudioMultiText_qmllint_module +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..08c8a5f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiText_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..ebdf71e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..5c374ef --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..fe717b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..a8820e0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes + +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes --import-name=QtQuick.Studio.MultiText --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated/QuickStudioMultiText.qmltypes + +qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes + +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiomultitext_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: _deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioMultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json + +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp +QuickStudioMultiText_qmltyperegistration: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make +.PHONY : QuickStudioMultiText_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build: QuickStudioMultiText_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..29a526f --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" + "CMakeFiles/QuickStudioMultiText_qmltyperegistration" + "meta_types/qt6quickstudiomultitext_debug_metatypes.json" + "meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen" + "quickstudiomultitext_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..686a9a1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..86a5a66 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..c3045dd --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 90 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..f49fa5e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make new file mode 100644 index 0000000..8b441b1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make + +_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: qml/QtQuick/Studio/MultiText/qmldir +_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_MultiText" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp --name qmake_QtQuick_Studio_MultiText /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -MF CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp > CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s + +QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o +QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make +.PHONY : QuickStudioMultiText_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build: QuickStudioMultiText_resources_1 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..0140ef7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp" + "CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" + "CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..7ad89be --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiText_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..49ce5eb --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_resources_1. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make new file mode 100644 index 0000000..b17d721 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiText_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make new file mode 100644 index 0000000..640f10a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..b6196a1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make new file mode 100644 index 0000000..d9336c9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make @@ -0,0 +1,109 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make + +_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml +_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml +_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml +_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioMultiText_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp --name QuickStudioMultiText_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp > CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s + +QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o +QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make +.PHONY : QuickStudioMultiText_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build: QuickStudioMultiText_resources_2 +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..bdd6365 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp" + "CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..b18b810 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiText_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..216d7c8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_resources_2. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make new file mode 100644 index 0000000..d7e0287 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiText_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make new file mode 100644 index 0000000..640f10a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make new file mode 100644 index 0000000..7ce86b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 91 + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make new file mode 100644 index 0000000..7bef016 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiText_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make + +qml/QtQuick/Studio/MultiText/MultiTextElement.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying MultiTextElement.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml + +qml/QtQuick/Studio/MultiText/MultiTextItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying MultiTextItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml + +qml/QtQuick/Studio/MultiText/MultiTextException.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying MultiTextException.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml + +QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextElement.qml +QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextException.qml +QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextItem.qml +QuickStudioMultiText_tooling: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make +.PHONY : QuickStudioMultiText_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build: QuickStudioMultiText_tooling +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..7711f7b --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/MultiText/MultiTextElement.qml" + "../../../../../qml/QtQuick/Studio/MultiText/MultiTextException.qml" + "../../../../../qml/QtQuick/Studio/MultiText/MultiTextItem.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..6c22f0a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiText_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..6cc61eb --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiText_tooling. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..b281fdf --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make new file mode 100644 index 0000000..b86d880 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp > CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s + +# Object files for target QuickStudioMultiTextplugin +QuickStudioMultiTextplugin_OBJECTS = \ +"CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" + +# External object files for target QuickStudioMultiTextplugin +QuickStudioMultiTextplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o +qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make +qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build: qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..0d0a88a --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" + "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.pdb" + "CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/ParseCache.txt" + "QuickStudioMultiTextplugin_autogen" + "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" + "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d" + "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8dce4fb --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make new file mode 100644 index 0000000..35e1d51 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiTextplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..a18658c --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiTextplugin. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make new file mode 100644 index 0000000..85f1f77 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiTextplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make new file mode 100644 index 0000000..97332d1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt new file mode 100644 index 0000000..62627b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d12517d --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,116 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.MultiText" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make new file mode 100644 index 0000000..28c8aa4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiTextplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiTextplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen +QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make +.PHONY : QuickStudioMultiTextplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build: QuickStudioMultiTextplugin_autogen +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..9b9cb1e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiTextplugin_autogen" + "QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..ec7e5b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiTextplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..d072787 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiTextplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make new file mode 100644 index 0000000..20a2a32 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 92 + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..242e29e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make new file mode 100644 index 0000000..7419adc --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp > CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s + +QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o +QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make +.PHONY : QuickStudioMultiTextplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build: QuickStudioMultiTextplugin_init +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..3ab0f3e --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioMultiTextplugin_init_autogen" + "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" + "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..0f122d6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioMultiTextplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..501ba28 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioMultiTextplugin_init. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make new file mode 100644 index 0000000..db50954 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioMultiTextplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make new file mode 100644 index 0000000..633d4e0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..cacc800 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,121 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..ef8ca30 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioMultiTextplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiTextplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen +QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make +.PHONY : QuickStudioMultiTextplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build: QuickStudioMultiTextplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..16683af --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioMultiTextplugin_init_autogen" + "QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..cb8e340 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioMultiTextplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..25db9e5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioMultiTextplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/build/_deps/ds-build/src/imports/multitext/Makefile b/build/_deps/ds-build/src/imports/multitext/Makefile new file mode 100644 index 0000000..787b170 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/Makefile @@ -0,0 +1,766 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule + +# Convenience name for target. +QuickStudioMultiText: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule +.PHONY : QuickStudioMultiText + +# fast build rule for target. +QuickStudioMultiText/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build +.PHONY : QuickStudioMultiText/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule +.PHONY : QuickStudioMultiText_automoc_json_extraction + +# fast build rule for target. +QuickStudioMultiText_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build +.PHONY : QuickStudioMultiText_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule +.PHONY : QuickStudioMultiText_qmltyperegistration + +# fast build rule for target. +QuickStudioMultiText_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build +.PHONY : QuickStudioMultiText_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule + +# Convenience name for target. +QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule +.PHONY : QuickStudioMultiText_resources_1 + +# fast build rule for target. +QuickStudioMultiText_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build +.PHONY : QuickStudioMultiText_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule +.PHONY : QuickStudioMultiTextplugin + +# fast build rule for target. +QuickStudioMultiTextplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build +.PHONY : QuickStudioMultiTextplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule +.PHONY : QuickStudioMultiText_qmllint + +# fast build rule for target. +QuickStudioMultiText_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build +.PHONY : QuickStudioMultiText_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule +.PHONY : QuickStudioMultiText_qmllint_json + +# fast build rule for target. +QuickStudioMultiText_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build +.PHONY : QuickStudioMultiText_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule +.PHONY : QuickStudioMultiText_qmllint_module + +# fast build rule for target. +QuickStudioMultiText_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build +.PHONY : QuickStudioMultiText_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule +.PHONY : QuickStudioMultiText_qmlcache + +# fast build rule for target. +QuickStudioMultiText_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build +.PHONY : QuickStudioMultiText_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule + +# Convenience name for target. +QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule +.PHONY : QuickStudioMultiText_resources_2 + +# fast build rule for target. +QuickStudioMultiText_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build +.PHONY : QuickStudioMultiText_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule +.PHONY : QuickStudioMultiTextplugin_init + +# fast build rule for target. +QuickStudioMultiTextplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build +.PHONY : QuickStudioMultiTextplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule +.PHONY : QuickStudioMultiText_autogen + +# fast build rule for target. +QuickStudioMultiText_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build +.PHONY : QuickStudioMultiText_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule +.PHONY : QuickStudioMultiTextplugin_autogen + +# fast build rule for target. +QuickStudioMultiTextplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build +.PHONY : QuickStudioMultiTextplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule +.PHONY : QuickStudioMultiText_qmlcache_autogen + +# fast build rule for target. +QuickStudioMultiText_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build +.PHONY : QuickStudioMultiText_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule +.PHONY : QuickStudioMultiTextplugin_init_autogen + +# fast build rule for target. +QuickStudioMultiTextplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build +.PHONY : QuickStudioMultiTextplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o + +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i + +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s + +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o + +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i + +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s + +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o + +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i + +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s + +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioMultiText_raw_qml_0.o: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioMultiText_raw_qml_0.i: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioMultiText_raw_qml_0.s: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_MultiText.o: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_MultiText.i: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_MultiText.s: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s + +QuickStudioMultiText_autogen/mocs_compilation.o: QuickStudioMultiText_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioMultiText_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.o + +QuickStudioMultiText_autogen/mocs_compilation.i: QuickStudioMultiText_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioMultiText_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.i + +QuickStudioMultiText_autogen/mocs_compilation.s: QuickStudioMultiText_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioMultiText_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.s + +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o + +# target to build an object file +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o + +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i + +# target to preprocess a source file +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i + +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s + +# target to generate assembly for a file +QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s +.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s + +QuickStudioMultiTextplugin_autogen/mocs_compilation.o: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o + +QuickStudioMultiTextplugin_autogen/mocs_compilation.i: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i + +QuickStudioMultiTextplugin_autogen/mocs_compilation.s: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s + +QuickStudioMultiTextplugin_init.o: QuickStudioMultiTextplugin_init.cpp.o +.PHONY : QuickStudioMultiTextplugin_init.o + +# target to build an object file +QuickStudioMultiTextplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o +.PHONY : QuickStudioMultiTextplugin_init.cpp.o + +QuickStudioMultiTextplugin_init.i: QuickStudioMultiTextplugin_init.cpp.i +.PHONY : QuickStudioMultiTextplugin_init.i + +# target to preprocess a source file +QuickStudioMultiTextplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i +.PHONY : QuickStudioMultiTextplugin_init.cpp.i + +QuickStudioMultiTextplugin_init.s: QuickStudioMultiTextplugin_init.cpp.s +.PHONY : QuickStudioMultiTextplugin_init.s + +# target to generate assembly for a file +QuickStudioMultiTextplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s +.PHONY : QuickStudioMultiTextplugin_init.cpp.s + +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s + +quickstudiomultitext_qmltyperegistrations.o: quickstudiomultitext_qmltyperegistrations.cpp.o +.PHONY : quickstudiomultitext_qmltyperegistrations.o + +# target to build an object file +quickstudiomultitext_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o +.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.o + +quickstudiomultitext_qmltyperegistrations.i: quickstudiomultitext_qmltyperegistrations.cpp.i +.PHONY : quickstudiomultitext_qmltyperegistrations.i + +# target to preprocess a source file +quickstudiomultitext_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i +.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.i + +quickstudiomultitext_qmltyperegistrations.s: quickstudiomultitext_qmltyperegistrations.cpp.s +.PHONY : quickstudiomultitext_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudiomultitext_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s +.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioMultiText_autogen" + @echo "... QuickStudioMultiText_automoc_json_extraction" + @echo "... QuickStudioMultiText_qmlcache_autogen" + @echo "... QuickStudioMultiText_qmllint" + @echo "... QuickStudioMultiText_qmllint_json" + @echo "... QuickStudioMultiText_qmllint_module" + @echo "... QuickStudioMultiText_qmltyperegistration" + @echo "... QuickStudioMultiTextplugin_autogen" + @echo "... QuickStudioMultiTextplugin_init_autogen" + @echo "... QuickStudioMultiText" + @echo "... QuickStudioMultiText_qmlcache" + @echo "... QuickStudioMultiText_resources_1" + @echo "... QuickStudioMultiText_resources_2" + @echo "... QuickStudioMultiText_tooling" + @echo "... QuickStudioMultiTextplugin" + @echo "... QuickStudioMultiTextplugin_init" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.s" + @echo "... QuickStudioMultiText_autogen/mocs_compilation.o" + @echo "... QuickStudioMultiText_autogen/mocs_compilation.i" + @echo "... QuickStudioMultiText_autogen/mocs_compilation.s" + @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o" + @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i" + @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s" + @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioMultiTextplugin_init.o" + @echo "... QuickStudioMultiTextplugin_init.i" + @echo "... QuickStudioMultiTextplugin_init.s" + @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudiomultitext_qmltyperegistrations.o" + @echo "... quickstudiomultitext_qmltyperegistrations.i" + @echo "... quickstudiomultitext_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp new file mode 100644 index 0000000..234fad5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_MultiText(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_MultiText) + +class QtQuick_Studio_MultiTextPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_MultiTextPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_MultiText; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp new file mode 100644 index 0000000..b82bdd6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_MultiTextPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake b/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake new file mode 100644 index 0000000..8f2fc57 --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json b/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt b/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks @@ -0,0 +1 @@ +10 diff --git a/build/_deps/ds-build/src/imports/tools/Makefile b/build/_deps/ds-build/src/imports/tools/Makefile new file mode 100644 index 0000000..77df26e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/tools/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/cmake_install.cmake new file mode 100644 index 0000000..f323843 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake") +endif() + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc new file mode 100644 index 0000000..b2f72e1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc @@ -0,0 +1,7 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml + + + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc new file mode 100644 index 0000000..7142528 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp new file mode 100644 index 0000000..ca685f8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp @@ -0,0 +1,2 @@ +/QtQuick/Studio/EventSimulator/EventSimulator.qml +/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp new file mode 100644 index 0000000..f2e2069 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp @@ -0,0 +1,13 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp new file mode 100644 index 0000000..ff3aefa --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp @@ -0,0 +1,15 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEventSimulator_qmllint.json diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp new file mode 100644 index 0000000..a57f960 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +--module +QtQuick.Studio.EventSimulator diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake new file mode 100644 index 0000000..4ee9215 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake @@ -0,0 +1,28 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make new file mode 100644 index 0000000..90c7f2d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make @@ -0,0 +1,208 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json + +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes --import-name=QtQuick.Studio.EventSimulator --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated/QuickStudioEventSimulator.qmltypes + +qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: qml/QtQuick/Studio/EventSimulator/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSimulator/EventSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: qml/QtQuick/Studio/EventSimulator/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml + +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp > CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp > CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s + +# Object files for target QuickStudioEventSimulator +QuickStudioEventSimulator_OBJECTS = \ +"CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" \ +"CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" + +# External object files for target QuickStudioEventSimulator +QuickStudioEventSimulator_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make +_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libQuickStudioEventSimulator.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSimulator.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build: _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake new file mode 100644 index 0000000..d3ff207 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake @@ -0,0 +1,26 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" + ".rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" + ".rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" + "CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt" + "QuickStudioEventSimulator_autogen" + "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" + "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" + "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d" + "libQuickStudioEventSimulator.a" + "libQuickStudioEventSimulator.pdb" + "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" + "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen" + "quickstudioeventsimulator_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..ad8b796 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioEventSimulator.a" +) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make new file mode 100644 index 0000000..fd3f0af --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulator. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts new file mode 100644 index 0000000..2932eb8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make new file mode 100644 index 0000000..e29fae6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulator. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make new file mode 100644 index 0000000..6480383 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt new file mode 100644 index 0000000..897f883 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEventSimulator.a CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEventSimulator.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make new file mode 100644 index 0000000..888e1d2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 69 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = 70 +CMAKE_PROGRESS_10 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..579770e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json @@ -0,0 +1,107 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make new file mode 100644 index 0000000..13596fd --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen +QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make +.PHONY : QuickStudioEventSimulator_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build: QuickStudioEventSimulator_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..b6b663a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulator_autogen" + "QuickStudioEventSimulator_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..62d2443 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..a3f37a7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..68ce35e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include + +QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction +QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioEventSimulator_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build: QuickStudioEventSimulator_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..83ebd7c --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction" + "meta_types/QuickStudioEventSimulator_json_file_list.txt" + "meta_types/QuickStudioEventSimulator_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..5e51bb0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..1dd77bb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..23b9e22 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make new file mode 100644 index 0000000..5707c5b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSimulator --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp > CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s + +QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o +QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make +.PHONY : QuickStudioEventSimulator_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build: QuickStudioEventSimulator_qmlcache +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..38065b6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioEventSimulator_qmlcache_autogen" + "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..d4b2973 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulator_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..a0a3efe --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_qmlcache. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make new file mode 100644 index 0000000..6546ffe --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulator_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make new file mode 100644 index 0000000..8efdba0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..87a82a9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,119 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..0d3791a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulator_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSimulator --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp + +QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp +QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen +QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioEventSimulator_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build: QuickStudioEventSimulator_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..94c919e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen" + "QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..81c6095 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..b218e65 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..eb08766 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 71 +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make new file mode 100644 index 0000000..b2959d0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp + +QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint +QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make +.PHONY : QuickStudioEventSimulator_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build: QuickStudioEventSimulator_qmllint +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..df5b6dc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulator_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..0cfff41 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..4484f09 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make new file mode 100644 index 0000000..1a61c6d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp + +QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json +QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make +.PHONY : QuickStudioEventSimulator_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build: QuickStudioEventSimulator_qmllint_json +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..f42b14b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulator_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..254e920 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..51225b2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make new file mode 100644 index 0000000..be24568 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp + +QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module +QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make +.PHONY : QuickStudioEventSimulator_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build: QuickStudioEventSimulator_qmllint_module +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b688ffb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulator_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..2dc2ca4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..f6af3b3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..487adfb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..7823cd5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes + +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes --import-name=QtQuick.Studio.EventSimulator --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated/QuickStudioEventSimulator.qmltypes + +qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes + +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json + +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp +QuickStudioEventSimulator_qmltyperegistration: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make +.PHONY : QuickStudioEventSimulator_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build: QuickStudioEventSimulator_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..7c83bdc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" + "CMakeFiles/QuickStudioEventSimulator_qmltyperegistration" + "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" + "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen" + "quickstudioeventsimulator_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..e29eb4e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..d42983a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..29b1631 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make new file mode 100644 index 0000000..699b824 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: qml/QtQuick/Studio/EventSimulator/qmldir +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_EventSimulator" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp --name qmake_QtQuick_Studio_EventSimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp > CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s + +QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o +QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make +.PHONY : QuickStudioEventSimulator_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build: QuickStudioEventSimulator_resources_1 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..75de37f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp" + "CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" + "CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..04fb73b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulator_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..d403be4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_resources_1. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make new file mode 100644 index 0000000..5f4fad0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulator_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make new file mode 100644 index 0000000..a82b377 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make new file mode 100644 index 0000000..47095a0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 72 + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..5421e46 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make new file mode 100644 index 0000000..8951e34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEventSimulator_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp --name QuickStudioEventSimulator_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp > CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s + +QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o +QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make +.PHONY : QuickStudioEventSimulator_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build: QuickStudioEventSimulator_resources_2 +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..69860e4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp" + "CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..5881f4a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulator_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..7fcdb2d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_resources_2. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make new file mode 100644 index 0000000..fc0e928 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulator_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make new file mode 100644 index 0000000..a82b377 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make new file mode 100644 index 0000000..562702a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulator_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make + +qml/QtQuick/Studio/EventSimulator/EventSimulator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying EventSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml + +qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying EventSimulatorDelegate.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml + +QuickStudioEventSimulator_tooling: qml/QtQuick/Studio/EventSimulator/EventSimulator.qml +QuickStudioEventSimulator_tooling: qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml +QuickStudioEventSimulator_tooling: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make +.PHONY : QuickStudioEventSimulator_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build: QuickStudioEventSimulator_tooling +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..e426a25 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSimulator/EventSimulator.qml" + "../../../../../../qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..abcad29 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulator_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..63902a3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_tooling. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..16367e3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make new file mode 100644 index 0000000..a5f419d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp > CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s + +# Object files for target QuickStudioEventSimulatorplugin +QuickStudioEventSimulatorplugin_OBJECTS = \ +"CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" + +# External object files for target QuickStudioEventSimulatorplugin +QuickStudioEventSimulatorplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o +qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make +qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build: qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..f10bcab --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" + "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.pdb" + "CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/ParseCache.txt" + "QuickStudioEventSimulatorplugin_autogen" + "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" + "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..3ba25c0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make new file mode 100644 index 0000000..82b049f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulatorplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..36574d2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulatorplugin. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make new file mode 100644 index 0000000..3bab85f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulatorplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make new file mode 100644 index 0000000..07cd90d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt new file mode 100644 index 0000000..815d163 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make new file mode 100644 index 0000000..a55374b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 73 +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ba25310 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,114 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.EventSimulator" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make new file mode 100644 index 0000000..1a6984f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulatorplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulatorplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen +QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make +.PHONY : QuickStudioEventSimulatorplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build: QuickStudioEventSimulatorplugin_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..3c034ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulatorplugin_autogen" + "QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..a75e010 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulatorplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..70395c2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulatorplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..0c08281 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make new file mode 100644 index 0000000..0d7b194 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp > CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s + +QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o +QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make +.PHONY : QuickStudioEventSimulatorplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build: QuickStudioEventSimulatorplugin_init +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..d2ecd50 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioEventSimulatorplugin_init_autogen" + "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" + "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..3742c4a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSimulatorplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..ba0f0a9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulatorplugin_init. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make new file mode 100644 index 0000000..955bda9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSimulatorplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make new file mode 100644 index 0000000..58de8df --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..6051ef8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,119 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..e11881f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSimulatorplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulatorplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen +QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make +.PHONY : QuickStudioEventSimulatorplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build: QuickStudioEventSimulatorplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..f279ded --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen" + "QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..39b129a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSimulatorplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..6e67c72 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSimulatorplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile b/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile new file mode 100644 index 0000000..2a671d2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile @@ -0,0 +1,739 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule +.PHONY : QuickStudioEventSimulator + +# fast build rule for target. +QuickStudioEventSimulator/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build +.PHONY : QuickStudioEventSimulator/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEventSimulator_automoc_json_extraction + +# fast build rule for target. +QuickStudioEventSimulator_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build +.PHONY : QuickStudioEventSimulator_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule +.PHONY : QuickStudioEventSimulator_qmltyperegistration + +# fast build rule for target. +QuickStudioEventSimulator_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build +.PHONY : QuickStudioEventSimulator_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule +.PHONY : QuickStudioEventSimulator_resources_1 + +# fast build rule for target. +QuickStudioEventSimulator_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build +.PHONY : QuickStudioEventSimulator_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule +.PHONY : QuickStudioEventSimulatorplugin + +# fast build rule for target. +QuickStudioEventSimulatorplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build +.PHONY : QuickStudioEventSimulatorplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint + +# fast build rule for target. +QuickStudioEventSimulator_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build +.PHONY : QuickStudioEventSimulator_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint_json + +# fast build rule for target. +QuickStudioEventSimulator_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build +.PHONY : QuickStudioEventSimulator_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule +.PHONY : QuickStudioEventSimulator_qmllint_module + +# fast build rule for target. +QuickStudioEventSimulator_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build +.PHONY : QuickStudioEventSimulator_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule +.PHONY : QuickStudioEventSimulator_qmlcache + +# fast build rule for target. +QuickStudioEventSimulator_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build +.PHONY : QuickStudioEventSimulator_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule +.PHONY : QuickStudioEventSimulator_resources_2 + +# fast build rule for target. +QuickStudioEventSimulator_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build +.PHONY : QuickStudioEventSimulator_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_init + +# fast build rule for target. +QuickStudioEventSimulatorplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build +.PHONY : QuickStudioEventSimulatorplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule +.PHONY : QuickStudioEventSimulator_autogen + +# fast build rule for target. +QuickStudioEventSimulator_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build +.PHONY : QuickStudioEventSimulator_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_autogen + +# fast build rule for target. +QuickStudioEventSimulatorplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build +.PHONY : QuickStudioEventSimulatorplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEventSimulator_qmlcache_autogen + +# fast build rule for target. +QuickStudioEventSimulator_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule +.PHONY : QuickStudioEventSimulatorplugin_init_autogen + +# fast build rule for target. +QuickStudioEventSimulatorplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i + +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s + +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s + +QuickStudioEventSimulator_autogen/mocs_compilation.o: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o + +QuickStudioEventSimulator_autogen/mocs_compilation.i: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i + +QuickStudioEventSimulator_autogen/mocs_compilation.s: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s + +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o + +# target to build an object file +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o + +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i + +# target to preprocess a source file +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i + +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s + +# target to generate assembly for a file +QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s + +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o + +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i + +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s + +QuickStudioEventSimulatorplugin_init.o: QuickStudioEventSimulatorplugin_init.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_init.o + +# target to build an object file +QuickStudioEventSimulatorplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_init.cpp.o + +QuickStudioEventSimulatorplugin_init.i: QuickStudioEventSimulatorplugin_init.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_init.i + +# target to preprocess a source file +QuickStudioEventSimulatorplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_init.cpp.i + +QuickStudioEventSimulatorplugin_init.s: QuickStudioEventSimulatorplugin_init.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_init.s + +# target to generate assembly for a file +QuickStudioEventSimulatorplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_init.cpp.s + +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s + +quickstudioeventsimulator_qmltyperegistrations.o: quickstudioeventsimulator_qmltyperegistrations.cpp.o +.PHONY : quickstudioeventsimulator_qmltyperegistrations.o + +# target to build an object file +quickstudioeventsimulator_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o +.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.o + +quickstudioeventsimulator_qmltyperegistrations.i: quickstudioeventsimulator_qmltyperegistrations.cpp.i +.PHONY : quickstudioeventsimulator_qmltyperegistrations.i + +# target to preprocess a source file +quickstudioeventsimulator_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i +.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.i + +quickstudioeventsimulator_qmltyperegistrations.s: quickstudioeventsimulator_qmltyperegistrations.cpp.s +.PHONY : quickstudioeventsimulator_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudioeventsimulator_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s +.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioEventSimulator_autogen" + @echo "... QuickStudioEventSimulator_automoc_json_extraction" + @echo "... QuickStudioEventSimulator_qmlcache_autogen" + @echo "... QuickStudioEventSimulator_qmllint" + @echo "... QuickStudioEventSimulator_qmllint_json" + @echo "... QuickStudioEventSimulator_qmllint_module" + @echo "... QuickStudioEventSimulator_qmltyperegistration" + @echo "... QuickStudioEventSimulatorplugin_autogen" + @echo "... QuickStudioEventSimulatorplugin_init_autogen" + @echo "... QuickStudioEventSimulator" + @echo "... QuickStudioEventSimulator_qmlcache" + @echo "... QuickStudioEventSimulator_resources_1" + @echo "... QuickStudioEventSimulator_resources_2" + @echo "... QuickStudioEventSimulator_tooling" + @echo "... QuickStudioEventSimulatorplugin" + @echo "... QuickStudioEventSimulatorplugin_init" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s" + @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o" + @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i" + @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s" + @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSimulatorplugin_init.o" + @echo "... QuickStudioEventSimulatorplugin_init.i" + @echo "... QuickStudioEventSimulatorplugin_init.s" + @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudioeventsimulator_qmltyperegistrations.o" + @echo "... quickstudioeventsimulator_qmltyperegistrations.i" + @echo "... quickstudioeventsimulator_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp new file mode 100644 index 0000000..33588e8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_EventSimulator(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_EventSimulator) + +class QtQuick_Studio_EventSimulatorPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_EventSimulatorPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_EventSimulator; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp new file mode 100644 index 0000000..455fd01 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_EventSimulatorPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake new file mode 100644 index 0000000..5618df9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc new file mode 100644 index 0000000..8abad38 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc @@ -0,0 +1,7 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml + /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml + + + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc new file mode 100644 index 0000000..6e077ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir + + + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp new file mode 100644 index 0000000..490a840 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp @@ -0,0 +1,2 @@ +/QtQuick/Studio/EventSystem/EventSystem.qml +/QtQuick/Studio/EventSystem/EventListener.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp new file mode 100644 index 0000000..ddc2111 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp @@ -0,0 +1,13 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp new file mode 100644 index 0000000..f588ebb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp @@ -0,0 +1,15 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEventSystem_qmllint.json diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp new file mode 100644 index 0000000..2f5e516 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +--module +QtQuick.Studio.EventSystem diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..d4639f0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake new file mode 100644 index 0000000..f300720 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake @@ -0,0 +1,28 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make new file mode 100644 index 0000000..8eb36b0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make @@ -0,0 +1,208 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json + +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes --import-name=QtQuick.Studio.EventSystem --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated/QuickStudioEventSystem.qmltypes + +qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: qml/QtQuick/Studio/EventSystem/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSystem/EventSystem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: qml/QtQuick/Studio/EventSystem/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSystem/EventListener.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml + +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6quickstudioeventsystem_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp > CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp > CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s + +# Object files for target QuickStudioEventSystem +QuickStudioEventSystem_OBJECTS = \ +"CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" \ +"CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" \ +"CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" + +# External object files for target QuickStudioEventSystem +QuickStudioEventSystem_EXTERNAL_OBJECTS = + +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make +_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libQuickStudioEventSystem.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSystem.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build: _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake new file mode 100644 index 0000000..0f27fb0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake @@ -0,0 +1,26 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" + ".rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" + ".rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" + "CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt" + "QuickStudioEventSystem_autogen" + "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" + "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d" + "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" + "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d" + "CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" + "CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d" + "libQuickStudioEventSystem.a" + "libQuickStudioEventSystem.pdb" + "meta_types/qt6quickstudioeventsystem_debug_metatypes.json" + "meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen" + "quickstudioeventsystem_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..191f4d9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libQuickStudioEventSystem.a" +) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make new file mode 100644 index 0000000..d020e33 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystem. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts new file mode 100644 index 0000000..702f6b5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make new file mode 100644 index 0000000..48756cc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystem. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make new file mode 100644 index 0000000..1132d3f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt new file mode 100644 index 0000000..3e8b27a --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEventSystem.a CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEventSystem.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make new file mode 100644 index 0000000..1483407 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = 74 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = 75 +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..0e08293 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json @@ -0,0 +1,107 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make new file mode 100644 index 0000000..2e52c00 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen +QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make +.PHONY : QuickStudioEventSystem_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build: QuickStudioEventSystem_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..b7e83bc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystem_autogen" + "QuickStudioEventSystem_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..1aa7163 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..1e6cd9b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..a0b5a1c --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include + +QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction +QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make +.PHONY : QuickStudioEventSystem_automoc_json_extraction + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build: QuickStudioEventSystem_automoc_json_extraction +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..4267a7f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystem_automoc_json_extraction" + "meta_types/QuickStudioEventSystem_json_file_list.txt" + "meta_types/QuickStudioEventSystem_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..8b8a8a7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..1b48a65 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..bf92b04 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make new file mode 100644 index 0000000..cd5eb28 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSystem --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp > CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s + +QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o +QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o +QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make +.PHONY : QuickStudioEventSystem_qmlcache + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build: QuickStudioEventSystem_qmlcache +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..981fb78 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/ParseCache.txt" + "QuickStudioEventSystem_qmlcache_autogen" + "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" + "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d" + "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..2ceb4ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystem_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..a1a0ef2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_qmlcache. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make new file mode 100644 index 0000000..4978e73 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystem_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make new file mode 100644 index 0000000..54943f5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make new file mode 100644 index 0000000..d1725e5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 76 +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ac4dfa3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,119 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..edede50 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystem_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json Debug + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSystem --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp + +QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp +QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen +QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make +.PHONY : QuickStudioEventSystem_qmlcache_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build: QuickStudioEventSystem_qmlcache_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..9d1a0b3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" + "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen" + "QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..213cbf4 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..3ad0fcc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make new file mode 100644 index 0000000..5a52ecb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_qmllint. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp + +QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint +QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make +.PHONY : QuickStudioEventSystem_qmllint + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build: QuickStudioEventSystem_qmllint +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..96fe837 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystem_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..b2ed2fd --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..dcc640e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make new file mode 100644 index 0000000..0c43bef --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_qmllint_json. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp + +QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json +QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make +.PHONY : QuickStudioEventSystem_qmllint_json + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build: QuickStudioEventSystem_qmllint_json +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..871c15b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystem_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..59b1e23 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..7318216 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make new file mode 100644 index 0000000..a645790 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make @@ -0,0 +1,90 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_qmllint_module. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /opt/homebrew/bin/qmllint +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp + +QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module +QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make +.PHONY : QuickStudioEventSystem_qmllint_module + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build: QuickStudioEventSystem_qmllint_module +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..9f9bc97 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystem_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..b78c6de --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..905da00 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..1f17a62 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..6ae0779 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes + +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes --import-name=QtQuick.Studio.EventSystem --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated/QuickStudioEventSystem.qmltypes + +qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes + +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeventsystem_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json + +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp +QuickStudioEventSystem_qmltyperegistration: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make +.PHONY : QuickStudioEventSystem_qmltyperegistration + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build: QuickStudioEventSystem_qmltyperegistration +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..9e93b95 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" + "CMakeFiles/QuickStudioEventSystem_qmltyperegistration" + "meta_types/qt6quickstudioeventsystem_debug_metatypes.json" + "meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen" + "quickstudioeventsystem_qmltyperegistrations.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..0c31663 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..1204776 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..870dd46 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 77 + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..5556a63 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make new file mode 100644 index 0000000..7e6ead9 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: qml/QtQuick/Studio/EventSystem/qmldir +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_EventSystem" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp --name qmake_QtQuick_Studio_EventSystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -MF CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp > CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s + +QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o +QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make +.PHONY : QuickStudioEventSystem_resources_1 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build: QuickStudioEventSystem_resources_1 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..cc905fa --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp" + "CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" + "CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..2fd5096 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystem_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..9c13cc3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_resources_1. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make new file mode 100644 index 0000000..8f1e9f2 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystem_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make new file mode 100644 index 0000000..887702d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..9a87697 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make new file mode 100644 index 0000000..d998da5 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEventSystem_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp --name QuickStudioEventSystem_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp > CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s + +QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o +QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make +.PHONY : QuickStudioEventSystem_resources_2 + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build: QuickStudioEventSystem_resources_2 +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..e6bae79 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp" + "CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" + "CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..1ff2319 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystem_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..2a5aff1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_resources_2. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make new file mode 100644 index 0000000..a1c3001 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystem_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make new file mode 100644 index 0000000..887702d --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make new file mode 100644 index 0000000..80500a8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystem_tooling. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make + +qml/QtQuick/Studio/EventSystem/EventSystem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying EventSystem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml + +qml/QtQuick/Studio/EventSystem/EventListener.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying EventListener.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml + +QuickStudioEventSystem_tooling: qml/QtQuick/Studio/EventSystem/EventListener.qml +QuickStudioEventSystem_tooling: qml/QtQuick/Studio/EventSystem/EventSystem.qml +QuickStudioEventSystem_tooling: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make +.PHONY : QuickStudioEventSystem_tooling + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build: QuickStudioEventSystem_tooling +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..7cca6ff --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSystem/EventListener.qml" + "../../../../../../qml/QtQuick/Studio/EventSystem/EventSystem.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..be9e1b1 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystem_tooling. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..43bae5e --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_tooling. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make new file mode 100644 index 0000000..3a909bb --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 78 + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..f2ae357 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make new file mode 100644 index 0000000..90d9f41 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp > CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s + +# Object files for target QuickStudioEventSystemplugin +QuickStudioEventSystemplugin_OBJECTS = \ +"CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" + +# External object files for target QuickStudioEventSystemplugin +QuickStudioEventSystemplugin_EXTERNAL_OBJECTS = + +qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o +qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o +qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make +qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build: qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..50d27ee --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" + "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.pdb" + "CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/ParseCache.txt" + "QuickStudioEventSystemplugin_autogen" + "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" + "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d" + "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..286c6fa --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" +) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make new file mode 100644 index 0000000..3e666bf --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystemplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..300e2af --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystemplugin. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make new file mode 100644 index 0000000..c108922 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystemplugin. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make new file mode 100644 index 0000000..909a6b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt new file mode 100644 index 0000000..72df108 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..3c7c1c6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,114 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.EventSystem" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make new file mode 100644 index 0000000..c19a502 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystemplugin_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystemplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen +QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make +.PHONY : QuickStudioEventSystemplugin_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build: QuickStudioEventSystemplugin_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..a05c00c --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystemplugin_autogen" + "QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..7d4b46c --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystemplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..7ac70f6 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystemplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..7cae2ab --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make new file mode 100644 index 0000000..19897c3 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp > CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s + +QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o +QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o +QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make +.PHONY : QuickStudioEventSystemplugin_init + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build: QuickStudioEventSystemplugin_init +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..1a5ba5f --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/ParseCache.txt" + "QuickStudioEventSystemplugin_init_autogen" + "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" + "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d" + "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..9715d15 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for QuickStudioEventSystemplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..70ee404 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for QuickStudioEventSystemplugin_init. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make new file mode 100644 index 0000000..ca50e61 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for QuickStudioEventSystemplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make new file mode 100644 index 0000000..2d91e52 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make new file mode 100644 index 0000000..c7053dd --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 79 + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..23d6bcc --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,119 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..61ed9ad --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for QuickStudioEventSystemplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystemplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json Debug + +QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen +QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make +.PHONY : QuickStudioEventSystemplugin_init_autogen + +# Rule to build all files generated by this target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build: QuickStudioEventSystemplugin_init_autogen +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean + +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..3a39688 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/QuickStudioEventSystemplugin_init_autogen" + "QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..6caa5c0 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for QuickStudioEventSystemplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..ac8837b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for QuickStudioEventSystemplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile b/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile new file mode 100644 index 0000000..2c6f394 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile @@ -0,0 +1,739 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule + +# Convenience name for target. +QuickStudioEventSystem: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule +.PHONY : QuickStudioEventSystem + +# fast build rule for target. +QuickStudioEventSystem/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build +.PHONY : QuickStudioEventSystem/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule +.PHONY : QuickStudioEventSystem_automoc_json_extraction + +# fast build rule for target. +QuickStudioEventSystem_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build +.PHONY : QuickStudioEventSystem_automoc_json_extraction/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule +.PHONY : QuickStudioEventSystem_qmltyperegistration + +# fast build rule for target. +QuickStudioEventSystem_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build +.PHONY : QuickStudioEventSystem_qmltyperegistration/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule +.PHONY : QuickStudioEventSystem_resources_1 + +# fast build rule for target. +QuickStudioEventSystem_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build +.PHONY : QuickStudioEventSystem_resources_1/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule +.PHONY : QuickStudioEventSystemplugin + +# fast build rule for target. +QuickStudioEventSystemplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build +.PHONY : QuickStudioEventSystemplugin/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule +.PHONY : QuickStudioEventSystem_qmllint + +# fast build rule for target. +QuickStudioEventSystem_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build +.PHONY : QuickStudioEventSystem_qmllint/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule +.PHONY : QuickStudioEventSystem_qmllint_json + +# fast build rule for target. +QuickStudioEventSystem_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build +.PHONY : QuickStudioEventSystem_qmllint_json/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule +.PHONY : QuickStudioEventSystem_qmllint_module + +# fast build rule for target. +QuickStudioEventSystem_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build +.PHONY : QuickStudioEventSystem_qmllint_module/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule +.PHONY : QuickStudioEventSystem_qmlcache + +# fast build rule for target. +QuickStudioEventSystem_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build +.PHONY : QuickStudioEventSystem_qmlcache/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule +.PHONY : QuickStudioEventSystem_resources_2 + +# fast build rule for target. +QuickStudioEventSystem_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build +.PHONY : QuickStudioEventSystem_resources_2/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule +.PHONY : QuickStudioEventSystemplugin_init + +# fast build rule for target. +QuickStudioEventSystemplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build +.PHONY : QuickStudioEventSystemplugin_init/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule +.PHONY : QuickStudioEventSystem_autogen + +# fast build rule for target. +QuickStudioEventSystem_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build +.PHONY : QuickStudioEventSystem_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule +.PHONY : QuickStudioEventSystemplugin_autogen + +# fast build rule for target. +QuickStudioEventSystemplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build +.PHONY : QuickStudioEventSystemplugin_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule +.PHONY : QuickStudioEventSystem_qmlcache_autogen + +# fast build rule for target. +QuickStudioEventSystem_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build +.PHONY : QuickStudioEventSystem_qmlcache_autogen/fast + +# Convenience name for target. +_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule +.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule + +# Convenience name for target. +QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule +.PHONY : QuickStudioEventSystemplugin_init_autogen + +# fast build rule for target. +QuickStudioEventSystemplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build +.PHONY : QuickStudioEventSystemplugin_init_autogen/fast + +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o + +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i + +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s + +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o + +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i + +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s + +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o + +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i + +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s + +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.o: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.o + +# target to build an object file +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o + +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.i: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i + +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.s: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s + +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.o: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.o + +# target to build an object file +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o + +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.i: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.i + +# target to preprocess a source file +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i + +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.s: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.s + +# target to generate assembly for a file +.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s +.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s + +QuickStudioEventSystem_autogen/mocs_compilation.o: QuickStudioEventSystem_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.o + +QuickStudioEventSystem_autogen/mocs_compilation.i: QuickStudioEventSystem_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSystem_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.i + +QuickStudioEventSystem_autogen/mocs_compilation.s: QuickStudioEventSystem_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSystem_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.s + +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o + +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i + +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s + +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o + +# target to build an object file +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o + +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i + +# target to preprocess a source file +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i + +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s + +# target to generate assembly for a file +QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s +.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s + +QuickStudioEventSystemplugin_autogen/mocs_compilation.o: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o + +QuickStudioEventSystemplugin_autogen/mocs_compilation.i: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i + +QuickStudioEventSystemplugin_autogen/mocs_compilation.s: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s + +QuickStudioEventSystemplugin_init.o: QuickStudioEventSystemplugin_init.cpp.o +.PHONY : QuickStudioEventSystemplugin_init.o + +# target to build an object file +QuickStudioEventSystemplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o +.PHONY : QuickStudioEventSystemplugin_init.cpp.o + +QuickStudioEventSystemplugin_init.i: QuickStudioEventSystemplugin_init.cpp.i +.PHONY : QuickStudioEventSystemplugin_init.i + +# target to preprocess a source file +QuickStudioEventSystemplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i +.PHONY : QuickStudioEventSystemplugin_init.cpp.i + +QuickStudioEventSystemplugin_init.s: QuickStudioEventSystemplugin_init.cpp.s +.PHONY : QuickStudioEventSystemplugin_init.s + +# target to generate assembly for a file +QuickStudioEventSystemplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s +.PHONY : QuickStudioEventSystemplugin_init.cpp.s + +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o + +# target to build an object file +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o + +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i + +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s + +quickstudioeventsystem_qmltyperegistrations.o: quickstudioeventsystem_qmltyperegistrations.cpp.o +.PHONY : quickstudioeventsystem_qmltyperegistrations.o + +# target to build an object file +quickstudioeventsystem_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o +.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.o + +quickstudioeventsystem_qmltyperegistrations.i: quickstudioeventsystem_qmltyperegistrations.cpp.i +.PHONY : quickstudioeventsystem_qmltyperegistrations.i + +# target to preprocess a source file +quickstudioeventsystem_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i +.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.i + +quickstudioeventsystem_qmltyperegistrations.s: quickstudioeventsystem_qmltyperegistrations.cpp.s +.PHONY : quickstudioeventsystem_qmltyperegistrations.s + +# target to generate assembly for a file +quickstudioeventsystem_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s +.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... QuickStudioEventSystem_autogen" + @echo "... QuickStudioEventSystem_automoc_json_extraction" + @echo "... QuickStudioEventSystem_qmlcache_autogen" + @echo "... QuickStudioEventSystem_qmllint" + @echo "... QuickStudioEventSystem_qmllint_json" + @echo "... QuickStudioEventSystem_qmllint_module" + @echo "... QuickStudioEventSystem_qmltyperegistration" + @echo "... QuickStudioEventSystemplugin_autogen" + @echo "... QuickStudioEventSystemplugin_init_autogen" + @echo "... QuickStudioEventSystem" + @echo "... QuickStudioEventSystem_qmlcache" + @echo "... QuickStudioEventSystem_resources_1" + @echo "... QuickStudioEventSystem_resources_2" + @echo "... QuickStudioEventSystem_tooling" + @echo "... QuickStudioEventSystemplugin" + @echo "... QuickStudioEventSystemplugin_init" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i" + @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s" + @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.o" + @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.i" + @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.o" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.i" + @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.s" + @echo "... QuickStudioEventSystem_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSystem_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSystem_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o" + @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i" + @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s" + @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.s" + @echo "... QuickStudioEventSystemplugin_init.o" + @echo "... QuickStudioEventSystemplugin_init.i" + @echo "... QuickStudioEventSystemplugin_init.s" + @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o" + @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i" + @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s" + @echo "... quickstudioeventsystem_qmltyperegistrations.o" + @echo "... quickstudioeventsystem_qmltyperegistrations.i" + @echo "... quickstudioeventsystem_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp new file mode 100644 index 0000000..61b189b --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_QtQuick_Studio_EventSystem(); +Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_EventSystem) + +class QtQuick_Studio_EventSystemPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + QtQuick_Studio_EventSystemPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_QtQuick_Studio_EventSystem; + Q_UNUSED(registration) + } +}; + + + +#include "QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp new file mode 100644 index 0000000..6585402 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(QtQuick_Studio_EventSystemPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake new file mode 100644 index 0000000..3017f21 --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json b/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-src b/build/_deps/ds-src new file mode 160000 index 0000000..5ba114d --- /dev/null +++ b/build/_deps/ds-src @@ -0,0 +1 @@ +Subproject commit 5ba114da668f702d507175200783bcd780924ae0 diff --git a/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake b/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake new file mode 100644 index 0000000..ee7545f --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Darwin-23.4.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "23.4.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") + + + +set(CMAKE_SYSTEM "Darwin-23.4.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "23.4.0") +set(CMAKE_SYSTEM_PROCESSOR "arm64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..a595871 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Darwin - 23.4.0 - arm64 +... diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c18d36b --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt b/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..56d7c13 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +0ab7f4e4b72a03b8f451138e6c5be929 CMakeFiles/ds-populate +17927b0312cdfb2830b8a3f117f7a944 CMakeFiles/ds-populate-complete +b39b81d88793eaa5f65604a594229b06 ds-populate-prefix/src/ds-populate-stamp/ds-populate-build +6a2a3e7d503fa3b1c0f94105281a1e7d ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure +ae54d8c36c11dccedf717a4ebe41aba3 ds-populate-prefix/src/ds-populate-stamp/ds-populate-download +a6b36b80e3a88bc116f1bc12e7fd78c9 ds-populate-prefix/src/ds-populate-stamp/ds-populate-install +4107f2308cb9d40ef5b8d418b792ba26 ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir +4a8d080694ef0a9d8d25cdb954fb4eb1 ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch +a89e228f5622fe117f7f1193c75f5d28 ds-populate-prefix/src/ds-populate-stamp/ds-populate-test +8f2fd4fb196b182a5cac45a6101a7e31 ds-populate-prefix/src/ds-populate-stamp/ds-populate-update diff --git a/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake b/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..ac84c76 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake @@ -0,0 +1,52 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/3.27.8/CMakeSystem.cmake" + "CMakeLists.txt" + "ds-populate-prefix/tmp/ds-populate-mkdirs.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/PatchInfo.txt.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/RepositoryInfo.txt.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/UpdateInfo.txt.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/cfgcmd.txt.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/gitclone.cmake.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/gitupdate.cmake.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/mkdirs.cmake.in" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "ds-populate-prefix/tmp/ds-populate-mkdirs.cmake" + "ds-populate-prefix/tmp/ds-populate-gitclone.cmake" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" + "ds-populate-prefix/tmp/ds-populate-gitupdate.cmake" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt" + "ds-populate-prefix/tmp/ds-populate-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/ds-populate.dir/DependInfo.cmake" + ) diff --git a/build/_deps/ds-subbuild/CMakeFiles/Makefile2 b/build/_deps/ds-subbuild/CMakeFiles/Makefile2 new file mode 100644 index 0000000..366c16a --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/ds-populate.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/ds-populate.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/ds-populate.dir + +# All Build rule for target. +CMakeFiles/ds-populate.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target ds-populate" +.PHONY : CMakeFiles/ds-populate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ds-populate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/ds-populate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 0 +.PHONY : CMakeFiles/ds-populate.dir/rule + +# Convenience name for target. +ds-populate: CMakeFiles/ds-populate.dir/rule +.PHONY : ds-populate + +# clean rule for target. +CMakeFiles/ds-populate.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/clean +.PHONY : CMakeFiles/ds-populate.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt b/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..eba67bd --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache b/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete b/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json new file mode 100644 index 0000000..9ab0a71 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test.rule" + }, + { + "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "ds-populate" + ], + "name" : "ds-populate" + } +} \ No newline at end of file diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt new file mode 100644 index 0000000..79f3129 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + ds-populate +# Source files and their labels +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test.rule +/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update.rule diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make new file mode 100644 index 0000000..bfc36a0 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make @@ -0,0 +1,159 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +# Utility rule file for ds-populate. + +# Include any custom commands dependencies for this target. +include CMakeFiles/ds-populate.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/ds-populate.dir/progress.make + +CMakeFiles/ds-populate: CMakeFiles/ds-populate-complete + +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install +CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-test + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'ds-populate'" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: +.PHONY : ds-populate-prefix/src/ds-populate-stamp/ds-populate-update + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-build: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure: ds-populate-prefix/tmp/ds-populate-cfgcmd.txt +ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-download: ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt +ds-populate-prefix/src/ds-populate-stamp/ds-populate-download: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/_deps && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-install: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'ds-populate'" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -Dcfgdir= -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt +ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'ds-populate'" + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: +.PHONY : ds-populate-prefix/src/ds-populate-stamp/ds-populate-update + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-test: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test + +ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/tmp/ds-populate-gitupdate.cmake +ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt +ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'ds-populate'" + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -Dcan_fetch=YES -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake + +ds-populate: CMakeFiles/ds-populate +ds-populate: CMakeFiles/ds-populate-complete +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-test +ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update +ds-populate: CMakeFiles/ds-populate.dir/build.make +.PHONY : ds-populate + +# Rule to build all files generated by this target. +CMakeFiles/ds-populate.dir/build: ds-populate +.PHONY : CMakeFiles/ds-populate.dir/build + +CMakeFiles/ds-populate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ds-populate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ds-populate.dir/clean + +CMakeFiles/ds-populate.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/ds-populate.dir/depend + diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake new file mode 100644 index 0000000..a6e2904 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/ds-populate" + "CMakeFiles/ds-populate-complete" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-build" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-download" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-install" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-test" + "ds-populate-prefix/src/ds-populate-stamp/ds-populate-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ds-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make new file mode 100644 index 0000000..b443413 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for ds-populate. +# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts new file mode 100644 index 0000000..db9b834 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for ds-populate. diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make new file mode 100644 index 0000000..d4f6ce3 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/build/_deps/ds-subbuild/CMakeFiles/progress.marks b/build/_deps/ds-subbuild/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build/_deps/ds-subbuild/CMakeLists.txt b/build/_deps/ds-subbuild/CMakeLists.txt new file mode 100644 index 0000000..94a204a --- /dev/null +++ b/build/_deps/ds-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.27.8) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(ds-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[/opt/homebrew/bin/git]==]) +set(GIT_VERSION_STRING [==[2.42.1]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[/opt/homebrew/bin/git;2.42.1]==] +) + + +include(ExternalProject) +ExternalProject_Add(ds-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://code.qt.io/qt-labs/qtquickdesigner-components.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "qds-4.1" + SOURCE_DIR "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + BINARY_DIR "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/build/_deps/ds-subbuild/Makefile b/build/_deps/ds-subbuild/Makefile new file mode 100644 index 0000000..c7b9708 --- /dev/null +++ b/build/_deps/ds-subbuild/Makefile @@ -0,0 +1,154 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named ds-populate + +# Build rule for target. +ds-populate: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ds-populate +.PHONY : ds-populate + +# fast build rule for target. +ds-populate/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/build +.PHONY : ds-populate/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... ds-populate" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/_deps/ds-subbuild/cmake_install.cmake b/build/_deps/ds-subbuild/cmake_install.cmake new file mode 100644 index 0000000..cb107ca --- /dev/null +++ b/build/_deps/ds-subbuild/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt new file mode 100644 index 0000000..cb43566 --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake +source_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src +work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps +repository=https://code.qt.io/qt-labs/qtquickdesigner-components.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt new file mode 100644 index 0000000..cb43566 --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake +source_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src +work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps +repository=https://code.qt.io/qt-labs/qtquickdesigner-components.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test new file mode 100644 index 0000000..e69de29 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt new file mode 100644 index 0000000..f8cd43e --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-Dcan_fetch=YES;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake +command (disconnected)=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-Dcan_fetch=NO;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake +work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake new file mode 100644 index 0000000..18f4870 --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake @@ -0,0 +1,73 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" AND EXISTS "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" AND + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" IS_NEWER_THAN "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt") + message(STATUS + "Avoiding repeated git clone, stamp file is up to date: " + "'/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/opt/homebrew/bin/git" + clone --no-checkout --config "advice.detachedHead=false" "https://code.qt.io/qt-labs/qtquickdesigner-components.git" "ds-src" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps" + RESULT_VARIABLE error_code + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(STATUS "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://code.qt.io/qt-labs/qtquickdesigner-components.git'") +endif() + +execute_process( + COMMAND "/opt/homebrew/bin/git" + checkout "qds-4.1" -- + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'qds-4.1'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/opt/homebrew/bin/git" + submodule update --recursive --init + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt'") +endif() diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake new file mode 100644 index 0000000..ca8c793 --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake @@ -0,0 +1,292 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL LAST + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + + +execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git show-ref "qds-4.1" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "qds-4.1") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("qds-4.1" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: ${tag_sha}") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "qds-4.1") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/qds-4.1") + +else() + get_hash_for_ref("qds-4.1" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"qds-4.1\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(VERBOSE "${error_msg}") + endif() + do_fetch() + set(checkout_name "qds-4.1") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "qds-4.1") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git status --porcelain + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL ANY + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL ANY + ) +else() + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git rebase --abort + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL ANY + ) + + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL ANY + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + ) + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + ) + execute_process( + COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + ) + message(FATAL_ERROR "\nFailed to unstash changes in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "/opt/homebrew/bin/git" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + COMMAND_ERROR_IS_FATAL ANY + ) +endif() diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake new file mode 100644 index 0000000..3c26ec4 --- /dev/null +++ b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake @@ -0,0 +1,22 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +file(MAKE_DIRECTORY + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src" + "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..5de9e91 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,77 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/content/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + execute_process(COMMAND /Users/mason/anaconda3/bin/install_name_tool + -delete_rpath "/opt/homebrew/lib" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/strip" -u -r "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..3b141a2 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,1310 @@ +[ +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", + "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", + "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", + "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", + "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", + "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", + "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -I/opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", + "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "output": "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "output": "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "output": "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "output": "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "output": "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "output": "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", + "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/can.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", + "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", + "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", + "output": "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", + "output": "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" +} +] \ No newline at end of file diff --git a/build/content/.rcc/content_raw_qml_0.qrc b/build/content/.rcc/content_raw_qml_0.qrc new file mode 100644 index 0000000..c5acace --- /dev/null +++ b/build/content/.rcc/content_raw_qml_0.qrc @@ -0,0 +1,13 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf + + + diff --git a/build/content/.rcc/qmake_content.qrc b/build/content/.rcc/qmake_content.qrc new file mode 100644 index 0000000..77595ae --- /dev/null +++ b/build/content/.rcc/qmake_content.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir + + + diff --git a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp new file mode 100644 index 0000000..27a04d1 --- /dev/null +++ b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp @@ -0,0 +1,6 @@ +/content/App.qml +/content/Screen01.ui.qml +/content/Speedometer.qml +/content/BatterySlider.qml +/content/TempSlider.qml +/content/WarningSymbol.qml diff --git a/build/content/.rcc/qmllint/content.rsp b/build/content/.rcc/qmllint/content.rsp new file mode 100644 index 0000000..f09eae5 --- /dev/null +++ b/build/content/.rcc/qmllint/content.rsp @@ -0,0 +1,17 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml diff --git a/build/content/.rcc/qmllint/content_json.rsp b/build/content/.rcc/qmllint/content_json.rsp new file mode 100644 index 0000000..f88c02b --- /dev/null +++ b/build/content/.rcc/qmllint/content_json.rsp @@ -0,0 +1,19 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/content_qmllint.json diff --git a/build/content/.rcc/qmllint/content_module.rsp b/build/content/.rcc/qmllint/content_module.rsp new file mode 100644 index 0000000..111749f --- /dev/null +++ b/build/content/.rcc/qmllint/content_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +--module +content diff --git a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5819b47 --- /dev/null +++ b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/content/CMakeFiles/content.dir/DependInfo.cmake b/build/content/CMakeFiles/content.dir/DependInfo.cmake new file mode 100644 index 0000000..6848ad0 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/DependInfo.cmake @@ -0,0 +1,32 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content.dir/build.make b/build/content/CMakeFiles/content.dir/build.make new file mode 100644 index 0000000..148be13 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/build.make @@ -0,0 +1,316 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content.dir/flags.make + +content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + +content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt +content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes + +qml/content/content.qmltypes: content/content_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/content/content.qmltypes + +content/.rcc/qmlcache/content_App_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_App_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_App_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_App_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/content_App_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/App.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/content_Screen01.ui_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Screen01.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + +content/.rcc/qmlcache/content_Speedometer_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_Speedometer_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_Speedometer_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_Speedometer_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/content_Speedometer_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Speedometer.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/content_BatterySlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + +content/.rcc/qmlcache/content_TempSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_TempSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_TempSlider_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_TempSlider_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/content_TempSlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TempSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: qml/content/content.qmltypes +content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: qml/content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/content_WarningSymbol_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/WarningSymbol.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml + +content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating meta_types/qt6content_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/content_autogen/mocs_compilation.cpp +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp > CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -MF CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp > CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/.rcc/qmlcache/content_App_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/.rcc/qmlcache/content_Speedometer_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_BatterySlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/.rcc/qmlcache/content_TempSlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/.rcc/qmlcache/content_WarningSymbol_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s + +# Object files for target content +content_OBJECTS = \ +"CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" + +# External object files for target content +content_EXTERNAL_OBJECTS = + +content/libcontent.a: content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/build.make +content/libcontent.a: content/CMakeFiles/content.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Linking CXX static library libcontent.a" + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/content.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +content/CMakeFiles/content.dir/build: content/libcontent.a +.PHONY : content/CMakeFiles/content.dir/build + +content/CMakeFiles/content.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content.dir/clean + +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_App_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatterySlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Speedometer_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TempSlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_WarningSymbol_qml.cpp +content/CMakeFiles/content.dir/depend: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json +content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json.gen +content/CMakeFiles/content.dir/depend: qml/content/content.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content.dir/depend + diff --git a/build/content/CMakeFiles/content.dir/cmake_clean.cmake b/build/content/CMakeFiles/content.dir/cmake_clean.cmake new file mode 100644 index 0000000..cfa91a0 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/cmake_clean.cmake @@ -0,0 +1,38 @@ +file(REMOVE_RECURSE + "../qml/content/content.qmltypes" + ".rcc/qmlcache/content_App_qml.cpp" + ".rcc/qmlcache/content_BatterySlider_qml.cpp" + ".rcc/qmlcache/content_Screen01.ui_qml.cpp" + ".rcc/qmlcache/content_Speedometer_qml.cpp" + ".rcc/qmlcache/content_TempSlider_qml.cpp" + ".rcc/qmlcache/content_WarningSymbol_qml.cpp" + "CMakeFiles/content_autogen.dir/AutogenUsed.txt" + "CMakeFiles/content_autogen.dir/ParseCache.txt" + "content_autogen" + "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d" + "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" + "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" + "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" + "content_qmltyperegistrations.cpp" + "libcontent.a" + "libcontent.pdb" + "meta_types/qt6content_debug_metatypes.json" + "meta_types/qt6content_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8bbd60e --- /dev/null +++ b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libcontent.a" +) diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.make b/build/content/CMakeFiles/content.dir/compiler_depend.make new file mode 100644 index 0000000..5ebb3e6 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.ts b/build/content/CMakeFiles/content.dir/compiler_depend.ts new file mode 100644 index 0000000..b42d30e --- /dev/null +++ b/build/content/CMakeFiles/content.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content. diff --git a/build/content/CMakeFiles/content.dir/depend.make b/build/content/CMakeFiles/content.dir/depend.make new file mode 100644 index 0000000..41ab280 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/flags.make b/build/content/CMakeFiles/content.dir/flags.make new file mode 100644 index 0000000..869a657 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content.dir/link.txt b/build/content/CMakeFiles/content.dir/link.txt new file mode 100644 index 0000000..64f081b --- /dev/null +++ b/build/content/CMakeFiles/content.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libcontent.a CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libcontent.a diff --git a/build/content/CMakeFiles/content.dir/progress.make b/build/content/CMakeFiles/content.dir/progress.make new file mode 100644 index 0000000..df7d1de --- /dev/null +++ b/build/content/CMakeFiles/content.dir/progress.make @@ -0,0 +1,19 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 93 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = 94 +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 95 +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = + diff --git a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..85a42ed --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json @@ -0,0 +1,115 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen.dir/build.make b/build/content/CMakeFiles/content_autogen.dir/build.make new file mode 100644 index 0000000..c872bc7 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_autogen.dir/progress.make + +content/CMakeFiles/content_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug + +content_autogen: content/CMakeFiles/content_autogen +content_autogen: content/CMakeFiles/content_autogen.dir/build.make +.PHONY : content_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/content_autogen.dir/build: content_autogen +.PHONY : content/CMakeFiles/content_autogen.dir/build + +content/CMakeFiles/content_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_autogen.dir/clean + +content/CMakeFiles/content_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_autogen.dir/depend + diff --git a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..870483e --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_autogen" + "content_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..6f50c80 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..d4a1a6a --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_autogen. diff --git a/build/content/CMakeFiles/content_autogen.dir/progress.make b/build/content/CMakeFiles/content_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake b/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..e888f2f --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_automoc_json_extraction.dir/progress.make + +content/CMakeFiles/content_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include + +content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction +content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/build.make +.PHONY : content_automoc_json_extraction + +# Rule to build all files generated by this target. +content/CMakeFiles/content_automoc_json_extraction.dir/build: content_automoc_json_extraction +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/build + +content/CMakeFiles/content_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/clean + +content/CMakeFiles/content_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/depend + diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..742f2e1 --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_automoc_json_extraction" + "meta_types/content_json_file_list.txt" + "meta_types/content_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..c412f83 --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..790fece --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_automoc_json_extraction. diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..8a3644e --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp" "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" "gcc" "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp" "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmlcache.dir/build.make b/build/content/CMakeFiles/content_qmlcache.dir/build.make new file mode 100644 index 0000000..84b0ce4 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content_qmlcache.dir/flags.make + +content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content_qmlcache.dir/flags.make +content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/content_qmlcache_autogen/mocs_compilation.cpp +content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp + +content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content_qmlcache.dir/flags.make +content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/.rcc/qmlcache/content_qmlcache_loader.cpp +content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -MF CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp + +content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp > CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i + +content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s + +content_qmlcache: content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o +content_qmlcache: content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o +content_qmlcache: content/CMakeFiles/content_qmlcache.dir/build.make +.PHONY : content_qmlcache + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmlcache.dir/build: content_qmlcache +.PHONY : content/CMakeFiles/content_qmlcache.dir/build + +content/CMakeFiles/content_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmlcache.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmlcache.dir/clean + +content/CMakeFiles/content_qmlcache.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmlcache.dir/depend + diff --git a/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..c27caff --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/content_qmlcache_autogen.dir/ParseCache.txt" + "content_qmlcache_autogen" + "CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" + "CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" + "CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..f39a886 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..6653be4 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content_qmlcache. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/depend.make b/build/content/CMakeFiles/content_qmlcache.dir/depend.make new file mode 100644 index 0000000..17674e5 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/flags.make b/build/content/CMakeFiles/content_qmlcache.dir/flags.make new file mode 100644 index 0000000..6eeee77 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content_qmlcache.dir/progress.make b/build/content/CMakeFiles/content_qmlcache.dir/progress.make new file mode 100644 index 0000000..f07b37a --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 96 + diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..1f697eb --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,127 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..c448396 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmlcache_autogen.dir/progress.make + +content/CMakeFiles/content_qmlcache_autogen: content/.rcc/qmlcache/content_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json Debug + +content/.rcc/qmlcache/content_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmlcache/content_qml_loader_file_list.rsp +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/content_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/content_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_content --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp + +content_qmlcache_autogen: content/.rcc/qmlcache/content_qmlcache_loader.cpp +content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen +content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/build.make +.PHONY : content_qmlcache_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmlcache_autogen.dir/build: content_qmlcache_autogen +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/build + +content/CMakeFiles/content_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/clean + +content/CMakeFiles/content_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/depend + diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..96f86e6 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/content_qmlcache_loader.cpp" + "CMakeFiles/content_qmlcache_autogen" + "content_qmlcache_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..289671b --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..84c20fe --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmlcache_autogen. diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint.dir/build.make b/build/content/CMakeFiles/content_qmllint.dir/build.make new file mode 100644 index 0000000..e11d25c --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/build.make @@ -0,0 +1,94 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint.dir/progress.make + +content/CMakeFiles/content_qmllint: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +content/CMakeFiles/content_qmllint: content/.rcc/qmllint/content.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content.rsp + +content_qmllint: content/CMakeFiles/content_qmllint +content_qmllint: content/CMakeFiles/content_qmllint.dir/build.make +.PHONY : content_qmllint + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint.dir/build: content_qmllint +.PHONY : content/CMakeFiles/content_qmllint.dir/build + +content/CMakeFiles/content_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint.dir/clean + +content/CMakeFiles/content_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..7c52960 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..cd46e39 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..8e8f87e --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint. diff --git a/build/content/CMakeFiles/content_qmllint.dir/progress.make b/build/content/CMakeFiles/content_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/build.make b/build/content/CMakeFiles/content_qmllint_json.dir/build.make new file mode 100644 index 0000000..8b6c433 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/build.make @@ -0,0 +1,94 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint_json. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint_json.dir/progress.make + +content/CMakeFiles/content_qmllint_json: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +content/CMakeFiles/content_qmllint_json: content/.rcc/qmllint/content_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_json.rsp + +content_qmllint_json: content/CMakeFiles/content_qmllint_json +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/build.make +.PHONY : content_qmllint_json + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint_json.dir/build: content_qmllint_json +.PHONY : content/CMakeFiles/content_qmllint_json.dir/build + +content/CMakeFiles/content_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean + +content/CMakeFiles/content_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint_json.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..3b5be7b --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..c249484 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..9a27907 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint_json. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/build.make b/build/content/CMakeFiles/content_qmllint_module.dir/build.make new file mode 100644 index 0000000..83134c5 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/build.make @@ -0,0 +1,94 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint_module. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint_module.dir/progress.make + +content/CMakeFiles/content_qmllint_module: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +content/CMakeFiles/content_qmllint_module: content/.rcc/qmllint/content_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_module.rsp + +content_qmllint_module: content/CMakeFiles/content_qmllint_module +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/build.make +.PHONY : content_qmllint_module + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint_module.dir/build: content_qmllint_module +.PHONY : content/CMakeFiles/content_qmllint_module.dir/build + +content/CMakeFiles/content_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean + +content/CMakeFiles/content_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint_module.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..fc5cd8a --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..3894382 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..c701c55 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint_module. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..6270509 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..f302967 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmltyperegistration.dir/progress.make + +content/CMakeFiles/content_qmltyperegistration: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content_qmltyperegistration: qml/content/content.qmltypes + +content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt +content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes + +qml/content/content.qmltypes: content/content_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/content/content.qmltypes + +content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6content_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration +content_qmltyperegistration: content/content_qmltyperegistrations.cpp +content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json +content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json.gen +content_qmltyperegistration: qml/content/content.qmltypes +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/build.make +.PHONY : content_qmltyperegistration + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmltyperegistration.dir/build: content_qmltyperegistration +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/build + +content/CMakeFiles/content_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean + +content/CMakeFiles/content_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/depend + diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..73345da --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../qml/content/content.qmltypes" + "CMakeFiles/content_qmltyperegistration" + "content_qmltyperegistrations.cpp" + "meta_types/qt6content_debug_metatypes.json" + "meta_types/qt6content_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..bcc5759 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..b5ac76f --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmltyperegistration. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..67643d9 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" "gcc" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_1.dir/build.make b/build/content/CMakeFiles/content_resources_1.dir/build.make new file mode 100644 index 0000000..5a3f51d --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content_resources_1.dir/flags.make + +content/.rcc/qrc_qmake_content.cpp: qml/content/qmldir +content/.rcc/qrc_qmake_content.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qrc_qmake_content.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp --name qmake_content /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content_resources_1.dir/flags.make +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/.rcc/qrc_qmake_content.cpp +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -MF CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp > CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s + +content_resources_1: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o +content_resources_1: content/CMakeFiles/content_resources_1.dir/build.make +.PHONY : content_resources_1 + +# Rule to build all files generated by this target. +content/CMakeFiles/content_resources_1.dir/build: content_resources_1 +.PHONY : content/CMakeFiles/content_resources_1.dir/build + +content/CMakeFiles/content_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_1.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_resources_1.dir/clean + +content/CMakeFiles/content_resources_1.dir/depend: content/.rcc/qrc_qmake_content.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_resources_1.dir/depend + diff --git a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..0404d80 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_content.cpp" + "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" + "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..80fcb9a --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..a8149ac --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content_resources_1. diff --git a/build/content/CMakeFiles/content_resources_1.dir/depend.make b/build/content/CMakeFiles/content_resources_1.dir/depend.make new file mode 100644 index 0000000..ec5b3e6 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/flags.make b/build/content/CMakeFiles/content_resources_1.dir/flags.make new file mode 100644 index 0000000..d5532de --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content_resources_1.dir/progress.make b/build/content/CMakeFiles/content_resources_1.dir/progress.make new file mode 100644 index 0000000..cf90e91 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 97 +CMAKE_PROGRESS_2 = + diff --git a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..c7d4569 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" "gcc" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_2.dir/build.make b/build/content/CMakeFiles/content_resources_2.dir/build.make new file mode 100644 index 0000000..1938060 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content_resources_2.dir/flags.make + +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf +content/.rcc/qrc_content_raw_qml_0.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qrc_content_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource content_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp --name content_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content_resources_2.dir/flags.make +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/.rcc/qrc_content_raw_qml_0.cpp +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -MF CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp > CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s + +content_resources_2: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o +content_resources_2: content/CMakeFiles/content_resources_2.dir/build.make +.PHONY : content_resources_2 + +# Rule to build all files generated by this target. +content/CMakeFiles/content_resources_2.dir/build: content_resources_2 +.PHONY : content/CMakeFiles/content_resources_2.dir/build + +content/CMakeFiles/content_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_2.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_resources_2.dir/clean + +content/CMakeFiles/content_resources_2.dir/depend: content/.rcc/qrc_content_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_resources_2.dir/depend + diff --git a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..5d952ba --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_content_raw_qml_0.cpp" + "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..7345f77 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..a266955 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content_resources_2. diff --git a/build/content/CMakeFiles/content_resources_2.dir/depend.make b/build/content/CMakeFiles/content_resources_2.dir/depend.make new file mode 100644 index 0000000..b11eccc --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/flags.make b/build/content/CMakeFiles/content_resources_2.dir/flags.make new file mode 100644 index 0000000..d5532de --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content_resources_2.dir/progress.make b/build/content/CMakeFiles/content_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_tooling.dir/build.make b/build/content/CMakeFiles/content_tooling.dir/build.make new file mode 100644 index 0000000..4d04f43 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/build.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_tooling. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_tooling.dir/progress.make + +qml/content/App.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying App.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml + +qml/content/Screen01.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying Screen01.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml + +qml/content/Speedometer.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying Speedometer.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml + +qml/content/BatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying BatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml + +qml/content/TempSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying TempSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml + +qml/content/WarningSymbol.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying WarningSymbol.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml + +qml/content/fonts/fonts.txt: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying fonts/fonts.txt to /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt + +qml/content/fonts/nasalization-rg.otf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying fonts/nasalization-rg.otf to /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf + +content_tooling: qml/content/App.qml +content_tooling: qml/content/BatterySlider.qml +content_tooling: qml/content/Screen01.ui.qml +content_tooling: qml/content/Speedometer.qml +content_tooling: qml/content/TempSlider.qml +content_tooling: qml/content/WarningSymbol.qml +content_tooling: qml/content/fonts/fonts.txt +content_tooling: qml/content/fonts/nasalization-rg.otf +content_tooling: content/CMakeFiles/content_tooling.dir/build.make +.PHONY : content_tooling + +# Rule to build all files generated by this target. +content/CMakeFiles/content_tooling.dir/build: content_tooling +.PHONY : content/CMakeFiles/content_tooling.dir/build + +content/CMakeFiles/content_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_tooling.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_tooling.dir/clean + +content/CMakeFiles/content_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_tooling.dir/depend + diff --git a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..714d3fa --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + "../qml/content/App.qml" + "../qml/content/BatterySlider.qml" + "../qml/content/Screen01.ui.qml" + "../qml/content/Speedometer.qml" + "../qml/content/TempSlider.qml" + "../qml/content/WarningSymbol.qml" + "../qml/content/fonts/fonts.txt" + "../qml/content/fonts/nasalization-rg.otf" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..e0641c5 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_tooling. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..f88052a --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_tooling. diff --git a/build/content/CMakeFiles/content_tooling.dir/progress.make b/build/content/CMakeFiles/content_tooling.dir/progress.make new file mode 100644 index 0000000..f9fd3fd --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 98 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = + diff --git a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..ce31d62 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin.dir/build.make b/build/content/CMakeFiles/contentplugin.dir/build.make new file mode 100644 index 0000000..64db6e0 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/contentplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/contentplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/contentplugin.dir/flags.make + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/contentplugin_autogen/mocs_compilation.cpp +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/contentplugin_contentPlugin.cpp +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp > CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s + +# Object files for target contentplugin +contentplugin_OBJECTS = \ +"CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + +# External object files for target contentplugin +contentplugin_EXTERNAL_OBJECTS = + +qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o +qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/build.make +qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../qml/content/libcontentplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/contentplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin.dir/build: qml/content/libcontentplugin.a +.PHONY : content/CMakeFiles/contentplugin.dir/build + +content/CMakeFiles/contentplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin.dir/clean + +content/CMakeFiles/contentplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..479adc9 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../qml/content/libcontentplugin.a" + "../qml/content/libcontentplugin.pdb" + "CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/contentplugin_autogen.dir/ParseCache.txt" + "contentplugin_autogen" + "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/contentplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..3b0c2e9 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../qml/content/libcontentplugin.a" +) diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make new file mode 100644 index 0000000..78cdb39 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for contentplugin. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..6fe1680 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for contentplugin. diff --git a/build/content/CMakeFiles/contentplugin.dir/depend.make b/build/content/CMakeFiles/contentplugin.dir/depend.make new file mode 100644 index 0000000..4d6ce9a --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for contentplugin. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/flags.make b/build/content/CMakeFiles/contentplugin.dir/flags.make new file mode 100644 index 0000000..a455f96 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/contentplugin.dir/link.txt b/build/content/CMakeFiles/contentplugin.dir/link.txt new file mode 100644 index 0000000..7303b6e --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../qml/content/libcontentplugin.a CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../qml/content/libcontentplugin.a diff --git a/build/content/CMakeFiles/contentplugin.dir/progress.make b/build/content/CMakeFiles/contentplugin.dir/progress.make new file mode 100644 index 0000000..60646ad --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 99 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..c3682db --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,122 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=content" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make new file mode 100644 index 0000000..0e51117 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_autogen.dir/progress.make + +content/CMakeFiles/contentplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json Debug + +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/build.make +.PHONY : contentplugin_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_autogen.dir/build: contentplugin_autogen +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/build + +content/CMakeFiles/contentplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean + +content/CMakeFiles/contentplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..0347408 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_autogen" + "contentplugin_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..49dd693 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..f34cab5 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_autogen. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..efcd693 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init.dir/build.make b/build/content/CMakeFiles/contentplugin_init.dir/build.make new file mode 100644 index 0000000..2a60a39 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/contentplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/contentplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/contentplugin_init.dir/flags.make + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/contentplugin_init_autogen/mocs_compilation.cpp +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/contentplugin_init.cpp +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s + +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/build.make +.PHONY : contentplugin_init + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_init.dir/build: contentplugin_init +.PHONY : content/CMakeFiles/contentplugin_init.dir/build + +content/CMakeFiles/contentplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_init.dir/clean + +content/CMakeFiles/contentplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_init.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..aafae09 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt" + "contentplugin_init_autogen" + "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" + "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/contentplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..f2d8920 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for contentplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..09477d2 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for contentplugin_init. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/depend.make b/build/content/CMakeFiles/contentplugin_init.dir/depend.make new file mode 100644 index 0000000..50d850e --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for contentplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/flags.make b/build/content/CMakeFiles/contentplugin_init.dir/flags.make new file mode 100644 index 0000000..b630a1a --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/progress.make b/build/content/CMakeFiles/contentplugin_init.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..5606966 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,127 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..b7adc9f --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_init_autogen.dir/progress.make + +content/CMakeFiles/contentplugin_init_autogen: content/contentplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json Debug + +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/build.make +.PHONY : contentplugin_init_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_init_autogen.dir/build: contentplugin_init_autogen +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/build + +content/CMakeFiles/contentplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean + +content/CMakeFiles/contentplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..1e12c81 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_init_autogen" + "contentplugin_init_autogen/mocs_compilation.cpp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b45617c --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..c4ddd5e --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_init_autogen. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..7ad5bcb --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 100 + diff --git a/build/content/CMakeFiles/progress.marks b/build/content/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/content/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/content/Makefile b/build/content/Makefile new file mode 100644 index 0000000..438df0b --- /dev/null +++ b/build/content/Makefile @@ -0,0 +1,847 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/content//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +content/CMakeFiles/content.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/rule +.PHONY : content/CMakeFiles/content.dir/rule + +# Convenience name for target. +content: content/CMakeFiles/content.dir/rule +.PHONY : content + +# fast build rule for target. +content/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build +.PHONY : content/fast + +# Convenience name for target. +content/CMakeFiles/content_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_automoc_json_extraction.dir/rule +.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/rule + +# Convenience name for target. +content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/rule +.PHONY : content_automoc_json_extraction + +# fast build rule for target. +content_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build +.PHONY : content_automoc_json_extraction/fast + +# Convenience name for target. +content/CMakeFiles/content_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule + +# Convenience name for target. +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content_qmltyperegistration + +# fast build rule for target. +content_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build +.PHONY : content_qmltyperegistration/fast + +# Convenience name for target. +content/CMakeFiles/content_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content/CMakeFiles/content_resources_1.dir/rule + +# Convenience name for target. +content_resources_1: content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content_resources_1 + +# fast build rule for target. +content_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build +.PHONY : content_resources_1/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/rule +.PHONY : content/CMakeFiles/contentplugin.dir/rule + +# Convenience name for target. +contentplugin: content/CMakeFiles/contentplugin.dir/rule +.PHONY : contentplugin + +# fast build rule for target. +contentplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build +.PHONY : contentplugin/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content/CMakeFiles/content_qmllint.dir/rule + +# Convenience name for target. +content_qmllint: content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content_qmllint + +# fast build rule for target. +content_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build +.PHONY : content_qmllint/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule + +# Convenience name for target. +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content_qmllint_json + +# fast build rule for target. +content_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build +.PHONY : content_qmllint_json/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule + +# Convenience name for target. +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content_qmllint_module + +# fast build rule for target. +content_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build +.PHONY : content_qmllint_module/fast + +# Convenience name for target. +content/CMakeFiles/content_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache.dir/rule +.PHONY : content/CMakeFiles/content_qmlcache.dir/rule + +# Convenience name for target. +content_qmlcache: content/CMakeFiles/content_qmlcache.dir/rule +.PHONY : content_qmlcache + +# fast build rule for target. +content_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build +.PHONY : content_qmlcache/fast + +# Convenience name for target. +content/CMakeFiles/content_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content/CMakeFiles/content_resources_2.dir/rule + +# Convenience name for target. +content_resources_2: content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content_resources_2 + +# fast build rule for target. +content_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build +.PHONY : content_resources_2/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : content/CMakeFiles/contentplugin_init.dir/rule + +# Convenience name for target. +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : contentplugin_init + +# fast build rule for target. +contentplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build +.PHONY : contentplugin_init/fast + +# Convenience name for target. +content/CMakeFiles/content_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/rule +.PHONY : content/CMakeFiles/content_autogen.dir/rule + +# Convenience name for target. +content_autogen: content/CMakeFiles/content_autogen.dir/rule +.PHONY : content_autogen + +# fast build rule for target. +content_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build +.PHONY : content_autogen/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule + +# Convenience name for target. +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : contentplugin_autogen + +# fast build rule for target. +contentplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build +.PHONY : contentplugin_autogen/fast + +# Convenience name for target. +content/CMakeFiles/content_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache_autogen.dir/rule +.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/rule + +# Convenience name for target. +content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/rule +.PHONY : content_qmlcache_autogen + +# fast build rule for target. +content_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build +.PHONY : content_qmlcache_autogen/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule + +# Convenience name for target. +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : contentplugin_init_autogen + +# fast build rule for target. +contentplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build +.PHONY : contentplugin_init_autogen/fast + +.rcc/qmlcache/content_App_qml.o: .rcc/qmlcache/content_App_qml.cpp.o +.PHONY : .rcc/qmlcache/content_App_qml.o + +# target to build an object file +.rcc/qmlcache/content_App_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o +.PHONY : .rcc/qmlcache/content_App_qml.cpp.o + +.rcc/qmlcache/content_App_qml.i: .rcc/qmlcache/content_App_qml.cpp.i +.PHONY : .rcc/qmlcache/content_App_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_App_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i +.PHONY : .rcc/qmlcache/content_App_qml.cpp.i + +.rcc/qmlcache/content_App_qml.s: .rcc/qmlcache/content_App_qml.cpp.s +.PHONY : .rcc/qmlcache/content_App_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_App_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s +.PHONY : .rcc/qmlcache/content_App_qml.cpp.s + +.rcc/qmlcache/content_BatterySlider_qml.o: .rcc/qmlcache/content_BatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_BatterySlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.o + +.rcc/qmlcache/content_BatterySlider_qml.i: .rcc/qmlcache/content_BatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BatterySlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.i + +.rcc/qmlcache/content_BatterySlider_qml.s: .rcc/qmlcache/content_BatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BatterySlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.s + +.rcc/qmlcache/content_Screen01.ui_qml.o: .rcc/qmlcache/content_Screen01.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.o + +# target to build an object file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.o + +.rcc/qmlcache/content_Screen01.ui_qml.i: .rcc/qmlcache/content_Screen01.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.i + +.rcc/qmlcache/content_Screen01.ui_qml.s: .rcc/qmlcache/content_Screen01.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.s + +.rcc/qmlcache/content_Speedometer_qml.o: .rcc/qmlcache/content_Speedometer_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Speedometer_qml.o + +# target to build an object file +.rcc/qmlcache/content_Speedometer_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.o + +.rcc/qmlcache/content_Speedometer_qml.i: .rcc/qmlcache/content_Speedometer_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Speedometer_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_Speedometer_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.i + +.rcc/qmlcache/content_Speedometer_qml.s: .rcc/qmlcache/content_Speedometer_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Speedometer_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_Speedometer_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.s + +.rcc/qmlcache/content_TempSlider_qml.o: .rcc/qmlcache/content_TempSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TempSlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_TempSlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.o + +.rcc/qmlcache/content_TempSlider_qml.i: .rcc/qmlcache/content_TempSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TempSlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_TempSlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.i + +.rcc/qmlcache/content_TempSlider_qml.s: .rcc/qmlcache/content_TempSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TempSlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_TempSlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.s + +.rcc/qmlcache/content_WarningSymbol_qml.o: .rcc/qmlcache/content_WarningSymbol_qml.cpp.o +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.o + +# target to build an object file +.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.o + +.rcc/qmlcache/content_WarningSymbol_qml.i: .rcc/qmlcache/content_WarningSymbol_qml.cpp.i +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_WarningSymbol_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.i + +.rcc/qmlcache/content_WarningSymbol_qml.s: .rcc/qmlcache/content_WarningSymbol_qml.cpp.s +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_WarningSymbol_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s +.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.s + +.rcc/qmlcache/content_qmlcache_loader.o: .rcc/qmlcache/content_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/content_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/content_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.o + +.rcc/qmlcache/content_qmlcache_loader.i: .rcc/qmlcache/content_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/content_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/content_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.i + +.rcc/qmlcache/content_qmlcache_loader.s: .rcc/qmlcache/content_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/content_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/content_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.s + +.rcc/qrc_content_raw_qml_0.o: .rcc/qrc_content_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0.o + +# target to build an object file +.rcc/qrc_content_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.o + +.rcc/qrc_content_raw_qml_0.i: .rcc/qrc_content_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_content_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.i + +.rcc/qrc_content_raw_qml_0.s: .rcc/qrc_content_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_content_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.s + +.rcc/qrc_qmake_content.o: .rcc/qrc_qmake_content.cpp.o +.PHONY : .rcc/qrc_qmake_content.o + +# target to build an object file +.rcc/qrc_qmake_content.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o +.PHONY : .rcc/qrc_qmake_content.cpp.o + +.rcc/qrc_qmake_content.i: .rcc/qrc_qmake_content.cpp.i +.PHONY : .rcc/qrc_qmake_content.i + +# target to preprocess a source file +.rcc/qrc_qmake_content.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i +.PHONY : .rcc/qrc_qmake_content.cpp.i + +.rcc/qrc_qmake_content.s: .rcc/qrc_qmake_content.cpp.s +.PHONY : .rcc/qrc_qmake_content.s + +# target to generate assembly for a file +.rcc/qrc_qmake_content.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s +.PHONY : .rcc/qrc_qmake_content.cpp.s + +content_autogen/mocs_compilation.o: content_autogen/mocs_compilation.cpp.o +.PHONY : content_autogen/mocs_compilation.o + +# target to build an object file +content_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o +.PHONY : content_autogen/mocs_compilation.cpp.o + +content_autogen/mocs_compilation.i: content_autogen/mocs_compilation.cpp.i +.PHONY : content_autogen/mocs_compilation.i + +# target to preprocess a source file +content_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i +.PHONY : content_autogen/mocs_compilation.cpp.i + +content_autogen/mocs_compilation.s: content_autogen/mocs_compilation.cpp.s +.PHONY : content_autogen/mocs_compilation.s + +# target to generate assembly for a file +content_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s +.PHONY : content_autogen/mocs_compilation.cpp.s + +content_qmlcache_autogen/mocs_compilation.o: content_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : content_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +content_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.o + +content_qmlcache_autogen/mocs_compilation.i: content_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : content_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +content_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.i + +content_qmlcache_autogen/mocs_compilation.s: content_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : content_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +content_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.s + +content_qmltyperegistrations.o: content_qmltyperegistrations.cpp.o +.PHONY : content_qmltyperegistrations.o + +# target to build an object file +content_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o +.PHONY : content_qmltyperegistrations.cpp.o + +content_qmltyperegistrations.i: content_qmltyperegistrations.cpp.i +.PHONY : content_qmltyperegistrations.i + +# target to preprocess a source file +content_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i +.PHONY : content_qmltyperegistrations.cpp.i + +content_qmltyperegistrations.s: content_qmltyperegistrations.cpp.s +.PHONY : content_qmltyperegistrations.s + +# target to generate assembly for a file +content_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s +.PHONY : content_qmltyperegistrations.cpp.s + +contentplugin_autogen/mocs_compilation.o: contentplugin_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_autogen/mocs_compilation.o + +# target to build an object file +contentplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_autogen/mocs_compilation.cpp.o + +contentplugin_autogen/mocs_compilation.i: contentplugin_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +contentplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_autogen/mocs_compilation.cpp.i + +contentplugin_autogen/mocs_compilation.s: contentplugin_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +contentplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_autogen/mocs_compilation.cpp.s + +contentplugin_contentPlugin.o: contentplugin_contentPlugin.cpp.o +.PHONY : contentplugin_contentPlugin.o + +# target to build an object file +contentplugin_contentPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +.PHONY : contentplugin_contentPlugin.cpp.o + +contentplugin_contentPlugin.i: contentplugin_contentPlugin.cpp.i +.PHONY : contentplugin_contentPlugin.i + +# target to preprocess a source file +contentplugin_contentPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i +.PHONY : contentplugin_contentPlugin.cpp.i + +contentplugin_contentPlugin.s: contentplugin_contentPlugin.cpp.s +.PHONY : contentplugin_contentPlugin.s + +# target to generate assembly for a file +contentplugin_contentPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s +.PHONY : contentplugin_contentPlugin.cpp.s + +contentplugin_init.o: contentplugin_init.cpp.o +.PHONY : contentplugin_init.o + +# target to build an object file +contentplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +.PHONY : contentplugin_init.cpp.o + +contentplugin_init.i: contentplugin_init.cpp.i +.PHONY : contentplugin_init.i + +# target to preprocess a source file +contentplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i +.PHONY : contentplugin_init.cpp.i + +contentplugin_init.s: contentplugin_init.cpp.s +.PHONY : contentplugin_init.s + +# target to generate assembly for a file +contentplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s +.PHONY : contentplugin_init.cpp.s + +contentplugin_init_autogen/mocs_compilation.o: contentplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_init_autogen/mocs_compilation.o + +# target to build an object file +contentplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.o + +contentplugin_init_autogen/mocs_compilation.i: contentplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +contentplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.i + +contentplugin_init_autogen/mocs_compilation.s: contentplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +contentplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... content_autogen" + @echo "... content_automoc_json_extraction" + @echo "... content_qmlcache_autogen" + @echo "... content_qmllint" + @echo "... content_qmllint_json" + @echo "... content_qmllint_module" + @echo "... content_qmltyperegistration" + @echo "... contentplugin_autogen" + @echo "... contentplugin_init_autogen" + @echo "... content" + @echo "... content_qmlcache" + @echo "... content_resources_1" + @echo "... content_resources_2" + @echo "... content_tooling" + @echo "... contentplugin" + @echo "... contentplugin_init" + @echo "... .rcc/qmlcache/content_App_qml.o" + @echo "... .rcc/qmlcache/content_App_qml.i" + @echo "... .rcc/qmlcache/content_App_qml.s" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.o" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.i" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.s" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.o" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.i" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.s" + @echo "... .rcc/qmlcache/content_Speedometer_qml.o" + @echo "... .rcc/qmlcache/content_Speedometer_qml.i" + @echo "... .rcc/qmlcache/content_Speedometer_qml.s" + @echo "... .rcc/qmlcache/content_TempSlider_qml.o" + @echo "... .rcc/qmlcache/content_TempSlider_qml.i" + @echo "... .rcc/qmlcache/content_TempSlider_qml.s" + @echo "... .rcc/qmlcache/content_WarningSymbol_qml.o" + @echo "... .rcc/qmlcache/content_WarningSymbol_qml.i" + @echo "... .rcc/qmlcache/content_WarningSymbol_qml.s" + @echo "... .rcc/qmlcache/content_qmlcache_loader.o" + @echo "... .rcc/qmlcache/content_qmlcache_loader.i" + @echo "... .rcc/qmlcache/content_qmlcache_loader.s" + @echo "... .rcc/qrc_content_raw_qml_0.o" + @echo "... .rcc/qrc_content_raw_qml_0.i" + @echo "... .rcc/qrc_content_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_content.o" + @echo "... .rcc/qrc_qmake_content.i" + @echo "... .rcc/qrc_qmake_content.s" + @echo "... content_autogen/mocs_compilation.o" + @echo "... content_autogen/mocs_compilation.i" + @echo "... content_autogen/mocs_compilation.s" + @echo "... content_qmlcache_autogen/mocs_compilation.o" + @echo "... content_qmlcache_autogen/mocs_compilation.i" + @echo "... content_qmlcache_autogen/mocs_compilation.s" + @echo "... content_qmltyperegistrations.o" + @echo "... content_qmltyperegistrations.i" + @echo "... content_qmltyperegistrations.s" + @echo "... contentplugin_autogen/mocs_compilation.o" + @echo "... contentplugin_autogen/mocs_compilation.i" + @echo "... contentplugin_autogen/mocs_compilation.s" + @echo "... contentplugin_contentPlugin.o" + @echo "... contentplugin_contentPlugin.i" + @echo "... contentplugin_contentPlugin.s" + @echo "... contentplugin_init.o" + @echo "... contentplugin_init.i" + @echo "... contentplugin_init.s" + @echo "... contentplugin_init_autogen/mocs_compilation.o" + @echo "... contentplugin_init_autogen/mocs_compilation.i" + @echo "... contentplugin_init_autogen/mocs_compilation.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/content/cmake_install.cmake b/build/content/cmake_install.cmake new file mode 100644 index 0000000..8cd0576 --- /dev/null +++ b/build/content/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/content/contentplugin_contentPlugin.cpp b/build/content/contentplugin_contentPlugin.cpp new file mode 100644 index 0000000..7af25cd --- /dev/null +++ b/build/content/contentplugin_contentPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_content(); +Q_GHS_KEEP_REFERENCE(qml_register_types_content) + +class contentPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_content; + Q_UNUSED(registration) + } +}; + + + +#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_init.cpp b/build/content/contentplugin_init.cpp new file mode 100644 index 0000000..de63d21 --- /dev/null +++ b/build/content/contentplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(contentPlugin) \ No newline at end of file diff --git a/build/content/meta_types/qt6content_debug_metatypes.json b/build/content/meta_types/qt6content_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/content/qmltypes/content_foreign_types.txt b/build/content/qmltypes/content_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/content/qmltypes/content_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Backend/.rcc/qmake_Backend.qrc b/build/imports/Backend/.rcc/qmake_Backend.qrc new file mode 100644 index 0000000..8d98e2c --- /dev/null +++ b/build/imports/Backend/.rcc/qmake_Backend.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Backend/qmldir + + + diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp new file mode 100644 index 0000000..2ad2cc8 --- /dev/null +++ b/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp @@ -0,0 +1,9 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp new file mode 100644 index 0000000..a0b21a4 --- /dev/null +++ b/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp @@ -0,0 +1,11 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc +--json +/Users/mason/Documents/Code/dash-cpp/build/BackendPlugin_qmllint.json diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp new file mode 100644 index 0000000..fe1d5d6 --- /dev/null +++ b/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp @@ -0,0 +1,10 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc +--module +Backend diff --git a/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp b/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp new file mode 100644 index 0000000..07c2085 --- /dev/null +++ b/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_Backend(); +Q_GHS_KEEP_REFERENCE(qml_register_types_Backend) + +class BackendPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + BackendPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_Backend; + Q_UNUSED(registration) + } +}; + + + +#include "BackendPluginplugin_BackendPlugin.moc" diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake new file mode 100644 index 0000000..d3a82b3 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/build.make b/build/imports/Backend/CMakeFiles/Backend.dir/build.make new file mode 100644 index 0000000..eb9c941 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Backend/CMakeFiles/Backend.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/Backend.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Backend/CMakeFiles/Backend.dir/flags.make + +imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/Backend.dir/flags.make +imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/Backend_autogen/mocs_compilation.cpp +imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp + +imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp > CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i + +imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s + +# Object files for target Backend +Backend_OBJECTS = \ +"CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" + +# External object files for target Backend +Backend_EXTERNAL_OBJECTS = + +imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o +imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/build.make +imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libBackend.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Backend.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/Backend.dir/build: imports/Backend/libBackend.a +.PHONY : imports/Backend/CMakeFiles/Backend.dir/build + +imports/Backend/CMakeFiles/Backend.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/Backend.dir/clean + +imports/Backend/CMakeFiles/Backend.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/Backend.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake new file mode 100644 index 0000000..3fd95e0 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "Backend_autogen" + "CMakeFiles/Backend_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Backend_autogen.dir/ParseCache.txt" + "CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d" + "libBackend.a" + "libBackend.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Backend.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..6417520 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libBackend.a" +) diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make new file mode 100644 index 0000000..8905c6d --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Backend. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts new file mode 100644 index 0000000..0b17459 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Backend. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/depend.make b/build/imports/Backend/CMakeFiles/Backend.dir/depend.make new file mode 100644 index 0000000..47aef3f --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Backend. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/flags.make b/build/imports/Backend/CMakeFiles/Backend.dir/flags.make new file mode 100644 index 0000000..56f01ba --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include + +CXX_FLAGSarm64 = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/link.txt b/build/imports/Backend/CMakeFiles/Backend.dir/link.txt new file mode 100644 index 0000000..fd67fb4 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libBackend.a CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libBackend.a diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/progress.make b/build/imports/Backend/CMakeFiles/Backend.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake new file mode 100644 index 0000000..57b6eec --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make new file mode 100644 index 0000000..ffb7c4c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make @@ -0,0 +1,211 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make + +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: imports/Backend/meta_types/BackendPlugin_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json + +imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/qmltypes/BackendPlugin_foreign_types.txt +imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes --import-name=Backend --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated/BackendPlugin.qmltypes + +qml/Backend/BackendPlugin.qmltypes: imports/Backend/backendplugin_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Backend/BackendPlugin.qmltypes + +imports/Backend/.rcc/qrc_qmake_Backend.cpp: qml/Backend/qmldir +imports/Backend/.rcc/qrc_qmake_Backend.cpp: imports/Backend/.rcc/qmake_Backend.qrc +imports/Backend/.rcc/qrc_qmake_Backend.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_Backend" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp --name qmake_Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc + +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating meta_types/qt6backendplugin_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp + +imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp > CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i + +imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s + +imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/backendplugin_qmltyperegistrations.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -MF CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp + +imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp > CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i + +imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s + +imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/.rcc/qrc_qmake_Backend.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -MF CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp + +imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp > CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i + +imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s + +imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o -MF CMakeFiles/BackendPlugin.dir/can.cpp.o.d -o CMakeFiles/BackendPlugin.dir/can.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp + +imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/can.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp > CMakeFiles/BackendPlugin.dir/can.cpp.i + +imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/can.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp -o CMakeFiles/BackendPlugin.dir/can.cpp.s + +imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o -MF CMakeFiles/BackendPlugin.dir/backend.cpp.o.d -o CMakeFiles/BackendPlugin.dir/backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp + +imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/backend.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp > CMakeFiles/BackendPlugin.dir/backend.cpp.i + +imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/backend.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp -o CMakeFiles/BackendPlugin.dir/backend.cpp.s + +# Object files for target BackendPlugin +BackendPlugin_OBJECTS = \ +"CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" \ +"CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" \ +"CMakeFiles/BackendPlugin.dir/can.cpp.o" \ +"CMakeFiles/BackendPlugin.dir/backend.cpp.o" + +# External object files for target BackendPlugin +BackendPlugin_EXTERNAL_OBJECTS = + +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/build.make +imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX shared library libBackendPlugin.dylib" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/BackendPlugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin.dir/build: imports/Backend/libBackendPlugin.dylib +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/build + +imports/Backend/CMakeFiles/BackendPlugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/.rcc/qrc_qmake_Backend.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/backendplugin_qmltyperegistrations.cpp +imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json +imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen +imports/Backend/CMakeFiles/BackendPlugin.dir/depend: qml/Backend/BackendPlugin.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..f8009d2 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake @@ -0,0 +1,27 @@ +file(REMOVE_RECURSE + "../../qml/Backend/BackendPlugin.qmltypes" + ".rcc/qrc_qmake_Backend.cpp" + "BackendPlugin_autogen" + "CMakeFiles/BackendPlugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt" + "CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" + "CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d" + "CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/BackendPlugin.dir/backend.cpp.o" + "CMakeFiles/BackendPlugin.dir/backend.cpp.o.d" + "CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" + "CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d" + "CMakeFiles/BackendPlugin.dir/can.cpp.o" + "CMakeFiles/BackendPlugin.dir/can.cpp.o.d" + "backendplugin_qmltyperegistrations.cpp" + "libBackendPlugin.dylib" + "libBackendPlugin.pdb" + "meta_types/qt6backendplugin_debug_metatypes.json" + "meta_types/qt6backendplugin_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/BackendPlugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make new file mode 100644 index 0000000..dd9466e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for BackendPlugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts new file mode 100644 index 0000000..ef33f4c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for BackendPlugin. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make new file mode 100644 index 0000000..92ff31c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for BackendPlugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make new file mode 100644 index 0000000..2ac9b1f --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt new file mode 100644 index 0000000..0d325a9 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -dynamiclib -Wl,-headerpad_max_install_names -o libBackendPlugin.dylib -install_name @rpath/libBackendPlugin.dylib CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o CMakeFiles/BackendPlugin.dir/can.cpp.o CMakeFiles/BackendPlugin.dir/backend.cpp.o -iframework /opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make new file mode 100644 index 0000000..a2417ff --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = 1 +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..76f7e09 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,129 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.h", + "MU", + "EWIEGA46WW/moc_backend.cpp", + null + ], + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.h", + "MU", + "EWIEGA46WW/moc_can.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "BackendPlugin_EXPORTS", + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", + "MU", + null + ], + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make new file mode 100644 index 0000000..29035ae --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json Debug + +BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen +BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make +.PHONY : BackendPlugin_autogen + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build: BackendPlugin_autogen +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..125f4bc --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "BackendPlugin_autogen/mocs_compilation.cpp" + "CMakeFiles/BackendPlugin_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..d879455 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..9989741 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_autogen. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make new file mode 100644 index 0000000..164e1d2 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 2 + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..5576965 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include + +BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction +BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make +.PHONY : BackendPlugin_automoc_json_extraction + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build: BackendPlugin_automoc_json_extraction +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..b8b0f80 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/BackendPlugin_automoc_json_extraction" + "meta_types/BackendPlugin_json_file_list.txt" + "meta_types/BackendPlugin_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..e5f57a1 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..137e9f7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_automoc_json_extraction. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make new file mode 100644 index 0000000..3ab3dcd --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_qmllint. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_qmllint: /opt/homebrew/bin/qmllint +imports/Backend/CMakeFiles/BackendPlugin_qmllint: imports/Backend/.rcc/qmllint/BackendPlugin.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo Nothing\ to\ do\ for\ target\ BackendPlugin_qmllint. + +BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint +BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make +.PHONY : BackendPlugin_qmllint + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build: BackendPlugin_qmllint +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..09e984e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/BackendPlugin_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..3830d9b --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..7c18794 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make new file mode 100644 index 0000000..42ad018 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_qmllint_json. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json: /opt/homebrew/bin/qmllint +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json: imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp + +BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json +BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make +.PHONY : BackendPlugin_qmllint_json + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build: BackendPlugin_qmllint_json +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..979c31b --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/BackendPlugin_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..b5b1eae --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..2002b50 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint_json. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make new file mode 100644 index 0000000..4343999 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_qmllint_module. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module: /opt/homebrew/bin/qmllint +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module: imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp + +BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module +BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make +.PHONY : BackendPlugin_qmllint_module + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build: BackendPlugin_qmllint_module +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..87d8e6e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/BackendPlugin_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..d1d4188 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..6d91a8f --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint_module. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..5cccdc2 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..5690afa --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPlugin_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make + +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration: imports/Backend/backendplugin_qmltyperegistrations.cpp +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration: qml/Backend/BackendPlugin.qmltypes + +imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/qmltypes/BackendPlugin_foreign_types.txt +imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes --import-name=Backend --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated/BackendPlugin.qmltypes + +qml/Backend/BackendPlugin.qmltypes: imports/Backend/backendplugin_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Backend/BackendPlugin.qmltypes + +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6backendplugin_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: imports/Backend/meta_types/BackendPlugin_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target BackendPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json + +BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration +BackendPlugin_qmltyperegistration: imports/Backend/backendplugin_qmltyperegistrations.cpp +BackendPlugin_qmltyperegistration: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json +BackendPlugin_qmltyperegistration: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen +BackendPlugin_qmltyperegistration: qml/Backend/BackendPlugin.qmltypes +BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make +.PHONY : BackendPlugin_qmltyperegistration + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build: BackendPlugin_qmltyperegistration +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build + +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean + +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..6aa2c90 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../qml/Backend/BackendPlugin.qmltypes" + "CMakeFiles/BackendPlugin_qmltyperegistration" + "backendplugin_qmltyperegistrations.cpp" + "meta_types/qt6backendplugin_debug_metatypes.json" + "meta_types/qt6backendplugin_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..6c856ef --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPlugin_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..d2e7f0e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPlugin_qmltyperegistration. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..624f189 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make new file mode 100644 index 0000000..ec01350 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make @@ -0,0 +1,130 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp > CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/BackendPluginplugin_BackendPlugin.cpp +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -MF CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp > CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s + +# Object files for target BackendPluginplugin +BackendPluginplugin_OBJECTS = \ +"CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" + +# External object files for target BackendPluginplugin +BackendPluginplugin_EXTERNAL_OBJECTS = + +qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o +qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o +qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make +qml/Backend/libBackendPluginplugin.dylib: imports/Backend/libBackendPlugin.dylib +qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared module ../../qml/Backend/libBackendPluginplugin.dylib" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/BackendPluginplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPluginplugin.dir/build: qml/Backend/libBackendPluginplugin.dylib +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/build + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean + +imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..311364d --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../qml/Backend/libBackendPluginplugin.dylib" + "../../qml/Backend/libBackendPluginplugin.pdb" + "BackendPluginplugin_autogen" + "CMakeFiles/BackendPluginplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/BackendPluginplugin_autogen.dir/ParseCache.txt" + "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" + "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d" + "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/BackendPluginplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make new file mode 100644 index 0000000..301c91e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for BackendPluginplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..b1f779b --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for BackendPluginplugin. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make new file mode 100644 index 0000000..480b00b --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for BackendPluginplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make new file mode 100644 index 0000000..d23c3b6 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt new file mode 100644 index 0000000..93930e5 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -bundle -Wl,-headerpad_max_install_names -o ../../qml/Backend/libBackendPluginplugin.dylib CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -iframework /opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/Backend -Wl,-rpath,/opt/homebrew/lib libBackendPlugin.dylib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make new file mode 100644 index 0000000..8163ab4 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 3 +CMAKE_PROGRESS_3 = + diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..a5ab278 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,109 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "BackendPluginplugin_EXPORTS", + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=Backend" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make new file mode 100644 index 0000000..07b295c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for BackendPluginplugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make + +imports/Backend/CMakeFiles/BackendPluginplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target BackendPluginplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json Debug + +BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen +BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make +.PHONY : BackendPluginplugin_autogen + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build: BackendPluginplugin_autogen +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build + +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean + +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..ee96981 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "BackendPluginplugin_autogen/mocs_compilation.cpp" + "CMakeFiles/BackendPluginplugin_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..85c6347 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for BackendPluginplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..571d52e --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for BackendPluginplugin_autogen. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..dc37356 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json @@ -0,0 +1,80 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : [], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make new file mode 100644 index 0000000..15d18cf --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Backend_autogen. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make + +imports/Backend/CMakeFiles/Backend_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Backend" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json Debug + +Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen +Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/build.make +.PHONY : Backend_autogen + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/Backend_autogen.dir/build: Backend_autogen +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/build + +imports/Backend/CMakeFiles/Backend_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend_autogen.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/clean + +imports/Backend/CMakeFiles/Backend_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..7eefe09 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "Backend_autogen/mocs_compilation.cpp" + "CMakeFiles/Backend_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Backend_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..5c096ba --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Backend_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..d21ac26 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Backend_autogen. diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5819b47 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Backend/CMakeFiles/progress.marks b/build/imports/Backend/CMakeFiles/progress.marks new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/build/imports/Backend/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make new file mode 100644 index 0000000..2b41fd3 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for qt_internal_plugins. + +# Include any custom commands dependencies for this target. +include imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make + +qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make +.PHONY : qt_internal_plugins + +# Rule to build all files generated by this target. +imports/Backend/CMakeFiles/qt_internal_plugins.dir/build: qt_internal_plugins +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/build + +imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean + +imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend + diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake new file mode 100644 index 0000000..d36db1c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/qt_internal_plugins.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make new file mode 100644 index 0000000..a7eb7e0 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for qt_internal_plugins. +# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts new file mode 100644 index 0000000..6cd921c --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for qt_internal_plugins. diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Backend/Makefile b/build/imports/Backend/Makefile new file mode 100644 index 0000000..529d198 --- /dev/null +++ b/build/imports/Backend/Makefile @@ -0,0 +1,585 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Backend//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +imports/Backend/CMakeFiles/Backend.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend.dir/rule +.PHONY : imports/Backend/CMakeFiles/Backend.dir/rule + +# Convenience name for target. +Backend: imports/Backend/CMakeFiles/Backend.dir/rule +.PHONY : Backend + +# fast build rule for target. +Backend/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build +.PHONY : Backend/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/rule + +# Convenience name for target. +BackendPlugin: imports/Backend/CMakeFiles/BackendPlugin.dir/rule +.PHONY : BackendPlugin + +# fast build rule for target. +BackendPlugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build +.PHONY : BackendPlugin/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule + +# Convenience name for target. +BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule +.PHONY : BackendPlugin_automoc_json_extraction + +# fast build rule for target. +BackendPlugin_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build +.PHONY : BackendPlugin_automoc_json_extraction/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule + +# Convenience name for target. +BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule +.PHONY : BackendPlugin_qmltyperegistration + +# fast build rule for target. +BackendPlugin_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build +.PHONY : BackendPlugin_qmltyperegistration/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule + +# Convenience name for target. +BackendPluginplugin: imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule +.PHONY : BackendPluginplugin + +# fast build rule for target. +BackendPluginplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build +.PHONY : BackendPluginplugin/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule + +# Convenience name for target. +qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : qt_internal_plugins + +# fast build rule for target. +qt_internal_plugins/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build +.PHONY : qt_internal_plugins/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule +.PHONY : BackendPlugin_qmllint + +# fast build rule for target. +BackendPlugin_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build +.PHONY : BackendPlugin_qmllint/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule +.PHONY : BackendPlugin_qmllint_json + +# fast build rule for target. +BackendPlugin_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build +.PHONY : BackendPlugin_qmllint_json/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule + +# Convenience name for target. +BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule +.PHONY : BackendPlugin_qmllint_module + +# fast build rule for target. +BackendPlugin_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build +.PHONY : BackendPlugin_qmllint_module/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/Backend_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend_autogen.dir/rule +.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/rule + +# Convenience name for target. +Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/rule +.PHONY : Backend_autogen + +# fast build rule for target. +Backend_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build +.PHONY : Backend_autogen/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule + +# Convenience name for target. +BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule +.PHONY : BackendPlugin_autogen + +# fast build rule for target. +BackendPlugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build +.PHONY : BackendPlugin_autogen/fast + +# Convenience name for target. +imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule +.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule + +# Convenience name for target. +BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule +.PHONY : BackendPluginplugin_autogen + +# fast build rule for target. +BackendPluginplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build +.PHONY : BackendPluginplugin_autogen/fast + +.rcc/qrc_qmake_Backend.o: .rcc/qrc_qmake_Backend.cpp.o +.PHONY : .rcc/qrc_qmake_Backend.o + +# target to build an object file +.rcc/qrc_qmake_Backend.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o +.PHONY : .rcc/qrc_qmake_Backend.cpp.o + +.rcc/qrc_qmake_Backend.i: .rcc/qrc_qmake_Backend.cpp.i +.PHONY : .rcc/qrc_qmake_Backend.i + +# target to preprocess a source file +.rcc/qrc_qmake_Backend.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i +.PHONY : .rcc/qrc_qmake_Backend.cpp.i + +.rcc/qrc_qmake_Backend.s: .rcc/qrc_qmake_Backend.cpp.s +.PHONY : .rcc/qrc_qmake_Backend.s + +# target to generate assembly for a file +.rcc/qrc_qmake_Backend.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s +.PHONY : .rcc/qrc_qmake_Backend.cpp.s + +BackendPlugin_autogen/mocs_compilation.o: BackendPlugin_autogen/mocs_compilation.cpp.o +.PHONY : BackendPlugin_autogen/mocs_compilation.o + +# target to build an object file +BackendPlugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o +.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.o + +BackendPlugin_autogen/mocs_compilation.i: BackendPlugin_autogen/mocs_compilation.cpp.i +.PHONY : BackendPlugin_autogen/mocs_compilation.i + +# target to preprocess a source file +BackendPlugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i +.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.i + +BackendPlugin_autogen/mocs_compilation.s: BackendPlugin_autogen/mocs_compilation.cpp.s +.PHONY : BackendPlugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +BackendPlugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s +.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.s + +BackendPluginplugin_BackendPlugin.o: BackendPluginplugin_BackendPlugin.cpp.o +.PHONY : BackendPluginplugin_BackendPlugin.o + +# target to build an object file +BackendPluginplugin_BackendPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o +.PHONY : BackendPluginplugin_BackendPlugin.cpp.o + +BackendPluginplugin_BackendPlugin.i: BackendPluginplugin_BackendPlugin.cpp.i +.PHONY : BackendPluginplugin_BackendPlugin.i + +# target to preprocess a source file +BackendPluginplugin_BackendPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i +.PHONY : BackendPluginplugin_BackendPlugin.cpp.i + +BackendPluginplugin_BackendPlugin.s: BackendPluginplugin_BackendPlugin.cpp.s +.PHONY : BackendPluginplugin_BackendPlugin.s + +# target to generate assembly for a file +BackendPluginplugin_BackendPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s +.PHONY : BackendPluginplugin_BackendPlugin.cpp.s + +BackendPluginplugin_autogen/mocs_compilation.o: BackendPluginplugin_autogen/mocs_compilation.cpp.o +.PHONY : BackendPluginplugin_autogen/mocs_compilation.o + +# target to build an object file +BackendPluginplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o +.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.o + +BackendPluginplugin_autogen/mocs_compilation.i: BackendPluginplugin_autogen/mocs_compilation.cpp.i +.PHONY : BackendPluginplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +BackendPluginplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i +.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.i + +BackendPluginplugin_autogen/mocs_compilation.s: BackendPluginplugin_autogen/mocs_compilation.cpp.s +.PHONY : BackendPluginplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +BackendPluginplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s +.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.s + +Backend_autogen/mocs_compilation.o: Backend_autogen/mocs_compilation.cpp.o +.PHONY : Backend_autogen/mocs_compilation.o + +# target to build an object file +Backend_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o +.PHONY : Backend_autogen/mocs_compilation.cpp.o + +Backend_autogen/mocs_compilation.i: Backend_autogen/mocs_compilation.cpp.i +.PHONY : Backend_autogen/mocs_compilation.i + +# target to preprocess a source file +Backend_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i +.PHONY : Backend_autogen/mocs_compilation.cpp.i + +Backend_autogen/mocs_compilation.s: Backend_autogen/mocs_compilation.cpp.s +.PHONY : Backend_autogen/mocs_compilation.s + +# target to generate assembly for a file +Backend_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s +.PHONY : Backend_autogen/mocs_compilation.cpp.s + +backend.o: backend.cpp.o +.PHONY : backend.o + +# target to build an object file +backend.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o +.PHONY : backend.cpp.o + +backend.i: backend.cpp.i +.PHONY : backend.i + +# target to preprocess a source file +backend.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.i +.PHONY : backend.cpp.i + +backend.s: backend.cpp.s +.PHONY : backend.s + +# target to generate assembly for a file +backend.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.s +.PHONY : backend.cpp.s + +backendplugin_qmltyperegistrations.o: backendplugin_qmltyperegistrations.cpp.o +.PHONY : backendplugin_qmltyperegistrations.o + +# target to build an object file +backendplugin_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o +.PHONY : backendplugin_qmltyperegistrations.cpp.o + +backendplugin_qmltyperegistrations.i: backendplugin_qmltyperegistrations.cpp.i +.PHONY : backendplugin_qmltyperegistrations.i + +# target to preprocess a source file +backendplugin_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i +.PHONY : backendplugin_qmltyperegistrations.cpp.i + +backendplugin_qmltyperegistrations.s: backendplugin_qmltyperegistrations.cpp.s +.PHONY : backendplugin_qmltyperegistrations.s + +# target to generate assembly for a file +backendplugin_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s +.PHONY : backendplugin_qmltyperegistrations.cpp.s + +can.o: can.cpp.o +.PHONY : can.o + +# target to build an object file +can.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o +.PHONY : can.cpp.o + +can.i: can.cpp.i +.PHONY : can.i + +# target to preprocess a source file +can.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.i +.PHONY : can.cpp.i + +can.s: can.cpp.s +.PHONY : can.s + +# target to generate assembly for a file +can.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.s +.PHONY : can.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... BackendPlugin_autogen" + @echo "... BackendPlugin_automoc_json_extraction" + @echo "... BackendPlugin_qmllint" + @echo "... BackendPlugin_qmllint_json" + @echo "... BackendPlugin_qmllint_module" + @echo "... BackendPlugin_qmltyperegistration" + @echo "... BackendPluginplugin_autogen" + @echo "... Backend_autogen" + @echo "... qt_internal_plugins" + @echo "... Backend" + @echo "... BackendPlugin" + @echo "... BackendPluginplugin" + @echo "... .rcc/qrc_qmake_Backend.o" + @echo "... .rcc/qrc_qmake_Backend.i" + @echo "... .rcc/qrc_qmake_Backend.s" + @echo "... BackendPlugin_autogen/mocs_compilation.o" + @echo "... BackendPlugin_autogen/mocs_compilation.i" + @echo "... BackendPlugin_autogen/mocs_compilation.s" + @echo "... BackendPluginplugin_BackendPlugin.o" + @echo "... BackendPluginplugin_BackendPlugin.i" + @echo "... BackendPluginplugin_BackendPlugin.s" + @echo "... BackendPluginplugin_autogen/mocs_compilation.o" + @echo "... BackendPluginplugin_autogen/mocs_compilation.i" + @echo "... BackendPluginplugin_autogen/mocs_compilation.s" + @echo "... Backend_autogen/mocs_compilation.o" + @echo "... Backend_autogen/mocs_compilation.i" + @echo "... Backend_autogen/mocs_compilation.s" + @echo "... backend.o" + @echo "... backend.i" + @echo "... backend.s" + @echo "... backendplugin_qmltyperegistrations.o" + @echo "... backendplugin_qmltyperegistrations.i" + @echo "... backendplugin_qmltyperegistrations.s" + @echo "... can.o" + @echo "... can.i" + @echo "... can.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/Backend/cmake_install.cmake b/build/imports/Backend/cmake_install.cmake new file mode 100644 index 0000000..eed9211 --- /dev/null +++ b/build/imports/Backend/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json b/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt b/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc new file mode 100644 index 0000000..8bf9280 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc @@ -0,0 +1,9 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + + + diff --git a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc new file mode 100644 index 0000000..1558c36 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir + + + diff --git a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp new file mode 100644 index 0000000..1fef7d8 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp @@ -0,0 +1,4 @@ +/Bolt_Dash/Constants.qml +/Bolt_Dash/DirectoryFontLoader.qml +/Bolt_Dash/EventListModel.qml +/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp new file mode 100644 index 0000000..c88e7bb --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp @@ -0,0 +1,15 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp new file mode 100644 index 0000000..7a78980 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp @@ -0,0 +1,17 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/Bolt_Dash_qmllint.json diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp new file mode 100644 index 0000000..e0cdcdb --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/Users/mason/Documents/Code/dash-cpp/build/qml +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +--module +Bolt_Dash diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp new file mode 100644 index 0000000..af2bea2 --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp @@ -0,0 +1,23 @@ +// This file is autogenerated by CMake. Do not edit. + +#include + +extern void qml_register_types_Bolt_Dash(); +Q_GHS_KEEP_REFERENCE(qml_register_types_Bolt_Dash) + +class Bolt_DashPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + volatile auto registration = &qml_register_types_Bolt_Dash; + Q_UNUSED(registration) + } +}; + + + +#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp new file mode 100644 index 0000000..b405372 --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(Bolt_DashPlugin) \ No newline at end of file diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake new file mode 100644 index 0000000..08af34d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake @@ -0,0 +1,30 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make new file mode 100644 index 0000000..984c8a8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make @@ -0,0 +1,262 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes + +qml/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: qml/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/Constants.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: qml/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/DirectoryFontLoader.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: qml/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListModel.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: qml/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp > CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s + +# Object files for target Bolt_Dash +Bolt_Dash_OBJECTS = \ +"CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" + +# External object files for target Bolt_Dash +Bolt_Dash_EXTERNAL_OBJECTS = + +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Linking CXX static library libBolt_Dash.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dash.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build: imports/Bolt_Dash/libBolt_Dash.a +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: qml/Bolt_Dash/Bolt_Dash.qmltypes + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake new file mode 100644 index 0000000..e33ccc8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake @@ -0,0 +1,32 @@ +file(REMOVE_RECURSE + "../../qml/Bolt_Dash/Bolt_Dash.qmltypes" + ".rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" + "Bolt_Dash_autogen" + "CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" + "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" + "bolt_dash_qmltyperegistrations.cpp" + "libBolt_Dash.a" + "libBolt_Dash.pdb" + "meta_types/qt6bolt_dash_debug_metatypes.json" + "meta_types/qt6bolt_dash_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..bff356f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libBolt_Dash.a" +) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make new file mode 100644 index 0000000..25601d2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts new file mode 100644 index 0000000..1271544 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make new file mode 100644 index 0000000..1044e3c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make new file mode 100644 index 0000000..99637f4 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt new file mode 100644 index 0000000..66b2ff2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dash.a CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dash.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make new file mode 100644 index 0000000..41645ea --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make @@ -0,0 +1,15 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 4 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 5 +CMAKE_PROGRESS_11 = +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = +CMAKE_PROGRESS_14 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..2fd170c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json @@ -0,0 +1,111 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make new file mode 100644 index 0000000..784f4c6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug + +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make +.PHONY : Bolt_Dash_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build: Bolt_Dash_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..69d3da0 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "Bolt_Dash_autogen/mocs_compilation.cpp" + "CMakeFiles/Bolt_Dash_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..a5fe86e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..22459ea --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make new file mode 100644 index 0000000..cc67811 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_automoc_json_extraction. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include + +Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction +Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make +.PHONY : Bolt_Dash_automoc_json_extraction + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build: Bolt_Dash_automoc_json_extraction +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake new file mode 100644 index 0000000..fbd6902 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_automoc_json_extraction" + "meta_types/Bolt_Dash_json_file_list.txt" + "meta_types/Bolt_Dash_json_file_list.txt.timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make new file mode 100644 index 0000000..dd5d03c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_automoc_json_extraction. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts new file mode 100644 index 0000000..92804fa --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_automoc_json_extraction. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake new file mode 100644 index 0000000..61e9fc4 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make new file mode 100644 index 0000000..4815cce --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp > CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s + +Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o +Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make +.PHONY : Bolt_Dash_qmlcache + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build: Bolt_Dash_qmlcache +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake new file mode 100644 index 0000000..623a8ce --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "Bolt_Dash_qmlcache_autogen" + "CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" + "CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" + "CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make new file mode 100644 index 0000000..2c2d023 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts new file mode 100644 index 0000000..d66b26d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash_qmlcache. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make new file mode 100644 index 0000000..3d1f8c7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash_qmlcache. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make new file mode 100644 index 0000000..31972e9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make new file mode 100644 index 0000000..e7f7e99 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 10 +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..f5e9b27 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json @@ -0,0 +1,123 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make new file mode 100644 index 0000000..e31f130 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmlcache_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash_qmlcache" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json Debug + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_Dash --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp + +Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen +Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make +.PHONY : Bolt_Dash_qmlcache_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build: Bolt_Dash_qmlcache_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..3958351 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" + "Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp" + "CMakeFiles/Bolt_Dash_qmlcache_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..c947d59 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmlcache_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..8239d2d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmlcache_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make new file mode 100644 index 0000000..2196ea6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp + +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make +.PHONY : Bolt_Dash_qmllint + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build: Bolt_Dash_qmllint +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..463a13e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..5f5570c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..112cb0c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make new file mode 100644 index 0000000..d04831e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint_json. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp + +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make +.PHONY : Bolt_Dash_qmllint_json + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build: Bolt_Dash_qmllint_json +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..b86f4a9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..28c8d6d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..2bb34d5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_json. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make new file mode 100644 index 0000000..8875490 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint_module. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp + +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make +.PHONY : Bolt_Dash_qmllint_module + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build: Bolt_Dash_qmllint_module +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..1b59bb9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..473476b --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..a08bc79 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_module. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..82ee166 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..52ef3b0 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: qml/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes + +qml/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate qml/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen +Bolt_Dash_qmltyperegistration: qml/Bolt_Dash/Bolt_Dash.qmltypes +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make +.PHONY : Bolt_Dash_qmltyperegistration + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build: Bolt_Dash_qmltyperegistration +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..1e8412f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "../../qml/Bolt_Dash/Bolt_Dash.qmltypes" + "CMakeFiles/Bolt_Dash_qmltyperegistration" + "bolt_dash_qmltyperegistrations.cpp" + "meta_types/qt6bolt_dash_debug_metatypes.json" + "meta_types/qt6bolt_dash_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..83877ca --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..d1aa310 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmltyperegistration. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..6a4c96c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 11 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..2a81866 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make new file mode 100644 index 0000000..3fbe9cc --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make @@ -0,0 +1,107 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make + +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: qml/Bolt_Dash/qmldir +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp --name qmake_Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -MF CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp > CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s + +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make +.PHONY : Bolt_Dash_resources_1 + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build: Bolt_Dash_resources_1 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..ca4684a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_Bolt_Dash.cpp" + "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" + "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..9f34916 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..1471eb2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_1. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make new file mode 100644 index 0000000..3e9abce --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make new file mode 100644 index 0000000..8640213 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..3ab17e4 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make new file mode 100644 index 0000000..8f5ef36 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make + +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource Bolt_Dash_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp --name Bolt_Dash_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp > CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s + +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make +.PHONY : Bolt_Dash_resources_2 + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build: Bolt_Dash_resources_2 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..592a8c1 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + ".rcc/qrc_Bolt_Dash_raw_qml_0.cpp" + "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..421a8fa --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..26925a3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_2. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make new file mode 100644 index 0000000..9d32419 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make new file mode 100644 index 0000000..8640213 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make new file mode 100644 index 0000000..6c287f1 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make new file mode 100644 index 0000000..34e7924 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make @@ -0,0 +1,103 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_tooling. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make + +qml/Bolt_Dash/Constants.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying Constants.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml + +qml/Bolt_Dash/DirectoryFontLoader.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying DirectoryFontLoader.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml + +qml/Bolt_Dash/EventListModel.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying EventListModel.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml + +qml/Bolt_Dash/EventListSimulator.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying EventListSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml + +Bolt_Dash_tooling: qml/Bolt_Dash/Constants.qml +Bolt_Dash_tooling: qml/Bolt_Dash/DirectoryFontLoader.qml +Bolt_Dash_tooling: qml/Bolt_Dash/EventListModel.qml +Bolt_Dash_tooling: qml/Bolt_Dash/EventListSimulator.qml +Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make +.PHONY : Bolt_Dash_tooling + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build: Bolt_Dash_tooling +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..e937611 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "../../qml/Bolt_Dash/Constants.qml" + "../../qml/Bolt_Dash/DirectoryFontLoader.qml" + "../../qml/Bolt_Dash/EventListModel.qml" + "../../qml/Bolt_Dash/EventListSimulator.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..f1a0682 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_tooling. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..fed7193 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_tooling. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make new file mode 100644 index 0000000..e22cc86 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 12 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..9927c2c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make new file mode 100644 index 0000000..4caedb6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s + +# Object files for target Bolt_Dashplugin +Bolt_Dashplugin_OBJECTS = \ +"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + +# External object files for target Bolt_Dashplugin +Bolt_Dashplugin_EXTERNAL_OBJECTS = + +qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make +qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../qml/Bolt_Dash/libBolt_Dashplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dashplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build: qml/Bolt_Dash/libBolt_Dashplugin.a +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..c864620 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "../../qml/Bolt_Dash/libBolt_Dashplugin.a" + "../../qml/Bolt_Dash/libBolt_Dashplugin.pdb" + "Bolt_Dashplugin_autogen" + "CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..2df8e64 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../qml/Bolt_Dash/libBolt_Dashplugin.a" +) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make new file mode 100644 index 0000000..6c17ab3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dashplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..7866f98 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make new file mode 100644 index 0000000..8c10503 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dashplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make new file mode 100644 index 0000000..f30dff8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt new file mode 100644 index 0000000..48d23b3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc ../../qml/Bolt_Dash/libBolt_Dashplugin.a CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib ../../qml/Bolt_Dash/libBolt_Dashplugin.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make new file mode 100644 index 0000000..8eb4b49 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..5b1b407 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,118 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [ "-Muri=Bolt_Dash" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make new file mode 100644 index 0000000..a641c84 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json Debug + +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make +.PHONY : Bolt_Dashplugin_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build: Bolt_Dashplugin_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..e8ccc56 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_autogen/mocs_compilation.cpp" + "CMakeFiles/Bolt_Dashplugin_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..77a2a8d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..fe735a7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..dab5079 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make new file mode 100644 index 0000000..0b4107a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s + +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make +.PHONY : Bolt_Dashplugin_init + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build: Bolt_Dashplugin_init +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..6a9b604 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_init_autogen" + "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..88959e8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dashplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..31dd117 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin_init. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make new file mode 100644 index 0000000..086af44 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dashplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make new file mode 100644 index 0000000..8397517 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make new file mode 100644 index 0000000..6c86c2b --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 13 +CMAKE_PROGRESS_2 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..e3f8e4d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,123 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 6, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..b4cb6a8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json Debug + +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make +.PHONY : Bolt_Dashplugin_init_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build: Bolt_Dashplugin_init_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..ed59258 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" + "CMakeFiles/Bolt_Dashplugin_init_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b7a01da --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..b0d50c8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5819b47 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Bolt_Dash/CMakeFiles/progress.marks b/build/imports/Bolt_Dash/CMakeFiles/progress.marks new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/build/imports/Bolt_Dash/Makefile b/build/imports/Bolt_Dash/Makefile new file mode 100644 index 0000000..6f869c3 --- /dev/null +++ b/build/imports/Bolt_Dash/Makefile @@ -0,0 +1,793 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule + +# Convenience name for target. +Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : Bolt_Dash + +# fast build rule for target. +Bolt_Dash/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build +.PHONY : Bolt_Dash/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule + +# Convenience name for target. +Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule +.PHONY : Bolt_Dash_automoc_json_extraction + +# fast build rule for target. +Bolt_Dash_automoc_json_extraction/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build +.PHONY : Bolt_Dash_automoc_json_extraction/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : Bolt_Dash_qmltyperegistration + +# fast build rule for target. +Bolt_Dash_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build +.PHONY : Bolt_Dash_qmltyperegistration/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : Bolt_Dash_resources_1 + +# fast build rule for target. +Bolt_Dash_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build +.PHONY : Bolt_Dash_resources_1/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule + +# Convenience name for target. +Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : Bolt_Dashplugin + +# fast build rule for target. +Bolt_Dashplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build +.PHONY : Bolt_Dashplugin/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : Bolt_Dash_qmllint + +# fast build rule for target. +Bolt_Dash_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build +.PHONY : Bolt_Dash_qmllint/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : Bolt_Dash_qmllint_json + +# fast build rule for target. +Bolt_Dash_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build +.PHONY : Bolt_Dash_qmllint_json/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : Bolt_Dash_qmllint_module + +# fast build rule for target. +Bolt_Dash_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build +.PHONY : Bolt_Dash_qmllint_module/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule + +# Convenience name for target. +Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule +.PHONY : Bolt_Dash_qmlcache + +# fast build rule for target. +Bolt_Dash_qmlcache/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build +.PHONY : Bolt_Dash_qmlcache/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : Bolt_Dash_resources_2 + +# fast build rule for target. +Bolt_Dash_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build +.PHONY : Bolt_Dash_resources_2/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : Bolt_Dashplugin_init + +# fast build rule for target. +Bolt_Dashplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build +.PHONY : Bolt_Dashplugin_init/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : Bolt_Dash_autogen + +# fast build rule for target. +Bolt_Dash_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build +.PHONY : Bolt_Dash_autogen/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : Bolt_Dashplugin_autogen + +# fast build rule for target. +Bolt_Dashplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build +.PHONY : Bolt_Dashplugin_autogen/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule +.PHONY : Bolt_Dash_qmlcache_autogen + +# fast build rule for target. +Bolt_Dash_qmlcache_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build +.PHONY : Bolt_Dash_qmlcache_autogen/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen + +# fast build rule for target. +Bolt_Dashplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build +.PHONY : Bolt_Dashplugin_init_autogen/fast + +.rcc/qmlcache/Bolt_Dash_Constants_qml.o: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_Constants_qml.i: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_Constants_qml.s: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.o: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.i: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.s: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.o: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.i: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.s: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s + +.rcc/qrc_Bolt_Dash_raw_qml_0.o: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.o + +# target to build an object file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o + +.rcc/qrc_Bolt_Dash_raw_qml_0.i: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i + +.rcc/qrc_Bolt_Dash_raw_qml_0.s: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s + +.rcc/qrc_qmake_Bolt_Dash.o: .rcc/qrc_qmake_Bolt_Dash.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash.o + +# target to build an object file +.rcc/qrc_qmake_Bolt_Dash.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.o + +.rcc/qrc_qmake_Bolt_Dash.i: .rcc/qrc_qmake_Bolt_Dash.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash.i + +# target to preprocess a source file +.rcc/qrc_qmake_Bolt_Dash.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.i + +.rcc/qrc_qmake_Bolt_Dash.s: .rcc/qrc_qmake_Bolt_Dash.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash.s + +# target to generate assembly for a file +.rcc/qrc_qmake_Bolt_Dash.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.s + +Bolt_Dash_autogen/mocs_compilation.o: Bolt_Dash_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dash_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.o + +Bolt_Dash_autogen/mocs_compilation.i: Bolt_Dash_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dash_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.i + +Bolt_Dash_autogen/mocs_compilation.s: Bolt_Dash_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dash_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.s + +Bolt_Dash_qmlcache_autogen/mocs_compilation.o: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o + +Bolt_Dash_qmlcache_autogen/mocs_compilation.i: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i + +Bolt_Dash_qmlcache_autogen/mocs_compilation.s: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s + +Bolt_Dashplugin_Bolt_DashPlugin.o: Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.o + +# target to build an object file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.o + +Bolt_Dashplugin_Bolt_DashPlugin.i: Bolt_Dashplugin_Bolt_DashPlugin.cpp.i +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.i + +# target to preprocess a source file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.i + +Bolt_Dashplugin_Bolt_DashPlugin.s: Bolt_Dashplugin_Bolt_DashPlugin.cpp.s +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.s + +# target to generate assembly for a file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.s + +Bolt_Dashplugin_autogen/mocs_compilation.o: Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.o + +Bolt_Dashplugin_autogen/mocs_compilation.i: Bolt_Dashplugin_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.i + +Bolt_Dashplugin_autogen/mocs_compilation.s: Bolt_Dashplugin_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.s + +Bolt_Dashplugin_init.o: Bolt_Dashplugin_init.cpp.o +.PHONY : Bolt_Dashplugin_init.o + +# target to build an object file +Bolt_Dashplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +.PHONY : Bolt_Dashplugin_init.cpp.o + +Bolt_Dashplugin_init.i: Bolt_Dashplugin_init.cpp.i +.PHONY : Bolt_Dashplugin_init.i + +# target to preprocess a source file +Bolt_Dashplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i +.PHONY : Bolt_Dashplugin_init.cpp.i + +Bolt_Dashplugin_init.s: Bolt_Dashplugin_init.cpp.s +.PHONY : Bolt_Dashplugin_init.s + +# target to generate assembly for a file +Bolt_Dashplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s +.PHONY : Bolt_Dashplugin_init.cpp.s + +Bolt_Dashplugin_init_autogen/mocs_compilation.o: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o + +Bolt_Dashplugin_init_autogen/mocs_compilation.i: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i + +Bolt_Dashplugin_init_autogen/mocs_compilation.s: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s + +bolt_dash_qmltyperegistrations.o: bolt_dash_qmltyperegistrations.cpp.o +.PHONY : bolt_dash_qmltyperegistrations.o + +# target to build an object file +bolt_dash_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o +.PHONY : bolt_dash_qmltyperegistrations.cpp.o + +bolt_dash_qmltyperegistrations.i: bolt_dash_qmltyperegistrations.cpp.i +.PHONY : bolt_dash_qmltyperegistrations.i + +# target to preprocess a source file +bolt_dash_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i +.PHONY : bolt_dash_qmltyperegistrations.cpp.i + +bolt_dash_qmltyperegistrations.s: bolt_dash_qmltyperegistrations.cpp.s +.PHONY : bolt_dash_qmltyperegistrations.s + +# target to generate assembly for a file +bolt_dash_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s +.PHONY : bolt_dash_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... Bolt_Dash_autogen" + @echo "... Bolt_Dash_automoc_json_extraction" + @echo "... Bolt_Dash_qmlcache_autogen" + @echo "... Bolt_Dash_qmllint" + @echo "... Bolt_Dash_qmllint_json" + @echo "... Bolt_Dash_qmllint_module" + @echo "... Bolt_Dash_qmltyperegistration" + @echo "... Bolt_Dashplugin_autogen" + @echo "... Bolt_Dashplugin_init_autogen" + @echo "... Bolt_Dash" + @echo "... Bolt_Dash_qmlcache" + @echo "... Bolt_Dash_resources_1" + @echo "... Bolt_Dash_resources_2" + @echo "... Bolt_Dash_tooling" + @echo "... Bolt_Dashplugin" + @echo "... Bolt_Dashplugin_init" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.o" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.i" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.s" + @echo "... .rcc/qrc_qmake_Bolt_Dash.o" + @echo "... .rcc/qrc_qmake_Bolt_Dash.i" + @echo "... .rcc/qrc_qmake_Bolt_Dash.s" + @echo "... Bolt_Dash_autogen/mocs_compilation.o" + @echo "... Bolt_Dash_autogen/mocs_compilation.i" + @echo "... Bolt_Dash_autogen/mocs_compilation.s" + @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.o" + @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.i" + @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.s" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.o" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.i" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.s" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.o" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.i" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.s" + @echo "... Bolt_Dashplugin_init.o" + @echo "... Bolt_Dashplugin_init.i" + @echo "... Bolt_Dashplugin_init.s" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.o" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.i" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.s" + @echo "... bolt_dash_qmltyperegistrations.o" + @echo "... bolt_dash_qmltyperegistrations.i" + @echo "... bolt_dash_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/Bolt_Dash/cmake_install.cmake b/build/imports/Bolt_Dash/cmake_install.cmake new file mode 100644 index 0000000..e477d59 --- /dev/null +++ b/build/imports/Bolt_Dash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json b/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt new file mode 100644 index 0000000..3e857de --- /dev/null +++ b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5819b47 --- /dev/null +++ b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/CMakeFiles/progress.marks b/build/imports/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/imports/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/imports/Makefile b/build/imports/Makefile new file mode 100644 index 0000000..c7aebfd --- /dev/null +++ b/build/imports/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/cmake_install.cmake b/build/imports/cmake_install.cmake new file mode 100644 index 0000000..9fdb1a4 --- /dev/null +++ b/build/imports/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/opt/homebrew") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/cmake_install.cmake") +endif() + diff --git a/build/meta_types/qt6bolt_dashapp_debug_metatypes.json b/build/meta_types/qt6bolt_dashapp_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc b/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc new file mode 100644 index 0000000..2c84e73 --- /dev/null +++ b/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Backend + + + diff --git a/build/qml/Backend/qmldir b/build/qml/Backend/qmldir new file mode 100644 index 0000000..c3a9c4a --- /dev/null +++ b/build/qml/Backend/qmldir @@ -0,0 +1,7 @@ +module Backend +linktarget BackendPluginplugin +optional plugin BackendPluginplugin +classname BackendPlugin +typeinfo BackendPlugin.qmltypes +prefer :/Backend/ + diff --git a/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc b/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc new file mode 100644 index 0000000..7dbbe00 --- /dev/null +++ b/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash + + + diff --git a/build/qml/Bolt_Dash/Constants.qml b/build/qml/Bolt_Dash/Constants.qml new file mode 100644 index 0000000..cb27244 --- /dev/null +++ b/build/qml/Bolt_Dash/Constants.qml @@ -0,0 +1,27 @@ +pragma Singleton +import QtQuick 6.2 +import QtQuick.Studio.Application + +QtObject { + readonly property int width: 800 + readonly property int height: 480 + + property string relativeFontDirectory: "fonts" + + /* Edit this comment to add your custom font */ + readonly property font font: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize + }) + readonly property font largeFont: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize * 1.6 + }) + + readonly property color backgroundColor: "#c2c2c2" + + + property StudioApplication application: StudioApplication { + fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + } +} diff --git a/build/qml/Bolt_Dash/DirectoryFontLoader.qml b/build/qml/Bolt_Dash/DirectoryFontLoader.qml new file mode 100644 index 0000000..aa22eac --- /dev/null +++ b/build/qml/Bolt_Dash/DirectoryFontLoader.qml @@ -0,0 +1,34 @@ +// Copyright (C) 2019 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import Qt.labs.folderlistmodel 6.2 + +QtObject { + id: loader + + property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + property string relativeFontDirectory: "fonts" + + function loadFont(url) { + var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', + loader, + "dynamicFontLoader"); + } + + property FolderListModel folderModel: FolderListModel { + id: folderModel + folder: loader.fontDirectory + nameFilters: [ "*.ttf", "*.otf" ] + showDirs: false + + onStatusChanged: { + if (folderModel.status == FolderListModel.Ready) { + var i + for (i = 0; i < count; i++) { + loadFont(folderModel.get(i, "fileURL")) + } + } + } + } +} diff --git a/build/qml/Bolt_Dash/EventListModel.qml b/build/qml/Bolt_Dash/EventListModel.qml new file mode 100644 index 0000000..bd5e5c3 --- /dev/null +++ b/build/qml/Bolt_Dash/EventListModel.qml @@ -0,0 +1,15 @@ +// Copyright (C) 2018 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 + +ListModel { + id: eventListModel + + ListElement { + eventId: "enterPressed" + eventDescription: "Emitted when pressing the enter button" + shortcut: "Return" + parameters: "Enter" + } +} diff --git a/build/qml/Bolt_Dash/EventListSimulator.qml b/build/qml/Bolt_Dash/EventListSimulator.qml new file mode 100644 index 0000000..b7724cb --- /dev/null +++ b/build/qml/Bolt_Dash/EventListSimulator.qml @@ -0,0 +1,25 @@ +// Copyright (C) 2018 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import QtQuick.Studio.EventSimulator 1.0 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: simulator + property bool active: true + + property Timer __timer: Timer { + id: timer + interval: 100 + onTriggered: { + EventSimulator.show() + } + } + + Component.onCompleted: { + EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) + if (simulator.active) + timer.start() + } +} diff --git a/build/qml/Bolt_Dash/qmldir b/build/qml/Bolt_Dash/qmldir new file mode 100644 index 0000000..6e42ed5 --- /dev/null +++ b/build/qml/Bolt_Dash/qmldir @@ -0,0 +1,11 @@ +module Bolt_Dash +linktarget Bolt_Dashplugin +optional plugin Bolt_Dashplugin +classname Bolt_DashPlugin +typeinfo Bolt_Dash.qmltypes +prefer :/Bolt_Dash/ +singleton Constants 1.0 Constants.qml +DirectoryFontLoader 1.0 DirectoryFontLoader.qml +EventListModel 1.0 EventListModel.qml +EventListSimulator 1.0 EventListSimulator.qml + diff --git a/build/qml/FlowView/+DesignMode/FlowItem.qml b/build/qml/FlowView/+DesignMode/FlowItem.qml new file mode 100644 index 0000000..b988b02 --- /dev/null +++ b/build/qml/FlowView/+DesignMode/FlowItem.qml @@ -0,0 +1,100 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +import QtQuick 2.12 +import FlowView 1.0 + +Item { + id: flowItem + + width: 400 + height: 400 + + property var flowView: Item {} + + property string __designer_url__ + + property alias loaderSource: loader.source + + property var stateChangeTarget + + property string defaultState + + clip: true + + function setState(state) { + + } + + onStateChangeTargetChanged: { + loader.source = stateChangeTarget['__designer_url__'] + loader.item.state = flowItem.targetState + flowItem.width = flowItem.stateChangeTarget.width + flowItem.height = flowItem.stateChangeTarget.height + } + + + property string targetState + + onTargetStateChanged: { + loader.active = false + loader.active = true + loader.item.state = flowItem.targetState + } + + Text { + text: flowItem.targetState + } + + property bool active: false + + + function init() { + flowItem.defaultState = flowItem.state + if (FlowState.loading) + return + + if (loader.source == "") + return + + FlowState.loading = true + flowItem.active = true + } + + Loader { + id: loader + active: flowItem.active + onLoaded: { + flowItem.width = loader.item.childrenRect.width + flowItem.height = loader.item.childrenRect.height + FlowState.loading = false + } + } +} diff --git a/build/qml/FlowView/+DesignMode/FlowView.qml b/build/qml/FlowView/+DesignMode/FlowView.qml new file mode 100644 index 0000000..cfd2720 --- /dev/null +++ b/build/qml/FlowView/+DesignMode/FlowView.qml @@ -0,0 +1,311 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +Item { + id: root + width: 200 + height: 200 + + property FlowTransition defaultTransition + + property FlowTransition currentTransition + + property FlowTransition __forceTransition + + property list flowTransitions + property list flowDecisions + property list flowWildcards + + property Item interaction: Item { + } + + enum EffectEnum { + Instant, + Dissolve, + Fade, + Pop + } + + property bool __blockHistory: false + + property bool __isFlowView: true + + function goBack() { + if (root.__history.length === 0) + return + + var poppedItem = root.__history.pop() + + root.__blockHistory = true + root.activatedItem = poppedItem + root.__activateItem() + root.__blockHistory = false + + + if (root.__history.length > 0) + root.lastItem = root.__history.slice(-1)[0] + else + root.lastItem = null + } + + function __activateItem() { + if (!__isCompleted) + return + + if (root.activatedItem === root.currentItem) + return; + + if (root.activatedItem === root.nextItem) + return; + + root.nextItem = root.activatedItem + + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === root.activatedItem) + root.currentIndex = i + } + + } + + default property alias item: stack.data + + property Item nextItem + + property Item currentItem + property Item activatedItem + property Item lastItem + property int currentIndex: 0 + + //property list __history + property var __history: [] + + property int maxIndex: 0 + + signal transitionFinished + + property alias __stack: stack + + Item { + id: stack + visible: true + } + + property bool __isCompleted: false + + property real progress: 0 + + property bool __blockSchedule: false + + onActivatedItemChanged: { + root.__activateItem() + } + + function resetCurrentIndex() { + root.__blockSchedule = true + root.lastItem = root.currentItem + root.__history.push(root.lastItem) + + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === root.currentItem) + root.currentIndex = i + } + root.__blockSchedule = false + } + + Component.onCompleted: { + root.maxIndex = stack.children.length - 1 + + root.allChildren = [] + + for (var i = 0; i < stack.children.length; ++i) { + root.allChildren.push(stack.children[i]) + if (stack.children[i].flowView !== undefined) { + stack.children[i].flowView = root + stack.children[i].init() + } + } + + /* Assign view to all flowTransitions */ + if (defaultTransition) { + defaultTransition.transitionView = root + } + + for (i = 0; i < root.flowWildcards.length; ++i) { + var w = root.flowWildcards[i] + w.transitionView = root + } + + var t + + for (i = 0; i < root.flowTransitions.length; ++i) { + t = root.flowTransitions[i] + t.transitionView = root + } + + for (i = 0; i < root.flowTransitions.length; ++i) { + t = root.flowTransitions[i] + if (root.checkInclude(t.from, root)) { + root.currentItem = t.to[0] + if (root.currentItem.stateChangeTarget !== undefined) { + root.currentItem.stateChangeTarget.setState(root.currentItem.targetState) + root.currentItem = root.currentItem.stateChangeTarget + } + } + } + + root.resetCurrentIndex() + + __setupCurrentItem() + __isCompleted = true + } + + function checkInclude(list, item) + { + for (var i = 0; i < list.length; ++i) { + if (list[i] === item) + return true + } + return false + } + + function scheduleTransition() + { + root.progress = 0 + + var pageTransition = null + + /* find correct transition */ + for (var i = 0; i < root.flowTransitions.length; ++i) { + var t = root.flowTransitions[i] + if (checkInclude(t.from, root.currentItem) && checkInclude(t.to, root.nextItem)) { + pageTransition = t + } + } + + if (pageTransition !== null) { + + } else { + pageTransition = root.defaultTransition + } + + if (root.currentTransition) + root.currentTransition.__stop() + + /* If a specific transition is forced then use this one. */ + if (__forceTransition) + pageTransition = __forceTransition + __forceTransition = null + + root.currentTransition = pageTransition + if (root.currentTransition) + root.currentTransition.__reset(root.currentItem, root.nextItem) + + root.progress = Qt.binding(function () { + if (root.currentTransition) + return root.currentTransition.progress + return 0 + }) + } + + onCurrentIndexChanged: { + root.nextItem = root.allChildren[root.currentIndex] + + if (root.nextItem === root.currentItem) + return + + if (root.__blockSchedule) + return + + if (root.nextItem.stateChangeTarget !== undefined) { + var itemVar = root.nextItem.stateChangeTarget + var stateVar = root.nextItem.targetState + itemVar.state = stateVar + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === itemVar) + root.currentIndex = i + } + } + + scheduleTransition() + + if (!root.__blockHistory) { + root.lastItem = root.currentItem + if (!Array.isArray(root.__history)) + root.__history = [] + + root.__history.push(root.lastItem) + } + + root.currentTransition.__start() + } + + function __setupCurrentItem() { + if (root.currentItem) + root.currentItem.parent = stack + + if (root.nextItem) + root.currentItem = root.nextItem + else + root.currentItem = root.allChildren[root.currentIndex] + + + root.currentItem.parent = root + root.currentTransition = null + transitionFinished() + } + + function gotoPage(transition) { + var page = transition.to[0] + /* There might be another transition that fits. We are forcing this one. */ + __forceTransition = transition + for (var i = 0; i < root.allChildren.length; ++i) { + if (page === root.allChildren[i]) { + root.currentIndex = i + } + } + } + + property var allChildren + + property Item __fromContentItem: Item { + width: root.width + height: root.height + parent: root + } + + property Item __toContentItem: Item { + width: root.width + height: root.height + parent: root + } +} + + diff --git a/build/qml/FlowView/DefaultFlowEffect.qml b/build/qml/FlowView/DefaultFlowEffect.qml new file mode 100644 index 0000000..0c1a306 --- /dev/null +++ b/build/qml/FlowView/DefaultFlowEffect.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.15 + +FlowEffect { + //No Effect + duration: 0 +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowActionArea.qml b/build/qml/FlowView/FlowActionArea.qml new file mode 100644 index 0000000..6852d83 --- /dev/null +++ b/build/qml/FlowView/FlowActionArea.qml @@ -0,0 +1,213 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 +import QtQuick.Studio.EventSystem 1.0 + +Item { + width: 80 + height: 40 + + id: root + + enum ActionType{ + LeftPress = 0, + LeftDoublePress = 1, + LeftLongPress = 2, + RightPress = 3, + RightDoublePress = 4, + RightLongPress = 5, + FlickUp = 6, + FlickDown = 7, + FlickLeft = 8, + FlickRight = 9, + PinchIn = 10, + PinchOut = 11 + } + + Item { + id: priv + + property double dragStartTime; + property point dragStartPoint; + } + + signal triggered + + property real maxDragTime: 500 + property real minDragDistance: 50 + property real minPinchFactor: 2.0 + + property int eventType: FlowActionArea.LeftPress + + TapHandler { + enabled: (root.eventType >= FlowActionArea.LeftPress && root.eventType <= FlowActionArea.LeftLongPress) + acceptedButtons: Qt.LeftButton + onTapped: if (root.eventType === FlowActionArea.LeftPress) { root.trigger(); } + onDoubleTapped: if (root.eventType === FlowActionArea.LeftDoublePress) { root.trigger(); } + onLongPressed: if (root.eventType === FlowActionArea.LeftLongPress) { root.trigger(); } + } + + TapHandler { + enabled: (root.eventType >= FlowActionArea.RightPress && root.eventType <= FlowActionArea.RightLongPress) + acceptedButtons: Qt.RightButton + onTapped: if (root.eventType === FlowActionArea.RightPress) { root.trigger(); } + onDoubleTapped: if (root.eventType === FlowActionArea.RightDoublePress) { root.trigger(); } + onLongPressed: if (root.eventType === FlowActionArea.RightLongPress) { root.trigger(); } + } + + PointHandler { + enabled: (root.eventType >= FlowActionArea.FlickUp && root.eventType <= FlowActionArea.FlickRight) + target: null + + onActiveChanged: { + if (active) { + priv.dragStartTime = Date.now(); + priv.dragStartPoint = point.position; + } else { + var time = Date.now() - priv.dragStartTime; + var distance = root.moveDistance(priv.dragStartPoint, point.position); + if (time < root.maxDragTime && distance > root.minDragDistance){ + var angle = root.moveAngle(priv.dragStartPoint, point.position); + + switch (root.eventType){ + case FlowActionArea.FlickUp: + if (angle > 2.618 || angle < -2.618) { + root.trigger(); + } + break; + case FlowActionArea.FlickDown: + if (angle < 0.524 && angle > -0.524) { + root.trigger(); + } + break; + case FlowActionArea.FlickLeft: + if (angle < -1.047 && angle > -2.094) { + root.trigger(); + } + break; + case FlowActionArea.FlickRight: + if (angle < 2.094 && angle > 1.047) { + root.trigger(); + } + break; + } + } + } + } + } + + PinchHandler { + enabled: (root.eventType === FlowActionArea.PinchIn || root.eventType === FlowActionArea.PinchOut) + target: null + + onActiveChanged: { + if (active) { + priv.dragStartTime = Date.now(); + } else { + var time = Date.now() - priv.dragStartTime; + if (time < root.maxDragTime) { + if (root.eventType === FlowActionArea.PinchIn && activeScale < (1.0 / root.minPinchFactor)) { + root.trigger(); + } else if (root.eventType === FlowActionArea.PinchOut && activeScale > root.minPinchFactor) { + root.trigger(); + } + } + } + } + } + + function moveDistance(start, end){ + var x = end.x - start.x; + var y = end.y - start.y; + return Math.sqrt(x*x+y*y); + } + + function moveAngle(start, end){ + var x = end.x - start.x; + var y = end.y - start.y; + return Math.atan2(x,y); + } + + function trigger() { + + var one = root.activeState + var two = root.parent.state + + if (one !== two) + return + + if (root.goBack) { + var par = root.parent + while (par) { + if (par.__isFlowView) { + par.goBack() + return + } + par = par.parent + } + } else { + target.trigger() + } + + root.triggered() + } + + property Connections connections : Connections { + id: connections + } + + property QtObject target + + readonly property bool isActionArea: true + property bool fromStateChange: false + + property string activeState: "" + + enabled: (target !== null || root.goBack) && (root.activeState === root.parent.state) + + property bool goBack: false + + property alias eventIds: eventListener.eventIds + + function __receiveEvent(parameters) { + var flowItem = root.parent + var flow = flowItem.parent + + if (flow.currentItem !== flowItem) + return; + + root.trigger() + } + + EventListener { + id: eventListener + onTriggered: root.__receiveEvent(parameters) + } +} diff --git a/build/qml/FlowView/FlowDecision.qml b/build/qml/FlowView/FlowDecision.qml new file mode 100644 index 0000000..bec7a92 --- /dev/null +++ b/build/qml/FlowView/FlowDecision.qml @@ -0,0 +1,126 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.15 +import QtQuick.Window 2.14 +import QtQuick.Controls 2.15 + +QtObject { + id: root + + property list targets + + readonly property bool isFlowDecision: true + + property string dialogTitle: qsTr("Title") + + function trigger() { + var hasDialog = false + for (var i = 0; i < root.targets.length; ++i) { + if (root.targets[i].question !== "") + hasDialog = true + } + + if (hasDialog) { + loader.show() + } + } + + property Loader loader: Loader { + active: false + function show() { + active = true + item.show() + item.raise() + item.requestActivate() + } + + sourceComponent: windowComponent + } + + property Component windowComponent: Component { + + Window { + + id: dialog + + title: root.dialogTitle + modality: Qt.WindowModal + transientParent: root.Window.window + + width: 400 + height: column.height + + minimumWidth: 400 + minimumHeight: 100 + flags: Qt.Dialog | Qt.WindowStaysOnTopHint | Qt.WindowTitleHint + + Rectangle { + id: background + anchors.fill: parent + + ScrollView { + anchors.fill: parent + + + Column { + id: column + Repeater { + model: targets + Rectangle { + visible: root.targets[index].question !== "" + width: background.width + height: 20 + opacity: mouseArea.containsMouse ? 1 : 0.8 + color: index / 2 ? "#ebecf0" : "white" + MouseArea { + id: mouseArea + hoverEnabled: true + onClicked: { + root.targets[index].__decisionTrigger() + loader.item.close() + loader.active = false + } + anchors.fill: parent + } + + Text { + height: 20 + text: root.targets[index].question + verticalAlignment: Text.AlignVCenter + } + } + } + } + } + } + } + + } +} diff --git a/build/qml/FlowView/FlowEffect.qml b/build/qml/FlowView/FlowEffect.qml new file mode 100644 index 0000000..08bafc0 --- /dev/null +++ b/build/qml/FlowView/FlowEffect.qml @@ -0,0 +1,161 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +import QtQuick 2.15 +import QtQuick.Timeline 1.0 + +QtObject { + id: root + signal finished + signal started + signal reseted + function reset() { + /* + if (root.duration === 0) { + root.transitionView.__setupCurrentItem() + return + }*/ + + /* We set the parents to the content items to apply effects */ + + resetProperties() + + from.parent = transitionView.__fromContentItem + to.parent = transitionView.__toContentItem + root.progress = root.backwards ? 100 : 0 + + enable() + root.progress = -1 + root.progress = 0 + } + + property bool __aborted: false + + function enable() { + timeline.enabled = true + root.started() + } + + function start() { + anim.from = Math.min(root.progress, 100) + anim.to = root.backwards ? 0 : 100 + anim.duration = root.duration * Math.abs(anim.to - anim.from) / 100 + + root.__aborted = false + + anim.start() + } + + function abort() { + + anim.from = root.progress + anim.to = root.backwards ? 100 : 0 + + anim.duration = root.duration * Math.abs(anim.from - anim.to) / 100 + + root.__aborted = true + anim.restart() + + } + + function stop() { + anim.stop() + } + + property Item from + property Item to + + property Item transitionView + + property real duration: 250 + property alias easing: anim.easing + + property Timeline timeline: Timeline { + + } + + property real progress: 0 + + property bool backwards: false + + property Binding timelineBinding: Binding { + target: timeline + property: "currentFrame" + value: root.progress * 10 + } + + function resetProperties() { + transitionView.__fromContentItem.opacity = 1 + transitionView.__fromContentItem.x = 0 + transitionView.__fromContentItem.y = 0 + transitionView.__fromContentItem.z = 0 + transitionView.__fromContentItem.scale = 1 + + transitionView.__toContentItem.opacity = 1 + transitionView.__toContentItem.x = 0 + transitionView.__toContentItem.y = 0 + transitionView.__toContentItem.z = 0 + transitionView.__toContentItem.scale = 1 + } + + property PropertyAnimation __anim: PropertyAnimation { + id: anim + duration: 250 + loops: 1 + target: root + property: "progress" + onStopped: { + timeline.enabled = false + /* reset all typical properties */ + + resetProperties() + + root.finished() + + if (!root.__aborted) { + root.transitionView.__setupCurrentItem() + } else { + if (root.transitionView.nextItem) { + root.transitionView.nextItem.parent = transitionView.__stack + root.transitionView.nextItem = root.transitionView.currentItem + } + root.transitionView.__setupCurrentItem() + root.transitionView.nextItem = null + } + + root.progress = 0 + } + } + +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowFadeEffect.qml b/build/qml/FlowView/FlowFadeEffect.qml new file mode 100644 index 0000000..6797b1f --- /dev/null +++ b/build/qml/FlowView/FlowFadeEffect.qml @@ -0,0 +1,80 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + //Fade Effect + duration: 250 + onStarted: { + group01.target = transitionView.__fromContentItem + group02.target = transitionView.__toContentItem + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "opacity" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + } +} diff --git a/build/qml/FlowView/FlowItem.qml b/build/qml/FlowView/FlowItem.qml new file mode 100644 index 0000000..b87007a --- /dev/null +++ b/build/qml/FlowView/FlowItem.qml @@ -0,0 +1,116 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 + +Item { + id: flowItem + + width: 400 + height: 400 + + property var flowView: Item {} + + property alias loaderSource: loader.source + + property var stateChangeTarget + + property string targetState + + property string defaultState: undefined + + property bool forceActive: false + + property bool __isFlowItem: true + + function setState(newState) { + flowItem.state = newState + } + + property bool active: { + if (flowItem.forceActive) + return true; + if (flowItem.flowView !== null + && flowItem.flowView.currentItem !== undefined + && flowItem.flowView.currentItem === flowItem) + return true + + if (flowItem.flowView !== null + && flowItem.flowView.nextItem !== undefined + && flowItem.flowView.nextItem === flowItem) + return true + + return false + } + + Loader { + id: loader + active: flowItem.active + } + + + function init() { + + flowItem.x = 0 + flowItem.y = 0 + + flowItem.defaultState = flowItem.state + var itemVar + var i + + if (flowItem.stateChangeTarget === undefined) { + + for (i = 0; i < flowItem.children.length; ++i) { + itemVar = flowItem.children[i] + if (itemVar.isActionArea === true + && !itemVar.fromStateChange) { + itemVar.activeState = flowItem.state + } + + } + } else { + var childNum = flowItem.children.length + var childArray = [] + + for (i = 0; i < flowItem.children.length; ++i) { + childArray.push(flowItem.children[i]) + } + + for (i = 0; i < childNum; ++i) { + itemVar = childArray[i] + + if (itemVar.isActionArea === true) { + itemVar.fromStateChange = true + itemVar.activeState = flowItem.targetState + itemVar.parent = flowItem.stateChangeTarget + } + } + } + } +} diff --git a/build/qml/FlowView/FlowMoveEffect.qml b/build/qml/FlowView/FlowMoveEffect.qml new file mode 100644 index 0000000..de3ecda --- /dev/null +++ b/build/qml/FlowView/FlowMoveEffect.qml @@ -0,0 +1,102 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real itemHeight: transitionView.height + property int direction: 0 + //left, right, up, down + + duration: 250 + onStarted: { + group01.target = effect.transitionView.__toContentItem + group02.target = effect.transitionView.__toContentItem + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + + value: { + if (effect.direction === 0) + return -effect.transitionView.width + if (effect.direction === 1) + return effect.transitionView.width + return 0 + } + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + + KeyframeGroup { + id: group02 + + property: "y" + + Keyframe { + frame: 0 + + value: { + if (effect.direction === 2) + return -effect.itemHeight + if (effect.direction === 3) + return effect.itemHeight + return 0 + } + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + + + } +} diff --git a/build/qml/FlowView/FlowPushEffect.qml b/build/qml/FlowView/FlowPushEffect.qml new file mode 100644 index 0000000..3fb911a --- /dev/null +++ b/build/qml/FlowView/FlowPushEffect.qml @@ -0,0 +1,231 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real scale: 1 + property real inOpacity: 1 + property real outOpacity: 1 + + property int direction: 0 + //left, right, up, down + + property bool revealCurrent: false + property int itemHeight: effect.transitionView.height + + duration: 250 + onStarted: { + group01.target = transitionView.__fromContentItem + group02.target = transitionView.__toContentItem + group03.target = transitionView.__fromContentItem + group04.target = transitionView.__toContentItem + group05.target = transitionView.__fromContentItem + group06.target = transitionView.__toContentItem + group07.target = transitionView.__fromContentItem + group08.target = transitionView.__toContentItem + if (effect.revealCurrent) + group01.target.z = 1 + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + value: { + if (effect.direction === 0) + return effect.transitionView.width + if (effect.direction === 1) + return -effect.transitionView.width + return 0 + } + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "x" + + Keyframe { + frame: 0 + value: { + if (effect.revealCurrent) + return 0 + if (effect.direction === 0) + return -effect.transitionView.width + if (effect.direction === 1) + return effect.transitionView.width + return 0 + } + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group03 + + property: "scale" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.scale + easing: effect.easing + } + } + + KeyframeGroup { + id: group04 + + property: "scale" + + Keyframe { + frame: 0 + value: effect.scale + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + + KeyframeGroup { + id: group05 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.outOpacity + easing: effect.easing + } + } + + KeyframeGroup { + id: group06 + + property: "opacity" + + Keyframe { + frame: 0 + value: effect.inOpacity + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + + KeyframeGroup { + id: group07 + + property: "y" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + + value: { + if (effect.direction === 2) + return -effect.itemHeight + if (effect.direction === 3) + return effect.itemHeight + return 0 + } + + easing: effect.easing + } + } + + KeyframeGroup { + id: group08 + + property: "y" + + Keyframe { + frame: 0 + + value: { + if (effect.revealCurrent) + return 0 + if (effect.direction === 2) + return effect.itemHeight + if (effect.direction === 3) + return -effect.itemHeight + return 0 + } + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + } +} diff --git a/build/qml/FlowView/FlowPushLeftEffect.qml b/build/qml/FlowView/FlowPushLeftEffect.qml new file mode 100644 index 0000000..886228c --- /dev/null +++ b/build/qml/FlowView/FlowPushLeftEffect.qml @@ -0,0 +1,155 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real scale: 1 + property real opacity: 1 + + duration: 250 + onStarted: { + group01.target = transitionView.__fromContentItem + group02.target = transitionView.__toContentItem + group03.target = transitionView.__fromContentItem + group04.target = transitionView.__toContentItem + group05.target = transitionView.__fromContentItem + group06.target = transitionView.__toContentItem + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + value: effect.transitionView.width + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "x" + + Keyframe { + frame: 0 + value: -effect.transitionView.width + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group03 + + property: "scale" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.scale + easing: effect.easing + } + } + + KeyframeGroup { + id: group04 + + property: "scale" + + Keyframe { + frame: 0 + value: effect.scale + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + + KeyframeGroup { + id: group05 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.opacity + easing: effect.easing + } + } + + KeyframeGroup { + id: group06 + + property: "opacity" + + Keyframe { + frame: 0 + value: effect.opacity + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + } +} diff --git a/build/qml/FlowView/FlowPushRightEffect.qml b/build/qml/FlowView/FlowPushRightEffect.qml new file mode 100644 index 0000000..cb169d4 --- /dev/null +++ b/build/qml/FlowView/FlowPushRightEffect.qml @@ -0,0 +1,155 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real scale: 1 + property real opacity: 1 + + duration: 250 + onStarted: { + group01.target = transitionView.__fromContentItem + group02.target = transitionView.__toContentItem + group03.target = transitionView.__fromContentItem + group04.target = transitionView.__toContentItem + group05.target = transitionView.__fromContentItem + group06.target = transitionView.__toContentItem + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + value: -effect.transitionView.width + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "x" + + Keyframe { + frame: 0 + value: effect.transitionView.width + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group03 + + property: "scale" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.scale + easing: effect.easing + } + } + + KeyframeGroup { + id: group04 + + property: "scale" + + Keyframe { + frame: 0 + value: effect.scale + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + + KeyframeGroup { + id: group05 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.opacity + easing: effect.easing + } + } + + KeyframeGroup { + id: group06 + + property: "opacity" + + Keyframe { + frame: 0 + value: effect.opacity + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + } +} diff --git a/build/qml/FlowView/FlowPushUpEffect.qml b/build/qml/FlowView/FlowPushUpEffect.qml new file mode 100644 index 0000000..888d72c --- /dev/null +++ b/build/qml/FlowView/FlowPushUpEffect.qml @@ -0,0 +1,162 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real scale: 1 + property real inOpacity: 1 + property real outOpacity: 1 + + property int fromItemHeight: effect.transitionView.height + + property bool revealCurrent: false + + duration: 250 + onStarted: { + group01.target = transitionView.__fromContentItem + group02.target = transitionView.__toContentItem + group03.target = transitionView.__fromContentItem + group04.target = transitionView.__toContentItem + group05.target = transitionView.__fromContentItem + group06.target = transitionView.__toContentItem + if (effect.revealCurrent) + group01.target.z = 1 + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "y" + + Keyframe { + frame: 0 + value: 0 + } + + Keyframe { + frame: 1000 + value: -fromItemHeight + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "y" + + Keyframe { + frame: 0 + value: effect.revealCurrent ? 0 : effect.transitionView.height + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group03 + + property: "scale" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.scale + easing: effect.easing + } + } + + KeyframeGroup { + id: group04 + + property: "scale" + + Keyframe { + frame: 0 + value: effect.scale + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + + KeyframeGroup { + id: group05 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.outOpacity + easing: effect.easing + } + } + + KeyframeGroup { + id: group06 + + property: "opacity" + + Keyframe { + frame: 0 + value: effect.inOpacity + } + + Keyframe { + frame: 1000 + value: 1 + easing: effect.easing + } + } + } +} diff --git a/build/qml/FlowView/FlowSlideDownEffect.qml b/build/qml/FlowView/FlowSlideDownEffect.qml new file mode 100644 index 0000000..88ff610 --- /dev/null +++ b/build/qml/FlowView/FlowSlideDownEffect.qml @@ -0,0 +1,90 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + property real itemHeight: transitionView.height + property real outOpacity: 1 + + duration: 250 + onStarted: { + group01.target = transitionView.__toContentItem + group02.target = transitionView.__fromContentItem + group01.target.z = 1 + } + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "y" + + Keyframe { + frame: 0 + value: -effect.itemHeight + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + + KeyframeGroup { + id: group02 + + property: "opacity" + + Keyframe { + frame: 0 + value: 1 + } + + Keyframe { + frame: 1000 + value: effect.outOpacity + easing: effect.easing + } + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowSlideLeftEffect.qml b/build/qml/FlowView/FlowSlideLeftEffect.qml new file mode 100644 index 0000000..21a3027 --- /dev/null +++ b/build/qml/FlowView/FlowSlideLeftEffect.qml @@ -0,0 +1,66 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + duration: 250 + onStarted: group01.target = transitionView.__toContentItem + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + value: -transitionView.width + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowSlideRightEffect.qml b/build/qml/FlowView/FlowSlideRightEffect.qml new file mode 100644 index 0000000..12d3262 --- /dev/null +++ b/build/qml/FlowView/FlowSlideRightEffect.qml @@ -0,0 +1,66 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + duration: 250 + onStarted: group01.target = transitionView.__toContentItem + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "x" + + Keyframe { + frame: 0 + value:transitionView.width + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowSlideUpEffect.qml b/build/qml/FlowView/FlowSlideUpEffect.qml new file mode 100644 index 0000000..aa06c93 --- /dev/null +++ b/build/qml/FlowView/FlowSlideUpEffect.qml @@ -0,0 +1,66 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Timeline 1.0 + +FlowEffect { + id: effect + + duration: 250 + onStarted: group01.target = transitionView.__toContentItem + + timeline: Timeline { + startFrame: 0 + endFrame: 1000 + + KeyframeGroup { + id: group01 + + property: "y" + + Keyframe { + frame: 0 + value: transitionView.height + } + + Keyframe { + frame: 1000 + value: 0 + easing: effect.easing + } + } + } +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/FlowView/FlowState.qml b/build/qml/FlowView/FlowState.qml new file mode 100644 index 0000000..6f16db7 --- /dev/null +++ b/build/qml/FlowView/FlowState.qml @@ -0,0 +1,36 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +pragma Singleton +import QtQuick 2.15 + +QtObject { + id: object + + property bool loading: false +} diff --git a/build/qml/FlowView/FlowTransition.qml b/build/qml/FlowView/FlowTransition.qml new file mode 100644 index 0000000..5ff1d27 --- /dev/null +++ b/build/qml/FlowView/FlowTransition.qml @@ -0,0 +1,154 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.15 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: root + + signal finished + + /* Those should be lists that allow a n*n mappings. */ + //property Item from: null + //property Item to: null + property list from + property list to + property int duration + + property var transitionView: Item {} + + property real progress: effect.progress + + property bool condition: true + + property string question + + function __start() { + root.effect.start() + } + + function __enable() { + effect.enable() + } + + function __reset(current, next) { + root.effect.from = current + root.effect.to = next + root.effect.transitionView = root.transitionView + + root.effect.reset() + } + + function __stop(current, next) { + root.effect.stop() + } + + function __checkInclude(list, item) { + for (var i = 0; i < list.length; ++i) { + if (list[i] === item) + return true + } + return false + } + + property alias eventIds: eventListener.eventIds + + function __receiveEvent(parameters) { + var flowItem = root.from[0] + var flow = root.transitionView + + if (flowItem.stateChangeTarget !== undefined + && flowItem.stateChangeTarget === flow.currentItem) { + if (flowItem.targetState === flow.currentItem.state) + flowItem = flowItem.stateChangeTarget + } + + if (flow.currentItem !== flowItem) + return; + + root.trigger() + } + + property EventListener eventListener: EventListener { + id: eventListener + onTriggered: root.__receiveEvent(parameters) + } + + function trigger() { + var fromEmpty = root.from.length === 0 + + if (to[0].isFlowDecision === true) + to[0].trigger(); + + var stateChanger = false + + if (root.from[0] !== undefined) + stateChanger = root.from[0].stateChangeTarget !== undefined + + var toStateChanger = false + + if (root.to[0] !== undefined) + toStateChanger = root.to[0].stateChangeTarget !== undefined + + if (!toStateChanger && root.to[0].defaultState !== undefined) + root.to[0].state = root.to[0].defaultState + + if (stateChanger || fromEmpty || __checkInclude(root.from, transitionView.currentItem)) + timer.restart() + } + + function __decisionTrigger() { + /* Workaround for flowDecisions with multiple sources */ + if (!__checkInclude(root.from, transitionView.currentItem) && root.from.length !== 0) + root.from = [] + root.trigger() + } + + property Timer timer: Timer { + interval: 1 + running: false + repeat: false + onTriggered: transitionView.gotoPage(root) + } + + property FlowEffect effect: DefaultFlowEffect { + transitionView: transitionView + + } + + onEffectChanged: { + root.effect.transitionView = root.transitionView + } + + property Connections effectConnection: Connections { + target: root.effect + function onFinished() { root.finished() } + } +} diff --git a/build/qml/FlowView/FlowTransitionList.qml b/build/qml/FlowView/FlowTransitionList.qml new file mode 100644 index 0000000..e2aa4ae --- /dev/null +++ b/build/qml/FlowView/FlowTransitionList.qml @@ -0,0 +1,101 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 + +QtObject { + id: list + property Item intialItem + //has next prev and most likely currentIndex, count + property var items + + property Item nextItem + property Item prevItem + + property Item currentItem + + onCurrentItemChanged: { + + var currentIndex = list.__indexForCurrentItem() + + if (currentIndex < (list.items.length - 1)) + list.nextItem = list.items[currentIndex + 1] + if (currentIndex > 0) + list.prevItem = list.items[currentIndex - 1] + + } + + function __indexForCurrentItem() { + var currentIndex = -1 + for (var i = 0; i < list.items.length; ++i) { + var item = list.items[i] + if (item === list.currentItem) + currentIndex = i + } + return currentIndex + } + + property int length: items.length + + function next() { + var currentIndex = list.__indexForCurrentItem() + + list.nextItem = null + + if (currentIndex > -1 && (currentIndex < list.items.length - 1)) { + list.prevItem = list.items[currentIndex] + list.currentItem = list.items[currentIndex + 1] + if (currentIndex + 2 < list.items.length) + list.nextItem = list.items[currentIndex + 2] + } + } + + function prev() { + var currentIndex = list.__indexForCurrentItem() + + list.prevItem = null + + if (currentIndex > 0 && currentIndex < (list.items.length)) { + if (currentIndex - 2 >= 0) + list.prevItem = list.items[currentIndex - 2] + list.currentItem = list.items[currentIndex - 1] + + list.nextItem = list.items[currentIndex] + } + } + + Component.onCompleted: { + list.currentItem = list.intialItem + var currentIndex = list.__indexForCurrentItem() + if (currentIndex < (list.items.length - 1)) + list.nextItem = list.items[currentIndex + 1] + if (currentIndex > 0) + list.prevItem = list.items[currentIndex - 1] + } +} diff --git a/build/qml/FlowView/FlowView.qml b/build/qml/FlowView/FlowView.qml new file mode 100644 index 0000000..ab4002f --- /dev/null +++ b/build/qml/FlowView/FlowView.qml @@ -0,0 +1,348 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +Item { + id: root + width: 200 + height: 200 + + property FlowTransition defaultTransition + + property FlowTransition currentTransition + + property FlowTransition __forceTransition + + property list flowTransitions + property list flowDecisions + property list flowWildcards + + property Item interaction: Item { + } + + property bool __parentFlowChanged: false + + enum EffectEnum { + Instant, + Dissolve, + Fade, + Pop + } + + property bool __blockHistory: false + + property bool __isFlowView: true + + function goBack() { + if (root.__history.length === 0) + return + + if (root.__parentFlowChanged) { + root.__parentFlowChanged = false + parentFlowView().goBack() + } + + var poppedItem = root.__history.pop() + + root.__blockHistory = true + root.activatedItem = poppedItem + root.__activateItem() + root.__blockHistory = false + + + if (root.__history.length > 0) + root.lastItem = root.__history.slice(-1)[0] + else + root.lastItem = null + } + + function __activateItem() { + if (!__isCompleted) + return + + if (root.activatedItem === root.currentItem) + return; + + if (root.activatedItem === root.nextItem) + return; + + root.nextItem = root.activatedItem + + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === root.activatedItem) + root.currentIndex = i + } + + } + + function parentFlowView() { + var par = root.parent + while (par) { + if (par.__isFlowView) + return par + par = par.parent + } + return null + } + + function parentFlowItem() { + var par = root.parent + while (par) { + if (par.__isFlowItem) + return par + par = par.parent + } + return null + + } + + default property alias item: stack.data + + property Item nextItem + + property Item currentItem + property Item activatedItem + property Item lastItem + property int currentIndex: 0 + + //property list __history + property var __history: [] + + property int maxIndex: 0 + + signal transitionFinished + + property alias __stack: stack + + Item { + id: stack + visible: false + } + + property bool __isCompleted: false + + property real progress: 0 + + property bool __blockSchedule: false + + onActivatedItemChanged: { + root.__activateItem() + } + + function resetCurrentIndex() { + root.__blockSchedule = true + root.lastItem = root.currentItem + root.__history.push(root.lastItem) + + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === root.currentItem) + root.currentIndex = i + } + root.__blockSchedule = false + } + + Component.onCompleted: { + root.maxIndex = stack.children.length - 1 + + root.allChildren = [] + + for (var i = 0; i < stack.children.length; ++i) { + root.allChildren.push(stack.children[i]) + if (stack.children[i].flowView !== undefined) { + stack.children[i].flowView = root + stack.children[i].init() + } + } + + /* Assign view to all flowTransitions */ + if (defaultTransition) { + defaultTransition.transitionView = root + } + + for (i = 0; i < root.flowWildcards.length; ++i) { + var w = root.flowWildcards[i] + w.transitionView = root + } + + var t + + for (i = 0; i < root.flowTransitions.length; ++i) { + t = root.flowTransitions[i] + t.transitionView = root + } + + for (i = 0; i < root.flowTransitions.length; ++i) { + t = root.flowTransitions[i] + if (root.checkInclude(t.from, root)) { + root.currentItem = t.to[0] + if (root.currentItem.stateChangeTarget !== undefined) { + root.currentItem.stateChangeTarget.setState(root.currentItem.targetState) + root.currentItem = root.currentItem.stateChangeTarget + } + } + } + + root.resetCurrentIndex() + + __setupCurrentItem() + __isCompleted = true + } + + function checkInclude(list, item) + { + for (var i = 0; i < list.length; ++i) { + if (list[i] === item) + return true + } + return false + } + + function scheduleTransition() + { + root.progress = 0 + + var pageTransition = null + + /* find correct transition */ + for (var i = 0; i < root.flowTransitions.length; ++i) { + var t = root.flowTransitions[i] + if (checkInclude(t.from, root.currentItem) && checkInclude(t.to, root.nextItem)) { + pageTransition = t + } + } + + if (pageTransition !== null) { + + } else { + pageTransition = root.defaultTransition + } + + if (root.currentTransition) + root.currentTransition.__stop() + + /* If a specific transition is forced then use this one. */ + if (__forceTransition) + pageTransition = __forceTransition + __forceTransition = null + + root.currentTransition = pageTransition + if (root.currentTransition) + root.currentTransition.__reset(root.currentItem, root.nextItem) + + root.progress = Qt.binding(function () { + if (root.currentTransition) + return root.currentTransition.progress + return 0 + }) + } + + onCurrentIndexChanged: { + root.nextItem = root.allChildren[root.currentIndex] + + if (root.nextItem === root.currentItem) + return + + if (root.__blockSchedule) + return + + if (root.nextItem.stateChangeTarget !== undefined) { + var itemVar = root.nextItem.stateChangeTarget + var stateVar = root.nextItem.targetState + itemVar.state = stateVar + for (var i = 0; i < root.allChildren.length; ++i) { + if (root.allChildren[i] === itemVar) + root.currentIndex = i + } + } + + scheduleTransition() + + if (!root.__blockHistory) { + root.lastItem = root.currentItem + if (!Array.isArray(root.__history)) + root.__history = [] + + root.__history.push(root.lastItem) + } + + root.currentTransition.__start() + } + + function __setupCurrentItem() { + if (root.currentItem) + root.currentItem.parent = stack + + if (root.nextItem) + root.currentItem = root.nextItem + else + root.currentItem = root.allChildren[root.currentIndex] + + + root.currentItem.parent = root + root.currentTransition = null + transitionFinished() + } + + function gotoPage(transition) { + var page = transition.to[0] + /* There might be another transition that fits. We are forcing this one. */ + __forceTransition = transition + for (var i = 0; i < root.allChildren.length; ++i) { + if (page === root.allChildren[i]) { + root.currentIndex = i + } + } + } + + function gotoItem(item) { + for (var i = 0; i < root.allChildren.length; ++i) { + if (item === root.allChildren[i]) { + root.currentIndex = i + print("index " + i ) + } + } + } + + property var allChildren + + property Item __fromContentItem: Item { + width: root.width + height: root.height + parent: root + } + + property Item __toContentItem: Item { + width: root.width + height: root.height + parent: root + } +} + + diff --git a/build/qml/FlowView/FlowView_qml_module_dir_map.qrc b/build/qml/FlowView/FlowView_qml_module_dir_map.qrc new file mode 100644 index 0000000..3eaf335 --- /dev/null +++ b/build/qml/FlowView/FlowView_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView + + + diff --git a/build/qml/FlowView/FlowWildcard.qml b/build/qml/FlowView/FlowWildcard.qml new file mode 100644 index 0000000..b814c52 --- /dev/null +++ b/build/qml/FlowView/FlowWildcard.qml @@ -0,0 +1,77 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.15 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: root + + property list positivelist + property list negativelist + + default property list data + + property FlowTransition target + + property var transitionView: Item {} + + property bool globalWildcard: false + + function trigger() { + var cItem = root.transitionView.currentItem + + if (root.globalWildcard && root.transitionView.parentFlowView()) { + root.transitionView.__parentFlowChanged = true + root.transitionView.parentFlowView().gotoItem(root.transitionView.parentFlowItem()) + } + + if (cItem === undefined) + return + + if (root.transitionView.checkInclude(root.negativelist, cItem)) + return; + + if (root.positivelist.length !== 0) { + if (!root.transitionView.checkInclude(root.positivelist, cItem)) + return; + } + + root.target.trigger() + } + + property EventListener eventListener: EventListener { + id: eventListener + onTriggered: root.trigger() + } + + property alias eventIds: eventListener.eventIds +} + + diff --git a/build/qml/FlowView/SwipeInteraction.qml b/build/qml/FlowView/SwipeInteraction.qml new file mode 100644 index 0000000..7c7472e --- /dev/null +++ b/build/qml/FlowView/SwipeInteraction.qml @@ -0,0 +1,118 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +import QtQuick 2.12 +import TransitionItem 1.0 +import QtQuick.Controls 2.3 +import QtQuick.Timeline 1.0 + +Item { + id: root + property var transitionView + property var list + parent: transitionView + anchors.fill: parent + z: -1 + + property real threshold: 35 + property bool horizontal: true + property Item __activeItem + property bool __reactToTransition: false + + Timer { + id: blocker + running: false + interval: 200 + repeat: false + onTriggered: handler.enabled = true + } + + Connections { + target: transitionView + function onTransitionFinished() { + if (!root.__reactToTransition) + return + /* This is a tricky one. We have to also update the list. + The connection could be also done the other way around */ + list.currentItem = root.__activeItem + root.__reactToTransition = false + } + } + + DragHandler { + id: handler + xAxis.enabled: root.horizontal + yAxis.enabled: !root.horizontal + target: null + enabled: true + + function distance() { + if (root.horizontal) + return (centroid.position.x - centroid.pressPosition.x) / transitionView.width + return -(centroid.position.y - centroid.pressPosition.y) / transitionView.height + } + + onActiveChanged: { + if (handler.active) { + if (distance() < 0) + transitionView.nextItem = list.nextItem + else + transitionView.nextItem = list.prevItem + + transitionView.scheduleTransition() + if (transitionView.currentTransition) + transitionView.currentTransition.effect.enable() + } else { + var p = Math.abs(distance()) * 100 + if (transitionView.currentTransition && transitionView.currentTransition.effect.progress > root.threshold) { + root.__activeItem = transitionView.nextItem + root.__reactToTransition = true + transitionView.currentTransition.__start() + } else { /* Drag was released, but threshold was not passed */ + if (transitionView.currentTransition) + transitionView.currentTransition.effect.abort() + } + /* Block for 100ms */ + handler.enabled = false + blocker.start() + } + } + + onCentroidChanged: { + if (!handler.enabled) + return + + var p = Math.abs(distance()) * 100 + + if (transitionView.currentTransition) + transitionView.currentTransition.effect.progress = p * 2 + } + } +} diff --git a/build/qml/FlowView/qmldir b/build/qml/FlowView/qmldir new file mode 100644 index 0000000..d46e216 --- /dev/null +++ b/build/qml/FlowView/qmldir @@ -0,0 +1,46 @@ +module FlowView +designersupported +typeinfo FlowView.qmltypes +DefaultFlowEffect 6.0 DefaultFlowEffect.qml +DefaultFlowEffect 1.0 DefaultFlowEffect.qml +SwipeInteraction 6.0 SwipeInteraction.qml +SwipeInteraction 1.0 SwipeInteraction.qml +FlowEffect 6.0 FlowEffect.qml +FlowEffect 1.0 FlowEffect.qml +FlowFadeEffect 6.0 FlowFadeEffect.qml +FlowFadeEffect 1.0 FlowFadeEffect.qml +FlowPushLeftEffect 6.0 FlowPushLeftEffect.qml +FlowPushLeftEffect 1.0 FlowPushLeftEffect.qml +FlowPushRightEffect 6.0 FlowPushRightEffect.qml +FlowPushRightEffect 1.0 FlowPushRightEffect.qml +FlowSlideDownEffect 6.0 FlowSlideDownEffect.qml +FlowSlideDownEffect 1.0 FlowSlideDownEffect.qml +FlowSlideLeftEffect 6.0 FlowSlideLeftEffect.qml +FlowSlideLeftEffect 1.0 FlowSlideLeftEffect.qml +FlowSlideRightEffect 6.0 FlowSlideRightEffect.qml +FlowSlideRightEffect 1.0 FlowSlideRightEffect.qml +FlowSlideUpEffect 6.0 FlowSlideUpEffect.qml +FlowSlideUpEffect 1.0 FlowSlideUpEffect.qml +FlowMoveEffect 6.0 FlowMoveEffect.qml +FlowMoveEffect 1.0 FlowMoveEffect.qml +FlowPushEffect 6.0 FlowPushEffect.qml +FlowPushEffect 1.0 FlowPushEffect.qml +FlowTransition 6.0 FlowTransition.qml +FlowTransition 1.0 FlowTransition.qml +FlowTransitionList 6.0 FlowTransitionList.qml +FlowTransitionList 1.0 FlowTransitionList.qml +FlowView 6.0 FlowView.qml +FlowView 1.0 FlowView.qml +FlowPushUpEffect 6.0 FlowPushUpEffect.qml +FlowPushUpEffect 1.0 FlowPushUpEffect.qml +FlowItem 6.0 FlowItem.qml +FlowItem 1.0 FlowItem.qml +FlowDecision 6.0 FlowDecision.qml +FlowDecision 1.0 FlowDecision.qml +FlowWildcard 6.0 FlowWildcard.qml +FlowWildcard 1.0 FlowWildcard.qml +FlowActionArea 6.0 FlowActionArea.qml +FlowActionArea 1.0 FlowActionArea.qml +singleton FlowState 6.0 FlowState.qml +singleton FlowState 1.0 FlowState.qml + diff --git a/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc b/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc new file mode 100644 index 0000000..cf95706 --- /dev/null +++ b/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/Main + + + diff --git a/build/qml/Main/main.qml b/build/qml/Main/main.qml new file mode 100644 index 0000000..14ce61a --- /dev/null +++ b/build/qml/Main/main.qml @@ -0,0 +1,9 @@ +/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based +C++ project. */ + +import QtQuick +import content + +App { + visibility: "FullScreen" +} diff --git a/build/qml/Main/qmldir b/build/qml/Main/qmldir new file mode 100644 index 0000000..ecfe06b --- /dev/null +++ b/build/qml/Main/qmldir @@ -0,0 +1,4 @@ +module Main +typeinfo Bolt_DashApp.qmltypes +prefer :/Main/ + diff --git a/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc new file mode 100644 index 0000000..44323cf --- /dev/null +++ b/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application + + + diff --git a/build/qml/QtQuick/Studio/Application/qmldir b/build/qml/QtQuick/Studio/Application/qmldir new file mode 100644 index 0000000..58c391b --- /dev/null +++ b/build/qml/QtQuick/Studio/Application/qmldir @@ -0,0 +1,8 @@ +module QtQuick.Studio.Application +linktarget QuickStudioApplicationplugin +optional plugin QuickStudioApplicationplugin +classname QtQuick_Studio_ApplicationPlugin +designersupported +typeinfo QuickStudioApplication.qmltypes +prefer :/QtQuick/Studio/Application/ + diff --git a/build/qml/QtQuick/Studio/Components/ArcArrow.qml b/build/qml/QtQuick/Studio/Components/ArcArrow.qml new file mode 100644 index 0000000..08fdd2d --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/ArcArrow.qml @@ -0,0 +1,83 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.15 + +GroupItem { + id: root + + property int thickness: 45 + + property int arrowSize: 80 + + property int radius: 5 + property color color: "#b6b3b3" + + property alias begin: arc.begin + property alias end: arc.end + + property bool flip: false + + transform: Scale { + xScale: root.flip ? -1 : 1 + origin.x: root.width / 2 + origin.y: root.height / 2 + } + + ArcItem { + id: arc + x: 0 + y: 16 + width: 300 + height: 300 + capStyle: root.radius > 2 ? 32 : 0 + end: 180 + strokeWidth: root.thickness + strokeColor: root.color + fillColor: "#00000000" + + Item { + anchors.fill: parent + rotation: arc.end + TriangleItem { + id: triangle3 + x: root.width / 2 + + y: -root.thickness / 2 + width: root.arrowSize + height: root.arrowSize + strokeWidth: -1 + rotation: 90 + radius: root.radius + + fillColor: root.color + } + } + } +} diff --git a/build/qml/QtQuick/Studio/Components/ArcItem.qml b/build/qml/QtQuick/Studio/Components/ArcItem.qml new file mode 100644 index 0000000..a1c8f2e --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/ArcItem.qml @@ -0,0 +1,494 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.9 +import QtQuick.Shapes 1.12 + +/*! + \qmltype ArcItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief An arc that ends at the specified position and uses the specified + radius. + + An arc is specified by setting values in degrees for the \l begin and + \l end properties. The arc can be just a line or a filled outline. + The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify + the appearance of the line or outline. The \l dashPattern and \l dashOffset + properties specify the appearance of dashed lines. + + The area between the arc's start and end points or the area inside the + outline are painted using either a solid fill color, specified using the + \l fillColor property, or a gradient, defined using one of the + \l ShapeGradient subtypes and set using the \l gradient property. + If both a color and a gradient are specified, the gradient is used. + + To create an arc with an outline, set the \l outlineArc property to \c true. + The \l arcWidth property specifies the width of the arc outline, including + the stroke. The \l arcWidthBegin and \l arcWidthEnd properties can be used + to specify the width of the start and end points of the outline separately. + The width of the outline between the start and end points is calculated + automatically. The inner and outer curves or the outline can be adjusted by + specifying values for the \l radiusInnerAdjust and \l radiusOuterAdjust + properties. + + The \l round, \l roundBegin, and \l roundEnd properties specify whether the + end points of the arc outline have rounded caps. For an arc that does not + have an outline, the \l capStyle property specifies whether the line ends + are square or rounded. + + Because an arc has curves, it may be appropriate to set the \c antialiasing + property that is inherited from \l Item to improve its appearance. + + \section2 Example Usage + + You can use the Arc component in \QDS to create different kinds of arcs. + + \image studio-arc.png + + The QML code looks as follows: + + \code + ArcItem { + id: arc + x: 31 + y: 31 + capStyle: 32 + end: 180 + strokeWidth: 6 + strokeColor: "#000000" + } + + ArcItem { + id: arcOutline + strokeColor: "gray" + arcWidth: 13 + end: 180 + fillColor: "light gray" + antialiasing: true + round: true + outlineArc: true + } + + ArcItem { + id: circle + end: 360 + strokeWidth: 5 + strokeColor: "#000000" + } + + ArcItem { + id: circleOutline + outlineArc: true + round: true + strokeColor: "gray" + fillColor: "light gray" + strokeWidth: 1 + end: 360 + } + \endcode +*/ + +Shape { + id: root + + implicitWidth: 100 + implicitHeight: 100 + +/*! + The gradient of the arc fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the arc line or outline. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the arc line or outline. + + When set to a negative value, no line is drawn. + + The default value is 4. + + The total width of an arc that has an outline (that is, the outline and the + fill) is specified by \l arcWidth. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color of the arc line or outline. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the arc or arc outline specified as the dashes and the + gaps between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + Each dash is also subject to cap styles, and therefore a dash of 1 with + square cap set will extend 0.5 pixels out in each direction resulting in + a total width of 2. + + The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square + line end covers the end point and extends beyond it by half the line width. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + + property alias joinStyle: path.joinStyle + +/*! + The arc fill color. + + If the arc is just a line, the area between its \l begin and \l end + points is filled. + + If the arc has an outline, the area within the outline is filled. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The cap style of the line if the arc does not have an outline. + + \value ShapePath.FlatCap + A square line end that does not cover the end point of the line. + \value ShapePath.SquareCap + A square line end that covers the end point and extends beyond it + by half the line width. This is the default value. + \value ShapePath.RoundCap + A rounded line end. + + \sa round, roundBegin, roundEnd, Qt::PenCapStyle +*/ + property alias capStyle: path.capStyle + +/*! + The starting point of the dash pattern for the arc or arc outline. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + +/*! + The position in degrees where the arc begins. + + The default value is 0. + + To create a circle, set the value of this property to 0 and the value + of the \l end property to 360. +*/ + property real begin: 0 + +/*! + The position in degrees where the arc ends. + + The default value is 90. + + To create a circle, set the value of this property to 360 and the value of + the \l begin property to 0. +*/ + property real end: 90 + +/*! + The total width of an arc that has an outline, including the outline and + fill. + + The default value is 10. + + \sa arcWidthBegin, arcWidthEnd, strokeWidth +*/ + property real arcWidth: 10 + +/*! + The area between the \l begin and \l end points of the arc. +*/ + property real alpha: root.clamp(root.sortedEnd() - root.sortedBegin(), 0, 359.9) + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + +/*! + Whether the arc has an outline. + + \sa arcWidth, arcWidthBegin, arcWidthEnd, round, roundBegin, roundEnd, +*/ + property bool outlineArc: false + +/*! + Whether the arc outline end points have round caps. + + The \l roundBegin and \l roundEnd properties can be used to specify the + caps separately for the end points. +*/ + property bool round: false + +/*! + Whether the arc outline ends with a round cap. + + \sa Qt::PenCapStyle, round, roundBegin +*/ + property bool roundEnd: root.round + +/*! + Whether the arc outline begins with a round cap. + + \sa Qt::PenCapStyle, round, roundEnd +*/ + property bool roundBegin: root.round + + function clamp(num, min, max) { + return Math.max(min, Math.min(num, max)) + } + + function toRadians(degrees) { + return degrees * (Math.PI / 180.0) + } + + function myCos(angleInDegrees) { + return Math.cos(root.toRadians(angleInDegrees)) + } + + function mySin(angleInDegrees) { + return Math.sin(root.toRadians(angleInDegrees)) + } + + function polarToCartesianX(centerX, centerY, radius, angleInDegrees) { + return centerX + radius * Math.cos(root.toRadians(angleInDegrees)) + } + + function polarToCartesianY(centerX, centerY, radius, angleInDegrees) { + return centerY + radius * Math.sin(root.toRadians(angleInDegrees)) + } + + function sortedBegin() { + return Math.min(root.begin, root.end) + } + + function sortedEnd() { + return Math.min(Math.max(root.begin, root.end), root.sortedBegin() + 359.9) + } + + function isArcFull() { + return root.alpha > 359.5 + } + + onAlphaChanged: { + if (root.__wasFull !== root.isArcFull()) + root.constructArcItem() + + root.__wasFull = root.isArcFull() + } + onOutlineArcChanged: root.constructArcItem() + onRoundChanged: root.constructArcItem() + onRoundBeginChanged: root.constructArcItem() + onRoundEndChanged: root.constructArcItem() + + property bool __wasFull: false + + property real maxArcWidth: Math.min(path.__xRadius, path.__yRadius) + + ShapePath { + id: path + + property real __xRadius: root.width / 2 - root.strokeWidth / 2 + property real __yRadius: root.height / 2 - root.strokeWidth / 2 + + property real __arcWidth: Math.min(Math.min(path.__xRadius, path.__yRadius), root.arcWidth) + + property real __xCenter: root.width / 2 + property real __yCenter: root.height / 2 + + strokeColor: "red" + strokeWidth: 4 + capStyle: ShapePath.FlatCap + + startX: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.sortedBegin() - 90) + startY: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.sortedBegin() - 90) + } + + function constructArcItem() { + root.clearPathElements() + + // Outer arc + let outerArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + outerArc.x = Qt.binding(function() { + return root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.sortedEnd() - 90) + }) + outerArc.y = Qt.binding(function() { + return root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.sortedEnd() - 90) + }) + outerArc.radiusX = Qt.binding(function() { return path.__xRadius }) + outerArc.radiusY = Qt.binding(function() { return path.__yRadius }) + outerArc.useLargeArc = Qt.binding(function() { return root.alpha > 180 }) + path.pathElements.push(outerArc) + + // Straight end + if (!root.roundEnd && root.outlineArc && !root.isArcFull()) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.relativeX = Qt.binding(function() { + return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) + }) + pathLine.relativeY = Qt.binding(function() { + return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) + }) + path.pathElements.push(pathLine) + } + + // Round end + if (root.roundEnd && root.outlineArc && !root.isArcFull()) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.relativeX = Qt.binding(function() { + return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) + }) + pathArc.relativeY = Qt.binding(function() { + return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) + }) + pathArc.radiusX = Qt.binding(function() { return path.__arcWidth / 2 }) + pathArc.radiusY = Qt.binding(function() { return path.__arcWidth / 2 }) + path.pathElements.push(pathArc) + } + + // Open end + if (root.outlineArc && root.isArcFull()) { + let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) + pathMove.relativeX = Qt.binding(function() { + return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) + }) + pathMove.relativeY = Qt.binding(function() { + return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) + }) + path.pathElements.push(pathMove) + } + + // Inner arc + if (root.outlineArc) { + let innerArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + innerArc.x = Qt.binding(function() { + return path.startX - path.__arcWidth * root.myCos(root.sortedBegin() - 90) + }) + innerArc.y = Qt.binding(function() { + return path.startY - path.__arcWidth * root.mySin(root.sortedBegin() - 90) + }) + innerArc.radiusX = Qt.binding(function() { return path.__xRadius - path.__arcWidth }) + innerArc.radiusY = Qt.binding(function() { return path.__yRadius - path.__arcWidth }) + innerArc.useLargeArc = Qt.binding(function() { return root.alpha > 180 }) + innerArc.direction = PathArc.Counterclockwise + path.pathElements.push(innerArc) + } + + // Straight begin + if (!root.roundBegin && root.outlineArc && !root.isArcFull()) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { return path.startX }) + pathLine.y = Qt.binding(function() { return path.startY }) + path.pathElements.push(pathLine) + } + + // Round begin + if (root.roundBegin && root.outlineArc && !root.isArcFull()) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.x = Qt.binding(function() { return path.startX }) + pathArc.y = Qt.binding(function() { return path.startY }) + pathArc.radiusX = Qt.binding(function() { return path.__arcWidth / 2 }) + pathArc.radiusY = Qt.binding(function() { return path.__arcWidth / 2 }) + path.pathElements.push(pathArc) + } + + // Open begin + if (root.outlineArc && root.isArcFull()) { + let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) + pathMove.x = Qt.binding(function() { return path.startX }) + pathMove.y = Qt.binding(function() { return path.startY }) + path.pathElements.push(pathMove) + } + } + + function clearPathElements() { + for (var i = 0; i !== path.pathElements.length; ++i) + path.pathElements[i].destroy() + + path.pathElements = [] + } + + Component.onCompleted: { + root.__wasFull = root.isArcFull() + root.constructArcItem() + } +} diff --git a/build/qml/QtQuick/Studio/Components/BorderItem.qml b/build/qml/QtQuick/Studio/Components/BorderItem.qml new file mode 100644 index 0000000..5644bbf --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/BorderItem.qml @@ -0,0 +1,506 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Shapes 1.12 + +/*! + \qmltype BorderItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A border drawn in four segments: left, top, right, and bottom. + + The Border type is used to create borders out of four segments: left, + top, right, and bottom. The \l drawLeft, \l drawTop, \l drawRight, and + \l drawBottom properties can be used to determine whether each of the + segments is visible. + + The \l borderMode property determines whether the border is drawn along + the inside or outside edge of the item, or on top of the edge. + + The \l radius property specifies whether the border corners are rounded. + The radius can also be specified separately for each corner. Because this + introduces curved edges to the corners, it may be appropriate to set the + \c antialiasing property that is inherited from \l Item to improve the + appearance of the border. + + The \l joinStyle property specifies how to connect two border line segments. + + The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify + the appearance of the border line. The \l dashPattern and \l dashOffset + properties specify the appearance of dashed lines. + + The \l capStyle property specifies whether line ends are square or + rounded. + + \section2 Example Usage + + You can use the Border component in \QDS to create different kinds of + borders. + + \image studio-border.png + + The QML code looks as follows: + + \code + BorderItem { + id: openLeft + width: 99 + height: 99 + antialiasing: true + drawLeft: false + strokeColor: "gray" + } + + BorderItem { + id: openTop + width: 99 + height: 99 + antialiasing: true + strokeColor: "#808080" + drawTop: false + } + + BorderItem { + id: asymmetricalCorners + width: 99 + height: 99 + antialiasing: true + bottomLeftRadius: 0 + topRightRadius: 0 + strokeColor: "#808080" + } + + BorderItem { + id: dashedBorder + width: 99 + height: 99 + antialiasing: true + strokeStyle: 4 + strokeColor: "#808080" + } + \endcode +*/ + +Shape { + id: root + width: 200 + height: 150 + +/*! + The radius used to draw rounded corners. + + The default value is 10. + + If radius is non-zero, the corners will be rounded, otherwise they will + be sharp. The radius can also be specified separately for each corner by + using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and + \l topRightRadius properties. +*/ + property int radius: 10 + +/*! + The radius of the top left border corner. + + \sa radius +*/ + property int topLeftRadius: root.radius + +/*! + The radius of the bottom left border corner. + + \sa radius +*/ + property int bottomLeftRadius: root.radius + +/*! + The radius of the top right border corner. + + \sa radius +*/ + property int topRightRadius: root.radius + +/*! + The radius of the bottom right border corner. + + \sa radius +*/ + property int bottomRightRadius: root.radius + +/*! + Whether the border corner is beveled. +*/ + property bool bevel: false + +/*! + The bevel of the top left border corner. + + \sa bevel +*/ + property bool topLeftBevel: root.bevel + +/*! + The bevel of the top right border corner. + + \sa bevel +*/ + property bool topRightBevel: root.bevel + +/*! + The bevel of the bottom right border corner. + + \sa bevel +*/ + property bool bottomRightBevel: root.bevel + +/*! + The bevel of the bottom left border corner. + + \sa bevel +*/ + property bool bottomLeftBevel: root.bevel + +/*! + The style of the border line. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the border line. + + When set to a negative value, no line is drawn. + + The default value is 4. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color of the border line. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the border line specified as the dashes and the gaps + between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + Each dash is also subject to cap styles, and therefore a dash of 1 with + square cap set will extend 0.5 pixels out in each direction resulting in + a total width of 2. + + The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square + line end covers the end point and extends beyond it by half the line width. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + +/*! + The join style used to connect two border line segments. + + \value ShapePath.MiterJoin + The outer edges of the lines are extended to meet at an angle, and + this area is filled. + \value ShapePath.BevelJoin + The triangular notch between the two lines is filled. + This is the default value. + \value ShapePath.RoundJoin + A circular arc between the two lines is filled. + + \sa Qt::PenJoinStyle +*/ + property alias joinStyle: path.joinStyle + +/*! + The starting point of the dash pattern for the border line. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + +/*! + The cap style of the line. + + \value ShapePath.FlatCap + A square line end that does not cover the end point of the line. + \value ShapePath.SquareCap + A square line end that covers the end point and extends beyond it + by half the line width. This is the default value. + \value ShapePath.RoundCap + A rounded line end. + + \sa Qt::PenCapStyle +*/ + property alias capStyle: path.capStyle + + //property alias fillColor: path.fillColor + +/*! + Whether the top border is visible. + + The border segment is drawn if this property is set to \c true. +*/ + property bool drawTop: true + +/*! + Whether the bottom border is visible. + + The border segment is drawn if this property is set to \c true. +*/ + property bool drawBottom: true + +/*! + Whether the right border is visible. + + The border segment is drawn if this property is set to \c true. +*/ + property bool drawRight: true + +/*! + Whether the left border is visible. + + The border segment is drawn if this property is set to \c true. +*/ + property bool drawLeft: true + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + +/*! + Where the border is drawn. + + \value Border.Inside + The border is drawn along the inside edge of the item and does not + affect the item width. + This is the default value. + \value Border.Middle + The border is drawn over the edge of the item and does not + affect the item width. + \value Border.Outside + The border is drawn along the outside edge of the item and increases + the item width by the value of \l strokeWidth. + + \sa strokeWidth +*/ + property int borderMode: 0 + + property real borderOffset: { + if (root.borderMode === 0) + return root.strokeWidth * 0.5 + if (root.borderMode === 1) + return 0 + + return -root.strokeWidth * 0.5 + } + +/*! + The property changes the way border radius is calculated. + Deactivated by default. +*/ + property bool adjustBorderRadius: false + + Item { + anchors.fill: parent + anchors.margins: { + if (root.borderMode === 0) + return 0 + if (root.borderMode === 1) + return -root.strokeWidth * 0.5 + + return -root.strokeWidth + } + } + + ShapePath { + id: path + + property int __maxRadius: Math.floor(Math.min(root.width, root.height) / 2) + property int __topLeftRadius: Math.min(root.topLeftRadius, path.__maxRadius) + property int __topRightRadius: Math.min(root.topRightRadius, path.__maxRadius) + property int __bottomRightRadius: Math.min(root.bottomRightRadius, path.__maxRadius) + property int __bottomLeftRadius: Math.min(root.bottomLeftRadius, path.__maxRadius) + + readonly property real __borderRadiusAdjustment: { + if (root.adjustBorderRadius) { + if (root.borderMode === 1) + return (root.strokeWidth * 0.5) + if (root.borderMode === 2) + return root.strokeWidth + } + return 0 + } + + joinStyle: ShapePath.MiterJoin + + strokeWidth: 4 + strokeColor: "red" + fillColor: "transparent" + + startX: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment + startY: root.borderOffset + } + + onDrawTopChanged: root.constructBorderItem() + onDrawRightChanged: root.constructBorderItem() + onDrawBottomChanged: root.constructBorderItem() + onDrawLeftChanged: root.constructBorderItem() + + function constructBorderItem() { + root.clearPathElements() + + // Top line + if (root.drawTop) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { return root.width - path.__topRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) + pathLine.y = Qt.binding(function() { return root.borderOffset }) + path.pathElements.push(pathLine) + } else { + let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) + pathMove.x = Qt.binding(function() { return root.width - root.borderOffset }) + pathMove.y = Qt.binding(function() { return path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment }) + path.pathElements.push(pathMove) + } + + // Top right corner + if (root.drawTop && root.drawRight) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.x = Qt.binding(function() { return root.width - root.borderOffset }) + pathArc.y = Qt.binding(function() { return path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment }) + pathArc.radiusX = Qt.binding(function() { return root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment }) + pathArc.radiusY = Qt.binding(function() { return root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment }) + path.pathElements.push(pathArc) + } + + // Right line + if (root.drawRight) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { return root.width - root.borderOffset }) + pathLine.y = Qt.binding(function() { return root.height - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) + path.pathElements.push(pathLine) + } else { + let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) + pathMove.x = Qt.binding(function() { return root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) + pathMove.y = Qt.binding(function() { return root.height - root.borderOffset }) + path.pathElements.push(pathMove) + } + + // Bottom right corner + if (root.drawBottom && root.drawRight) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.x = Qt.binding(function() { return root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) + pathArc.y = Qt.binding(function() { return root.height - root.borderOffset }) + pathArc.radiusX = Qt.binding(function() { return root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment }) + pathArc.radiusY = Qt.binding(function() { return root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment }) + path.pathElements.push(pathArc) + } + + // Bottom line + if (root.drawBottom) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { return path.__bottomLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) + pathLine.y = Qt.binding(function() { return root.height - root.borderOffset }) + path.pathElements.push(pathLine) + } else { + let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) + pathMove.x = Qt.binding(function() { return root.borderOffset }) + pathMove.y = Qt.binding(function() { return root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment }) + path.pathElements.push(pathMove) + } + + // Bottom left corner + if (root.drawBottom && root.drawLeft) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.x = Qt.binding(function() { return root.borderOffset }) + pathArc.y = Qt.binding(function() { return root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment }) + pathArc.radiusX = Qt.binding(function() { return root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment }) + pathArc.radiusY = Qt.binding(function() { return root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment }) + path.pathElements.push(pathArc) + } + + // Left line + if (root.drawLeft) { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { return root.borderOffset }) + pathLine.y = Qt.binding(function() { return path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) + path.pathElements.push(pathLine) + } + // No need to use PathMove, if left line shouldn't be drawn we just leave the shape open. + + // Top left corner + if (root.drawTop && root.drawLeft) { + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) + pathArc.x = Qt.binding(function() { return path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) + pathArc.y = Qt.binding(function() { return root.borderOffset }) + pathArc.radiusX = Qt.binding(function() { return root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment }) + pathArc.radiusY = Qt.binding(function() { return root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment }) + path.pathElements.push(pathArc) + } + } + + function clearPathElements() { + for (var i = 0; i !== path.pathElements.length; ++i) + path.pathElements[i].destroy() + + path.pathElements = [] + } + + Component.onCompleted: root.constructBorderItem() +} diff --git a/build/qml/QtQuick/Studio/Components/EllipseItem.qml b/build/qml/QtQuick/Studio/Components/EllipseItem.qml new file mode 100644 index 0000000..b005285 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/EllipseItem.qml @@ -0,0 +1,201 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Shapes 1.12 + +/*! + \qmltype EllipseItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A filled ellipse with an optional border. +*/ + +Shape { + id: root + width: 200 + height: 150 + +/*! + The gradient of the rectangle fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the rectangle border. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the border of the rectangle. + + The default value is 4. + + A width of 1 creates a thin line. For no line, use a negative value or a + transparent color. + + \note The width of the rectangle's border does not affect the geometry of + the rectangle itself or its position relative to other items if anchors are + used. + + The border is rendered within the rectangle's boundaries. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color used to draw the border of the rectangle. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the rectangle border specified as the dashes and the + gaps between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + +/*! + The rectangle fill color. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The starting point of the dash pattern for the rectangle border. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + +/*! + The border is rendered within the rectangle's boundaries, outside of them, + or on top of them. +*/ + property int borderMode: 0 + + property real borderOffset: { + if (root.borderMode === 0) + return root.strokeWidth * 0.5 + if (root.borderMode === 1) + return 0 + + return -root.strokeWidth * 0.5 + } + + Item { + anchors.fill: parent + anchors.margins: { + if (root.borderMode === 0) + return 0 + if (root.borderMode === 1) + return -root.strokeWidth * 0.5 + + return -root.strokeWidth + } + } + + ShapePath { + id: path + + joinStyle: ShapePath.MiterJoin + strokeWidth: 4 + strokeColor: "red" + startX: root.width * 0.5 + startY: root.borderOffset + + PathArc { + x: path.startX + y: root.height - root.borderOffset + radiusX: root.width * 0.5 - root.borderOffset + radiusY: root.height * 0.5 - root.borderOffset + useLargeArc: true + } + + PathArc { + x: path.startX + y: path.startY + radiusX: root.width * 0.5 - root.borderOffset + radiusY: root.height * 0.5 - root.borderOffset + useLargeArc: true + } + + } +} diff --git a/build/qml/QtQuick/Studio/Components/FlipableItem.qml b/build/qml/QtQuick/Studio/Components/FlipableItem.qml new file mode 100644 index 0000000..b731fe0 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/FlipableItem.qml @@ -0,0 +1,153 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.9 + +/*! + \qmltype FlipableItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + + \brief Provides a surface that can be flipped. + + A Flipable type can be visibly \e flipped between its front and back sides, + like a card. The front and back sides are specified by using any two types + inside the Flipable type. The type with the higher z-order is the front + side. The \l opacityFront and \l opacityBack properties are used to hide + and show either the front or back side of the item at a time. + + The \l flipAngle property is used to animate the angle of the type to + produce the flipping effect. The value of the \l rotationalAxis property + determines which axis the type is rotated around. + + \section2 Example Usage + + You can use the Flipable component in \QDS to create an item that can be + flipped. In this example, the two sides of the item show ISO 7000 icons. + + \image studio-flipable.png + + The QML code looks as follows: + + \code + FlipableItem { + id: flipable + width: 90 + height: 89 + opacityBack: 0 + + IsoItem { + id: arrowIsoIcon + color: "#808080" + anchors.fill: parent + source: "./iso-icons/iso_grs_7000_4_0251.dat" + } + + IsoItem { + id: questionIsoIcon + color: "#808080" + anchors.fill: parent + source: "./iso-icons/iso_grs_7000_4_0435.dat" + } + } + \endcode +*/ + +Flipable { + id: flipable + width: 240 + height: 240 + +/*! + The flip angle in degrees. + + The minimum value is -360 and the maximum value is 360 degrees. +*/ + property alias flipAngle: rotation.angle + +/*! + The opacity of the front side of the type. + + The opacity can be set between 0 and 1 to hide or show the items on the + front side of the type. +*/ + property real opacityFront: 1 + +/*! + The opacity of the back side of the type. + + The opacity can be set between 0 and 1 to hide or show the items on the + back side of the type. +*/ + property real opacityBack: 1 + +/*! + Whether the type is rotated around the x-axis or y-axis. + + This property is set to 0 to rotate the type around the x-axis or to + 1 to rotate around the y-axis. +*/ + property int rotationalAxis: 1 // 0: x-axis, 1: y-axis + + Binding { + target: flipable.front + value: opacityFront + property: "opacity" + when: flipable.front !== undefined + } + + Binding { + target: flipable.back + value: opacityBack + property: "opacity" + when: flipable.back !== undefined + } + +/*! + Whether the type has been flipped. + + This property is set to \c true when the type is flipped. +*/ + property bool flipped: false + + Component.onCompleted: { + flipable.front = flipable.children[0] + flipable.back = flipable.children[1] + } + + transform: Rotation { + id: rotation + origin.x: flipable.width/2 + origin.y: flipable.height/2 + axis.x: flipable.rotationalAxis === 0 ? 1 : 0 + axis.y: flipable.rotationalAxis === 1 ? 1 : 0 + axis.z: 0 + angle: 0 // the default angle + } +} diff --git a/build/qml/QtQuick/Studio/Components/GroupItem.qml b/build/qml/QtQuick/Studio/Components/GroupItem.qml new file mode 100644 index 0000000..4f46717 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/GroupItem.qml @@ -0,0 +1,77 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 + +/*! + \qmltype GroupItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Item + + \brief A group item that gets its size from its children. + + The Group type is an \l Item type extended with the size property. The value + of size is automatically calculated to fit the children of the group. + + \section2 Example Usage + + You can use the Group type to specify the size of one or several items. + + \image studio-group.png + + The QML code looks as follows: + + \code + GroupItem { + id: group + + Rectangle { + id: rectangle + width: 200 + height: 200 + color: "#c2c2c2" + } + + Rectangle { + id: rectangle1 + x: 140 + y: 140 + width: 200 + height: 200 + color: "#000000" + } + } + \endcode +*/ + +Item { + implicitWidth: Math.max(16, childrenRect.width + childrenRect.x) + implicitHeight: Math.max(16, childrenRect.height + childrenRect.y) +} diff --git a/build/qml/QtQuick/Studio/Components/IsoItem.qml b/build/qml/QtQuick/Studio/Components/IsoItem.qml new file mode 100644 index 0000000..c217ba3 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/IsoItem.qml @@ -0,0 +1,67 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import QtQuick 2.9 +import QtQuick.Extras 1.4 + +/*! + \qmltype IsoItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits ShapePath + \ingroup qtquickstudio-components + + \brief An ISO 7000 icon. + + The IsoItem type specifies an icon from an ISO 7000 icon library as a + \l [QtQuickExtras] {Picture} type. The icon to use for the type and its + color can be specified. + + \section2 Example Usage + + You can use the IsoItem type in \QDS to add ISO 7000 icons. + + \image studio-flipable.png + + The QML code looks as follows: + + \code + IsoItem { + id: arrowIsoIcon + color: "#808080" + anchors.fill: parent + source: "./iso-icons/iso_grs_7000_4_0251.dat" + } + \endcode +*/ + +Picture { + +} diff --git a/build/qml/QtQuick/Studio/Components/PieItem.qml b/build/qml/QtQuick/Studio/Components/PieItem.qml new file mode 100644 index 0000000..1dc0cdd --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/PieItem.qml @@ -0,0 +1,322 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.9 +import QtQuick.Shapes 1.12 + +/*! + \qmltype PieItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A pie. + + The Pie type is used to create a pie slice, a pie that is missing slices, + or just the pie rind (similar to an \l ArcItem), depending on the \l begin + and \l end property values and the \l hideLine value. + + The filling of the pie is painted using either a solid fill color, specified + using the \l fillColor property, or a gradient, defined using one of the + \l ShapeGradient subtypes and set using the \l gradient property. + If both a color and a gradient are specified, the gradient is used. + + The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify + the appearance of the pie outline. The \l dashPattern and \l dashOffset + properties specify the appearance of dashed lines. + + The \l capStyle property specifies whether line ends are square or + rounded. + + Because a pie has curved edges, it may be appropriate to set the + \c antialiasing property that is inherited from \l Item to improve + its appearance. + + \section2 Example Usage + + You can use the Pie component in \QDS to create different kinds of pies. + + \image studio-pie.png + + The QML code looks as follows: + + \code + PieItem { + id: pieSlice + antialiasing: true + strokeColor: "gray" + fillColor: "light gray" + } + + PieItem { + id: pie + end: 300 + fillColor: "#d3d3d3" + strokeColor: "#808080" + antialiasing: true + } + + PieItem { + id: pieRind + strokeWidth: 4 + capStyle: 32 + hideLine: true + end: 300 + strokeColor: "#808080" + antialiasing: true + } + \endcode +*/ + +Shape { + id: root + + implicitWidth: 100 + implicitHeight: 100 + +/*! + The gradient of the pie fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the border line. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the line. + + When set to a negative value, no line is drawn. + + The default value is 4. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color of the line. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the line specified as the dashes and the gaps between + them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + Each dash is also subject to cap styles, and therefore a dash of 1 with + square cap set will extend 0.5 pixels out in each direction resulting in + a total width of 2. + + The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square + line end covers the end point and extends beyond it by half the line width. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + property alias joinStyle: path.joinStyle + +/*! + The pie fill color. + + If \l hideLine is \c false, a pie slice is drawn using the values of the + \l begin and \l end properties and filled with this color. + + If \l hideLine is \c true, just the pie rind is drawn and the area between + the \l begin and \l end points is filled. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The starting point of the dash pattern for the line. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + +/*! + The cap style of the line. + + \value ShapePath.FlatCap + A square line end that does not cover the end point of the line. + \value ShapePath.SquareCap + A square line end that covers the end point and extends beyond it + by half the line width. This is the default value. + \value ShapePath.RoundCap + A rounded line end. + + \sa Qt::PenCapStyle +*/ + property alias capStyle: path.capStyle + +/*! + The position in degrees where the pie begins. + + The default value is 0. + + To create a circle, set the value of this property to 0 and the value of the + \l end property to 360. +*/ + property real begin: 0 + +/*! + The position in degrees where the pie ends. + + The default value is 90. + + To create a circle, set the value of this property to 360 and the value of + the \l begin property to 0. +*/ + property real end: 90 + +/*! + The area between \l begin and \l end. +*/ + property real alpha: root.clamp(root.end - root.begin, 0, 359.9) + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + + function clamp(num, min, max) { + return Math.max(min, Math.min(num, max)) + } + +/*! + Whether to draw a pie slice or just the pie rind (similar to an \l ArcItem). +*/ + property bool hideLine: { + if (root.alpha <= 0) + return true + if (root.alpha >= 359) + return true + return false + } + + function toRadians(degrees) { + return degrees * (Math.PI / 180.0) + } + + function polarToCartesianX(centerX, centerY, radius, angleInDegrees) { + return centerX + radius * Math.cos(root.toRadians(angleInDegrees)) + } + + function polarToCartesianY(centerX, centerY, radius, angleInDegrees) { + return centerY + radius * Math.sin(root.toRadians(angleInDegrees)) + } + + ShapePath { + id: path + + property real __xRadius: root.width / 2 - root.strokeWidth / 2 + property real __yRadius: root.height / 2 - root.strokeWidth / 2 + + property real __xCenter: root.width / 2 + property real __yCenter: root.height / 2 + + strokeColor: "red" + capStyle: ShapePath.FlatCap + + strokeWidth: 4 + + startX: root.hideLine ? root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin - 90) + : path.__xCenter + startY: root.hideLine ? root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin - 90) + : path.__yCenter + + PathLine { + x: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin - 90) + y: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin - 90) + } + + PathArc { + id: arc + + x: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin + root.alpha - 90) + y: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin + root.alpha - 90) + + radiusY: path.__yRadius; + radiusX: path.__xRadius; + + useLargeArc: root.alpha > 180 + } + + PathLine { + x: root.hideLine ? root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin + root.alpha - 90) + : path.__xCenter + y: root.hideLine ? root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin + root.alpha - 90) + : path.__yCenter + } + } +} + diff --git a/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc new file mode 100644 index 0000000..b735b0b --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components + + + diff --git a/build/qml/QtQuick/Studio/Components/RectangleItem.qml b/build/qml/QtQuick/Studio/Components/RectangleItem.qml new file mode 100644 index 0000000..7d95d77 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/RectangleItem.qml @@ -0,0 +1,434 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Shapes 1.12 + +/*! + \qmltype RectangleItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A filled rectangle with an optional border. + + Rectangle items are used to fill areas with solid color or gradients and + to provide a rectangular border. + + Each Rectangle item is painted using either a solid fill color, specified + using the \l fillColor property, or a gradient, defined using one of the + \l ShapeGradient subtypes and set using the \l gradient property. + If both a color and a gradient are specified, the gradient is used. + + An optional border can be added to a rectangle with its own color and + thickness by setting the \l strokeColor and \l strokeWidth properties. + Setting the color to \c transparent creates a border without a fill color. + + Rounded rectangles can be drawn using the \l radius property. The radius + can also be specified separately for each corner. Because this introduces + curved edges to the corners of a rectangle, it may be appropriate to set + the \c antialiasing property that is inherited from \l Item to improve the + appearance of the rectangle. + + \section2 Example Usage + + You can use the Rectangle component in \QDS to create different kinds of + rectangles. + + \image studio-rectangle.png + + The QML code looks as follows: + + \code + RectangleItem { + id: rectangle + gradient: RadialGradient { + focalRadius: 0 + centerY: 38.5 + focalY: 38.5 + centerX: 51.5 + centerRadius: 38.5 + GradientStop { + position: 0 + color: "#ffffff" + } + + GradientStop { + position: 1 + color: "#000000" + } + focalX: 51.5 + } + bottomRightRadius: 0 + topLeftRadius: 0 + strokeColor: "gray" + } + + RectangleItem { + id: rectangle1 + gradient: LinearGradient { + y1: 0 + y2: 77 + x2: 103 + x1: 0 + GradientStop { + position: 0 + color: "#ffffff" + } + + GradientStop { + position: 1 + color: "#000000" + } + } + topRightRadius: 0 + bottomLeftRadius: 0 + strokeColor: "#808080" + } + + RectangleItem { + id: rectangle2 + topLeftRadius: 0 + bottomRightRadius: 0 + fillColor: "#d3d3d3" + strokeColor: "#808080" + } + + RectangleItem { + id: rectangle3 + fillColor: "#000000" + gradient: LinearGradient { + y1: 0 + y2: 77 + x2: 103 + x1: 0 + GradientStop { + position: 0 + color: "#000000" + } + + GradientStop { + position: 1 + color: "#fdf9f9" + } + } + topRightRadius: 0 + bottomLeftRadius: 0 + strokeColor: "#808080" + } + \endcode +*/ + +Shape { + id: root + width: 200 + height: 150 + +/*! + The radius used to draw rounded corners. + + The default value is 10. + + If radius is non-zero, the corners will be rounded, otherwise they will + be sharp. The radius can also be specified separately for each corner by + using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and + \l topRightRadius properties. +*/ + property int radius: 10 + +/*! + The radius of the top left rectangle corner. +*/ + property int topLeftRadius: root.radius + +/*! + The radius of the bottom left rectangle corner. +*/ + property int bottomLeftRadius: root.radius + +/*! + The radius of the top right rectangle corner. +*/ + property int topRightRadius: root.radius + +/*! + The radius of the bottom right rectangle corner. +*/ + property int bottomRightRadius: root.radius + +/*! + The gradient of the rectangle fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the rectangle border. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the border of the rectangle. + + The default value is 4. + + A width of 1 creates a thin line. For no line, use a negative value or a + transparent color. + + \note The width of the rectangle's border does not affect the geometry of + the rectangle itself or its position relative to other items if anchors are + used. + + The border is rendered within the rectangle's boundaries. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color used to draw the border of the rectangle. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the rectangle border specified as the dashes and the + gaps between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + + + property alias joinStyle: path.joinStyle + +/*! + The rectangle fill color. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The starting point of the dash pattern for the rectangle border. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + +/*! + Whether the border corner is beveled. +*/ + property bool bevel: false + +/*! + The bevel of the top left border corner. + + \sa bevel +*/ + property bool topLeftBevel: root.bevel + +/*! + The bevel of the top right border corner. + + \sa bevel +*/ + property bool topRightBevel: root.bevel + +/*! + The bevel of the bottom right border corner. + + \sa bevel +*/ + property bool bottomRightBevel: root.bevel + +/*! + The bevel of the bottom left border corner. + + \sa bevel +*/ + property bool bottomLeftBevel: root.bevel + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + +/*! + The border is rendered within the rectangle's boundaries, outside of them, + or on top of them. +*/ + property int borderMode: 0 + + property real borderOffset: { + if (root.borderMode === 0) + return root.strokeWidth * 0.5 + if (root.borderMode === 1) + return 0 + + return -root.strokeWidth * 0.5 + } + +/*! + The property changes the way border radius is calculated. + Deactivated by default. +*/ + property bool adjustBorderRadius: false + + Item { + anchors.fill: parent + anchors.margins: { + if (root.borderMode === 0) + return 0 + if (root.borderMode === 1) + return -root.strokeWidth * 0.5 + + return -root.strokeWidth + } + } + + ShapePath { + id: path + + property int __maxRadius: Math.floor(Math.min(root.width, root.height) / 2) + property int __topLeftRadius: Math.min(root.topLeftRadius, path.__maxRadius) + property int __topRightRadius: Math.min(root.topRightRadius, path.__maxRadius) + property int __bottomRightRadius: Math.min(root.bottomRightRadius, path.__maxRadius) + property int __bottomLeftRadius: Math.min(root.bottomLeftRadius, path.__maxRadius) + + readonly property real __borderRadiusAdjustment: { + if (root.adjustBorderRadius) { + if (root.borderMode === 1) + return (root.strokeWidth * 0.5) + if (root.borderMode === 2) + return root.strokeWidth + } + return 0 + } + + joinStyle: ShapePath.MiterJoin + + strokeWidth: 4 + strokeColor: "red" + + startX: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment + startY: root.borderOffset + + PathLine { + x: root.width - path.__topRightRadius - root.borderOffset - path.__borderRadiusAdjustment + y: root.borderOffset + } + + PathArc { + x: root.width - root.borderOffset + y: path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment + + radiusX: root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment + radiusY: root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment + } + + PathLine { + x: root.width - root.borderOffset + y: root.height - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment + } + + PathArc { + x: root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment + y: root.height - root.borderOffset + + radiusX: root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment + radiusY: root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment + } + + PathLine { + x: path.__bottomLeftRadius + root.borderOffset + path.__borderRadiusAdjustment + y: root.height - root.borderOffset + } + + PathArc { + x: root.borderOffset + y: root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment + + radiusX: root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment + radiusY: root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment + } + + PathLine { + x: root.borderOffset + y: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment + } + + PathArc { + x: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment + y: root.borderOffset + + radiusX: root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment + radiusY: root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment + } + } +} diff --git a/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml b/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml new file mode 100644 index 0000000..555d73f --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml @@ -0,0 +1,318 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Shapes 1.12 + +/*! + \qmltype RegularPolygon + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A filled regular polygon with an optional border. +*/ + +Shape { + id: root + width: 200 + height: 200 + +/*! + The radius used to draw rounded corners. + + The default value is 10. + + If radius is non-zero, the corners will be rounded, otherwise they will + be sharp. The radius can also be specified separately for each corner by + using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and + \l topRightRadius properties. +*/ + property int radius: 10 + +/*! + The gradient of the regular polygon fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the regular polygon border. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the border of the regular polygon. + + The default value is 4. + + A width of 1 creates a thin line. For no line, use a negative value or a + transparent color. + + \note The width of the regular polygon's border does not affect the geometry of + the regular polygon itself or its position relative to other items if anchors are + used. + + The border is rendered within the regular polygon's boundaries. +*/ + property alias strokeWidth: path.strokeWidth + +/*! + The color used to draw the border of the regular polygon. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the regular polygon border specified as the dashes and the + gaps between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + + + property alias joinStyle: path.joinStyle + +/*! + The regular polygon fill color. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The starting point of the dash pattern for the regular polygon border. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + +/*! + Number of sides on the polygon. +*/ + property int sideCount: 6 + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + + // This is used to make the bounding box of the item a bit bigger so it will draw sharp edges + // in case of large stroke width instead of cutting it off. + Item { + anchors.fill: parent + anchors.margins: -root.strokeWidth + } + + ShapePath { + id: path + + joinStyle: ShapePath.MiterJoin + strokeWidth: 4 + strokeColor: "red" + startX: 0 + startY: 0 + } + + onSideCountChanged: root.constructPolygon() + onRadiusChanged: { + // Only construct polygon if radius changed from 0 to 1 or vice versa. + if ((root.radius + root.__previousRadius) === 1) + root.constructPolygon() + + root.__previousRadius = root.radius + } + Component.onCompleted: root.constructPolygon() + + property real __centerX: root.width / 2 + property real __centerY: root.height / 2 + property real __radius: Math.min(root.width, root.height) / 2 + + property int __previousRadius: root.radius + + property int minRadius: 0 + property int maxRadius: root.__radius * Math.cos(root.toRadians(180.0 / root.sideCount)) + + property int __actualRadius: Math.max(root.minRadius, Math.min(root.maxRadius, root.radius)) + + function constructPolygon() { + root.clearPathElements() + + if (root.radius === 0) + root.constructNonRoundedPolygonPath() + else + root.constructRoundedPolygonPath() + } + + function toRadians(degrees) { + return degrees * (Math.PI / 180.0) + } + + function constructNonRoundedPolygonPath() { + for (var cornerNumber = 0; cornerNumber < root.sideCount; cornerNumber++) { + let angleToCorner = root.toRadians(cornerNumber * (360.0 / root.sideCount)) + + if (cornerNumber === 0) { + path.startX = Qt.binding(function() { + return root.__centerX + root.__radius * Math.cos(0) + }) + path.startY = Qt.binding(function() { + return root.__centerY + root.__radius * Math.sin(0) + }) + } else { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { + return root.__centerX + root.__radius * Math.cos(angleToCorner) + }) + pathLine.y = Qt.binding(function() { + return root.__centerY + root.__radius * Math.sin(angleToCorner) + }) + path.pathElements.push(pathLine) + } + } + + // Close the polygon + var pathLineClose = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLineClose.x = Qt.binding(function() { return path.startX } ) + pathLineClose.y = Qt.binding(function() { return path.startY } ) + path.pathElements.push(pathLineClose) + } + + property real __halfInteriorCornerAngle: 90 - (180.0 / root.sideCount) + property real __halfCornerArcSweepAngle: 90 - root.__halfInteriorCornerAngle + property real __distanceToCornerArcCenter: root.__radius - root.__actualRadius / + Math.sin(root.toRadians(root.__halfInteriorCornerAngle)) + + function constructRoundedPolygonPath() { + for (var cornerNumber = 0; cornerNumber < root.sideCount; cornerNumber++) { + let angleToCorner = cornerNumber * (360.0 / root.sideCount) + + let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc { + property real centerX; + property real centerY }', path) + pathArc.centerX = Qt.binding(function() { + return root.__centerX + root.__distanceToCornerArcCenter + * Math.cos(root.toRadians(angleToCorner)) + }) + pathArc.centerY = Qt.binding(function() { + return root.__centerY + root.__distanceToCornerArcCenter + * Math.sin(root.toRadians(angleToCorner)) + }) + pathArc.x = Qt.binding(function() { + return pathArc.centerX + root.__actualRadius + * (Math.cos(root.toRadians(angleToCorner + root.__halfCornerArcSweepAngle))) + }) + pathArc.y = Qt.binding(function() { + return pathArc.centerY + root.__actualRadius + * (Math.sin(root.toRadians(angleToCorner + root.__halfCornerArcSweepAngle))) + }) + pathArc.radiusX = Qt.binding(function() { return root.__actualRadius }) + pathArc.radiusY = Qt.binding(function() { return root.__actualRadius }) + + if (cornerNumber === 0) { + path.startX = Qt.binding(function() { + return pathArc.centerX + root.__actualRadius + * (Math.cos(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) + }) + path.startY = Qt.binding(function() { + return pathArc.centerY + root.__actualRadius + * (Math.sin(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) + }) + } else { + let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLine.x = Qt.binding(function() { + return pathArc.centerX + root.__actualRadius + * (Math.cos(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) + }) + pathLine.y = Qt.binding(function() { + return pathArc.centerY + root.__actualRadius + * (Math.sin(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) + }) + path.pathElements.push(pathLine) + } + + path.pathElements.push(pathArc) + } + + // Close the polygon + var pathLineClose = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) + pathLineClose.x = Qt.binding(function() { return path.startX} ) + pathLineClose.y = Qt.binding(function() { return path.startY} ) + path.pathElements.push(pathLineClose) + } + + function clearPathElements() { + for (var i = 0; i !== path.pathElements.length; ++i) + path.pathElements[i].destroy() + + path.pathElements = [] + } +} diff --git a/build/qml/QtQuick/Studio/Components/StraightArrow.qml b/build/qml/QtQuick/Studio/Components/StraightArrow.qml new file mode 100644 index 0000000..6926ec5 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/StraightArrow.qml @@ -0,0 +1,97 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 + +Item { + + width: 200 + height: 200 + id: root + property bool flip: false + property bool rotate: false + + property int thickness: 45 + + property int arrowSize: 80 + + property int radius: 5 + property color color: "#b6b3b3" + + property bool corner: false + + property bool flipCorner: false + + Item { + id: content + implicitWidth: Math.max(16, childrenRect.width + childrenRect.x) + implicitHeight: Math.max(16, childrenRect.height + childrenRect.y) + anchors.centerIn: parent + + scale: root.flip ? -1 : 1 + rotation: root.rotate ? 90 : 0 + + TriangleItem { + id: triangle + x: 0 + y: 0 + anchors.verticalCenter: rectangle.verticalCenter + rotation: -90 + strokeWidth: -1 + width: root.arrowSize + height: root.arrowSize + radius: root.radius + fillColor: root.color + } + + RectangleItem { + id: rectangle + x: root.arrowSize - root.radius * 2 + //y: ((root.rotate ? root.width : root.height) - root.thickness) / 2 + width: (root.rotate ? root.height : root.width) - (root.arrowSize - root.radius * 2) + height: root.thickness + strokeWidth: -1 + radius: root.radius + fillColor: root.color + } + RectangleItem { + id: rectangle1 + x: 260 + y: 202 + width: root.corner ? root.thickness : 0 + strokeWidth: -1 + height: root.corner ? (root.rotate ? root.width : root.height) / 2 : 0 + anchors.bottom: root.flipCorner ? undefined : rectangle.verticalCenter + anchors.top: root.flipCorner ? rectangle.verticalCenter : undefined + anchors.right: rectangle.right + fillColor: root.color + visible: root.corner + } + } +} diff --git a/build/qml/QtQuick/Studio/Components/SvgPathItem.qml b/build/qml/QtQuick/Studio/Components/SvgPathItem.qml new file mode 100644 index 0000000..6bd1950 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/SvgPathItem.qml @@ -0,0 +1,221 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import QtQuick.Timeline 1.0 +import QtQuick.Shapes 1.12 + +/*! + \qmltype SvgPathItem + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A path defined using an SVG path data string. + + The SvgPathItem type uses an SVG path data string to draw a path as a line. + + The \l strokeColor, \l strokeWidth, and \l strokeStyle, properties specify + the appearance of the path. The \l dashPattern and \l dashOffset properties + specify the appearance of dashed lines. + + The \l capStyle property specifies whether line ends are square or + rounded. + + The \l joinStyle property specifies how to connect two path segments. + If the path segments enclose areas, they can be painted using either + a solid fill color, specified using the \l fillColor property, or a + gradient, defined using one of the \l ShapeGradient subtypes and set + using the \l gradient property. If both a color and a gradient are + specified, the gradient is used. + + If the path has curves, it may be appropriate to set the \c antialiasing + property that is inherited from \l Item to improve its appearance. +*/ + +Shape { + id: root + width: 200 + height: 200 + +/*! + The gradient of the fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: shape.fillGradient + +/*! + The style of the line. + + \value Shape.SolidLine + A solid line. This is the default value. + \value Shape.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: shape.strokeStyle + +/*! + The width of the line. + + When set to a negative value, no line is drawn. + + The default value is 4. +*/ + property alias strokeWidth: shape.strokeWidth + +/*! + The color of the line. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: shape.strokeColor + +/*! + The dash pattern of the line specified as the dashes and the gaps between + them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + Each dash is also subject to cap styles, and therefore a dash of 1 with + square cap set will extend 0.5 pixels out in each direction resulting in + a total width of 2. + + The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square + line end covers the end point and extends beyond it by half the line width. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: shape.dashPattern + +/*! + The join style used to connect two path segments. + + \value Shape.MiterJoin + The outer edges of the lines are extended to meet at an angle, and + this area is filled. + \value Shape.BevelJoin + The triangular notch between the two lines is filled. + This is the default value. + \value Shape.RoundJoin + A circular arc between the two lines is filled. + + \sa Qt::PenJoinStyle +*/ + property alias joinStyle: shape.joinStyle + +/*! + The fill color of enclosed path segments. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: shape.fillColor + +/*! + \qmlproperty string SvgPathItem::path + + The SVG path data string specifying the path. + + For more information, see \l{https://www.w3.org/TR/SVG/paths.html#PathData} + {W3C SVG Path Data}. +*/ + property alias path: pathSvg.path + +/*! + The starting point of the dash pattern for the line. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: shape.dashOffset + +/*! + The cap style of the line. + + \value Shape.FlatCap + A square line end that does not cover the end point of the line. + \value Shape.SquareCap + A square line end that covers the end point and extends beyond it + by half the line width. This is the default value. + \value Shape.RoundCap + A rounded line end. + + \sa Qt::PenCapStyle +*/ + property alias capStyle: shape.capStyle + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + + ShapePath { + id: shape + strokeWidth: 4 + strokeColor: "red" + joinStyle: ShapePath.MiterJoin + + PathSvg { + id: pathSvg + + path: "M91,70.6c4.6,0,8.6,2.4,10.9,6.3l19.8,34.2c2.3,3.9,2.3,8.7,0,12.6c-2.3,3.9-6.4,6.3-10.9,6.3H71.2 c-4.6,0-8.6-2.4-10.9-6.3c-2.3-3.9-2.3-8.7,0-12.6l19.8-34.2C82.4,72.9,86.4,70.6,91,70.6z" + } + } +} diff --git a/build/qml/QtQuick/Studio/Components/TriangleItem.qml b/build/qml/QtQuick/Studio/Components/TriangleItem.qml new file mode 100644 index 0000000..8dc57a1 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/TriangleItem.qml @@ -0,0 +1,496 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.9 +import QtQuick.Shapes 1.12 + +/*! + \qmltype Triangle + \inqmlmodule QtQuick.Studio.Components + \since QtQuick.Studio.Components 1.0 + \inherits Shape + + \brief A triangle. + + The Triangle type can be used to draw triangles with different dimensions + and shapes. The type is enclosed in an invisible \l Rectangle type. The size + of the triangle is determined by the size of the bounding rectangle. The + dimensions of the triangle can be changed to make it elongated or squat + with space around it by using the \l leftMargin, \l topMargin, + \l rightMargin, and \l bottomMargin properties. The margins are set between + the triangle and the edges of the parent rectangle. + + Each Triangle item is painted using either a solid fill color, specified + using the \l fillColor property, or a gradient, defined using one of the + \l ShapeGradient subtypes and set using the \l gradient property. + If both a color and a gradient are specified, the gradient is used. + + An optional border can be added to a triangle with its own color and + thickness by setting the \l strokeColor and \l strokeWidth properties. + Setting the color to \c transparent creates a border without a fill color. + + \section2 Example Usage + + You can use the Triangle component in \QDS to create triangles in different + shapes and colors. + + \image studio-triangle.png + + The QML code looks as follows: + + \code + TriangleItem { + id: triangle + strokeColor: "gray" + fillColor: "light gray" + } + + TriangleItem { + id: squatTriangle + bottomMargin: 10 + topMargin: 30 + fillColor: "#d3d3d3" + strokeColor: "#808080" + } + + TriangleItem { + id: elongatedTriangle + leftMargin: 15 + rightMargin: 15 + fillColor: "#d3d3d3" + strokeColor: "#808080" + } + + TriangleItem { + id: pear + radius: 20 + fillColor: "light gray" + bottomMargin: 10 + arcRadius: 20 + strokeColor: "#808080" + } + \endcode +*/ + +Shape { + id: root + + implicitWidth: 100 + implicitHeight: 100 + +/*! + The gradient of the triangle fill color. + + By default, no gradient is enabled and the value is null. In this case, the + fill uses a solid color based on the value of \l fillColor. + + When set, \l fillColor is ignored and filling is done using one of the + \l ShapeGradient subtypes. + + \note The \l Gradient type cannot be used here. Rather, prefer using one of + the advanced subtypes, like \l LinearGradient. +*/ + property alias gradient: path.fillGradient + +/*! + The style of the triangle border. + + \value ShapePath.SolidLine + A solid line. This is the default value. + \value ShapePath.DashLine + Dashes separated by a few pixels. + The \l dashPattern property specifies the dash pattern. + + \sa Qt::PenStyle +*/ + property alias strokeStyle: path.strokeStyle + +/*! + The width of the border of the rectangle. + + The default value is 4. + + A width of 1 creates a thin line. For no line, use a negative value or a + transparent color. + + \note The width of the rectangle's border does not affect the geometry of + the rectangle itself or its position relative to other items if anchors are + used. + + The border is rendered within the rectangle's boundaries. +*/ + + property alias strokeWidth: path.strokeWidth + +/*! + The color used to draw the border of the triangle. + + When set to \c transparent, no line is drawn. + + The default value is \c red. + + \sa QColor +*/ + property alias strokeColor: path.strokeColor + +/*! + The dash pattern of the triangle border specified as the dashes and the + gaps between them. + + The dash pattern is specified in units of the pen's width. That is, a dash + with the length 5 and width 10 is 50 pixels long. + + The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels + followed by a space of 2 * \l strokeWidth pixels. + + \sa QPen::setDashPattern() +*/ + property alias dashPattern: path.dashPattern + +/*! + The join style used to connect two triangle line segments. + + \value ShapePath.MiterJoin + The outer edges of the lines are extended to meet at an angle, and + this area is filled. + \value ShapePath.BevelJoin + The triangular notch between the two lines is filled. + This is the default value. + \value ShapePath.RoundJoin + A circular arc between the two lines is filled. + + \sa Qt::PenJoinStyle +*/ + property alias joinStyle: path.joinStyle + +/*! + The triangle fill color. + + A gradient for the fill can be specified by using \l gradient. If both a + color and a gradient are specified, the gradient is used. + + When set to \c transparent, no filling occurs. + + The default value is \c white. +*/ + property alias fillColor: path.fillColor + +/*! + The starting point of the dash pattern for the triangle border. + + The offset is measured in terms of the units used to specify the dash + pattern. For example, a pattern where each stroke is four units long, + followed by a gap of two units, will begin with the stroke when drawn + as a line. However, if the dash offset is set to 4.0, any line drawn + will begin with the gap. Values of the offset up to 4.0 will cause part + of the stroke to be drawn first, and values of the offset between 4.0 and + 6.0 will cause the line to begin with part of the gap. + + The default value is 0. + + \sa QPen::setDashOffset() +*/ + property alias dashOffset: path.dashOffset + + property int pLineXStart + property int pLineXEnd + property int pLineYStart + property int pLineYEnd + + property point topIntersection1 + property point topIntersection2 + property point leftIntersection1 + property point leftIntersection2 + property point rightIntersection1 + property point rightIntersection2 + +/*! + The radius used to draw rounded corners. + + The default value is 5. + + If radius is non-zero, the corners will be rounded, otherwise they will + be sharp. + + This property can be used together with the \l arcRadius property to + determine the shape of the triangle. + + \sa arcRadius +*/ + property int radius: 5 + +/*! + The radius used to draw rounded corners. + + The default value is 5. + + If radius is non-zero, the corners will be rounded, otherwise they will + be sharp. + + This property can be used together with the \l radius property to + determine the shape of the triangle. +*/ + property real arcRadius: root.radius + +/*! + The left margin between the triangle and the bounding rectangle. + + Setting the left and right margins makes the triangle thinner and moves it + away from the edge. + + \sa rightMargin, topMargin, bottomMargin +*/ + property real leftMargin: 0 + +/*! + The top margin between the triangle and the bounding rectangle. + + Setting the top and bottom margins makes the triangle lower and moves it + away from the edge. + + \sa bottomMargin, leftMargin, rightMargin +*/ + property real topMargin: 0 + +/*! + The left margin between the triangle and the bounding rectangle. + + Setting the left and right margins makes the triangle thinner and moves it + away from the edge. + + \sa leftMargin, topMargin, bottomMargin +*/ + property real rightMargin: 0 + +/*! + \qmlproperty real Triangle::bottomMargin + + The top margin between the triangle and the bounding rectangle. + + Setting the top and bottom margins makes the triangle shorter and moves it + away from the edge. + + \sa topMargin, leftMargin, rightMargin +*/ + property real bottomMargin: 0 + + property int maxRadius: 0 + + layer.enabled: root.antialiasing + layer.smooth: root.antialiasing + layer.samples: root.antialiasing ? 4 : 0 + + // This is used to make the bounding box of the item a bit bigger so it will draw sharp edges + // in case of large stroke width instead of cutting it off. + Item { + anchors.fill: parent + anchors.margins: -root.strokeWidth + } + + ShapePath { + id: path + + //property real __width: root.width - root.strokeWidth - root.leftMargin - root.rightMargin + //property real __height: root.height - root.strokeWidth - root.topMargin - root.bottomMargin + //property real xOffset: root.strokeWidth / 2 + root.leftMargin + //property real yOffset: root.strokeWidth / 2 + root.topMargin + + property real __width: root.width - root.leftMargin - root.rightMargin + property real __height: root.height - root.topMargin - root.bottomMargin + property real xOffset: root.leftMargin + property real yOffset: root.topMargin + + strokeWidth: 4 + strokeColor: "red" + capStyle: ShapePath.FlatCap + joinStyle: ShapePath.MiterJoin + + startX: root.topIntersection1.x + path.xOffset + startY: root.topIntersection1.y + path.yOffset + + PathArc { + radiusX: Math.max(root.arcRadius, 1) + radiusY: Math.max(root.arcRadius, 1) + + x: root.topIntersection2.x + path.xOffset + y: root.topIntersection2.y + path.yOffset + } + + PathLine { + x: root.rightIntersection1.x + path.xOffset + y: root.rightIntersection1.y + path.yOffset + } + + PathArc { + radiusX: Math.max(root.arcRadius, 1) + radiusY: Math.max(root.arcRadius, 1) + + x: root.rightIntersection2.x + path.xOffset + y: root.rightIntersection2.y + path.yOffset + } + + PathLine { + x: root.leftIntersection1.x + path.xOffset + y: root.leftIntersection1.y + path.yOffset + } + + PathArc { + radiusX: Math.max(root.arcRadius, 1) + radiusY: Math.max(root.arcRadius, 1) + + x: root.leftIntersection2.x + path.xOffset + y: root.leftIntersection2.y + path.yOffset + } + + PathLine { + x: root.topIntersection1.x + path.xOffset + y: root.topIntersection1.y + path.yOffset + } + } + + onWidthChanged: root.calc() + onHeightChanged: root.calc() + + onRadiusChanged: root.calc() + onArcRadiusChanged: root.calc() + + onTopMarginChanged: root.calc() + onBottomMarginChanged: root.calc() + onLeftMarginChanged: root.calc() + onRightMarginChanged: root.calc() + + Component.onCompleted: root.calc() + + function length(x, y) { + return Math.sqrt(x * x + y * y) + } + + function normalize(x, y) { + var l = length(x, y) + + return { + x: x / l, + y: y / l + } + } + + function dotProduct(x1, y1, x2, y2) { + return x1 * x2 + y1 * y2; + } + + function project(x1, y1, x2, y2) { + var normalized = normalize(x1, y1) + + var dot = dotProduct(normalized.x, normalized.y, x2, y2) + + return { + x: normalized.x * dot, + y: normalized.y * dot + } + } + + function intersect(x1, y1, x2, y2, x3, y3, x4, y4) { + var denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1) + + var ua = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denom + var ub = ((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / denom + return { + x: x1 + ua * (x2 - x1), + y: y1 + ua * (y2 - y1) + }; + } + + function moveLine(startX, startY, endX, endY) { + var angle = Math.atan2(endY - startY, endX - startX) + var xOffset = Math.sin(angle) * Math.min(root.radius, root.maxRadius) + var yOffset = -Math.cos(angle) * Math.min(root.radius, root.maxRadius) + + return { + startX: startX + xOffset, + startY: startY + yOffset, + endX: endX + xOffset, + endY: endY + yOffset + }; + } + + function calc() { + var movedLine1 = moveLine(path.__width / 2, 0, 0, path.__height) + var movedLine2 = moveLine(path.__width, path.__height, path.__width / 2, 0) + var movedLine3 = moveLine(0, path.__height, path.__width, path.__height) + + var lengthLine1 = Math.floor(root.length(movedLine1.endX - movedLine1.startX, + movedLine1.endY - movedLine1.startY)) + var lengthLine2 = Math.floor(root.length(movedLine2.endX - movedLine2.startX, + movedLine2.endY - movedLine2.startY)) + var lengthLine3 = Math.floor(root.length(movedLine3.endX - movedLine3.startX, + movedLine3.endY - movedLine3.startY)) + + var perimeter = lengthLine1 + lengthLine2 + lengthLine3 + var area = (path.__height) * (path.__width) * 0.5 + + root.maxRadius = area * 2 / perimeter + + var intersectionTop = root.intersect(movedLine1.startX, movedLine1.startY, + movedLine1.endX, movedLine1.endY, + movedLine2.startX, movedLine2.startY, + movedLine2.endX, movedLine2.endY) + var intersectionLeft = root.intersect(movedLine1.startX, movedLine1.startY, + movedLine1.endX, movedLine1.endY, + movedLine3.startX, movedLine3.startY, + movedLine3.endX, movedLine3.endY) + var intersectionRight = root.intersect(movedLine2.startX, movedLine2.startY, + movedLine2.endX, movedLine2.endY, + movedLine3.startX, movedLine3.startY, + movedLine3.endX, movedLine3.endY) + + var leftBottom = root.project(1, 0, intersectionLeft.x, intersectionLeft.y) + var rightBottom = root.project(1, 0, intersectionRight.x, intersectionRight.y) + + root.leftIntersection1 = Qt.point(leftBottom.x, leftBottom.y + path.__height) + root.rightIntersection2 = Qt.point(rightBottom.x, rightBottom.y + path.__height) + + var leftTop = root.project(-path.__width / 2 , path.__height, + intersectionTop.x - path.__width / 2, intersectionTop.y) + + leftBottom = root.project(-path.__width / 2 , path.__height, + intersectionLeft.x - path.__width / 2, intersectionLeft.y) + + root.leftIntersection2 = Qt.point(leftBottom.x + path.__width / 2, leftBottom.y) + root.topIntersection1 = Qt.point(leftTop.x + path.__width / 2, leftTop.y) + + var rightTop = root.project(path.__width / 2 , path.__height, + intersectionTop.x - path.__width / 2, intersectionTop.y) + + rightBottom = root.project(path.__width / 2 , path.__height, + intersectionRight.x - path.__width / 2, intersectionRight.y) + + root.topIntersection2 = Qt.point(rightTop.x + path.__width / 2, rightTop.y) + root.rightIntersection1 = Qt.point(rightBottom.x + path.__width / 2, rightBottom.y) + } +} diff --git a/build/qml/QtQuick/Studio/Components/qmldir b/build/qml/QtQuick/Studio/Components/qmldir new file mode 100644 index 0000000..759d443 --- /dev/null +++ b/build/qml/QtQuick/Studio/Components/qmldir @@ -0,0 +1,34 @@ +module QtQuick.Studio.Components +linktarget QuickStudioComponentsplugin +optional plugin QuickStudioComponentsplugin +classname QtQuick_Studio_ComponentsPlugin +designersupported +typeinfo QuickStudioComponents.qmltypes +prefer :/QtQuick/Studio/Components/ +ArcItem 6.0 ArcItem.qml +ArcItem 1.0 ArcItem.qml +PieItem 6.0 PieItem.qml +PieItem 1.0 PieItem.qml +TriangleItem 6.0 TriangleItem.qml +TriangleItem 1.0 TriangleItem.qml +SvgPathItem 6.0 SvgPathItem.qml +SvgPathItem 1.0 SvgPathItem.qml +EllipseItem 6.0 EllipseItem.qml +EllipseItem 1.0 EllipseItem.qml +FlipableItem 6.0 FlipableItem.qml +FlipableItem 1.0 FlipableItem.qml +RectangleItem 6.0 RectangleItem.qml +RectangleItem 1.0 RectangleItem.qml +RegularPolygonItem 6.0 RegularPolygonItem.qml +RegularPolygonItem 1.0 RegularPolygonItem.qml +BorderItem 6.0 BorderItem.qml +BorderItem 1.0 BorderItem.qml +IsoItem 6.0 IsoItem.qml +IsoItem 1.0 IsoItem.qml +GroupItem 6.0 GroupItem.qml +GroupItem 1.0 GroupItem.qml +ArcArrow 6.0 ArcArrow.qml +ArcArrow 1.0 ArcArrow.qml +StraightArrow 6.0 StraightArrow.qml +StraightArrow 1.0 StraightArrow.qml + diff --git a/build/qml/QtQuick/Studio/Effects/BlendEffect.qml b/build/qml/QtQuick/Studio/Effects/BlendEffect.qml new file mode 100644 index 0000000..bfefcd6 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/BlendEffect.qml @@ -0,0 +1,37 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +FastBlur { + id: blend + property string mode: "subtract" + Component.onCompleted: console.log("Blend is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/BlendItem.qml b/build/qml/QtQuick/Studio/Effects/BlendItem.qml new file mode 100644 index 0000000..e4cf658 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/BlendItem.qml @@ -0,0 +1,65 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property string mode + property alias cached: blend.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + visible: false + } + + FastBlur { + id: blend + anchors.fill: parent + } + + property Item background + property Item foreground + + property Item foo: Item {} + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + console.log("Blend is not supported with Qt 6") + } +} + diff --git a/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml b/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml new file mode 100644 index 0000000..16be284 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml @@ -0,0 +1,35 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +BrightnessContrast { + id: brightCont +} diff --git a/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml b/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml new file mode 100644 index 0000000..76c4215 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml @@ -0,0 +1,57 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + + property alias brightness: brightCont.brightness + property alias contrast: brightCont.contrast + property alias cached: brightCont.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + BrightnessContrast { + id: brightCont + anchors.fill: stack + source: stack + } +} diff --git a/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml b/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml new file mode 100644 index 0000000..6b67005 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml @@ -0,0 +1,36 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +ColorOverlay { + id: colorOverlay + color: "#80fff000" +} diff --git a/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml b/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml new file mode 100644 index 0000000..7ae14f8 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml @@ -0,0 +1,59 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias content: stack.children + + property alias overlayColor: colorOverlay.color + property alias cached: colorOverlay.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + ColorOverlay { + id: colorOverlay + anchors.fill: stack + source: stack + color: "#80fff000" + } +} diff --git a/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml b/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml new file mode 100644 index 0000000..35dedf5 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml @@ -0,0 +1,38 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Colorize { + id: colorize + hue: 0.5 + saturation: 0.5 + lightness: 0.5 +} diff --git a/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml b/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml new file mode 100644 index 0000000..f61dddc --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias colorizeHue: colorize.hue + property alias colorizeSaturation: colorize.saturation + property alias colorizeLightness: colorize.lightness + property alias cached: colorize.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + Colorize { + id: colorize + anchors.fill: stack + source: stack + hue: 0.5 + saturation: 0.5 + lightness: 0.5 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml b/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml new file mode 100644 index 0000000..ad66dfe --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml @@ -0,0 +1,36 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Desaturate { + id: desaturate + desaturation: 0.5 +} diff --git a/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml b/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml new file mode 100644 index 0000000..c994ba3 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml @@ -0,0 +1,56 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias desaturation: desaturate.desaturation + property alias cached: desaturate.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + Desaturate { + id: desaturate + source: stack + anchors.fill: stack + desaturation: 0.5 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml new file mode 100644 index 0000000..9dd691e --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml @@ -0,0 +1,42 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +FastBlur { + property real directionalBlurAngle: 0 + property real directionalBlurLength: 0 + property int directionalBlurSamples: 10 + property int length: 0 + + id: directionalBlur + transparentBorder: true + Component.onCompleted: console.log("DirectionalBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml b/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml new file mode 100644 index 0000000..8cbb98a --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + + property real directionalBlurAngle: 0 + property real directionalBlurLength: 0 + property int directionalBlurSamples: 10 + property alias directionalBlurBorder: directionalBlur.transparentBorder + property alias cached: directionalBlur.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + FastBlur { + id: directionalBlur + anchors.fill: stack + source: stack + transparentBorder: true + } + Component.onCompleted: console.log("DirectionalBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml b/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml new file mode 100644 index 0000000..5d27a35 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml @@ -0,0 +1,35 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Displace { + id: displace +} diff --git a/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml b/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml new file mode 100644 index 0000000..8d1ebdd --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml @@ -0,0 +1,66 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias displacement: displace.displacement + property alias cached: displace.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + implicitWidth: displace.source.width + displace.source.x + implicitHeight: displace.source.height + displace.source.y + visible: false + } + + Displace { + id: displace + anchors.fill: parent + source: root.background + displacementSource: root.foreground + } + + property Item background + property Item foreground + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + } +} + diff --git a/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml b/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml new file mode 100644 index 0000000..51e4778 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +DropShadow { + id: dropShadow + horizontalOffset: 3 + verticalOffset: 3 + radius: 8.0 + spread: 0.5 + transparentBorder: true + color: "#80000000" +} diff --git a/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml b/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml new file mode 100644 index 0000000..e49f283 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml @@ -0,0 +1,69 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias horizontalOffset: dropShadow.horizontalOffset + property alias verticalOffset: dropShadow.verticalOffset + property alias radius: dropShadow.radius + property alias samples: dropShadow.samples + property alias spread: dropShadow.spread + property alias transparentBorder: dropShadow.transparentBorder + property alias color: dropShadow.color + property alias cached: dropShadow.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + DropShadow { + id: dropShadow + anchors.fill: stack + source: stack + horizontalOffset: 3 + verticalOffset: 3 + radius: 8.0 + samples: 17 + spread: 0.5 + transparentBorder: true + color: "#80000000" + } +} diff --git a/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml new file mode 100644 index 0000000..353fd1d --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml @@ -0,0 +1,36 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.8 +import Qt5Compat.GraphicalEffects + +FastBlur { + id: fastBlur + radius: 20 +} diff --git a/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml b/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml new file mode 100644 index 0000000..f8048cb --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.8 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + layer.enabled: true + + default property alias contentStack: stack.children + property alias radius: blur.radius + property alias transparentBorder: blur.transparentBorder + property alias cached: blur.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + } + + FastBlur { + id: blur + + transparentBorder: true + anchors.fill: stack + source: stack + radius: 12 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml b/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml new file mode 100644 index 0000000..dfa0680 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml @@ -0,0 +1,37 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +GammaAdjust { + id: gammaAdjust + anchors.fill: stack + gamma: 0.5 +} diff --git a/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml b/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml new file mode 100644 index 0000000..e8d0e67 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml @@ -0,0 +1,57 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias gamma: gammaAdjust.gamma + property alias cached: gammaAdjust.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + GammaAdjust { + id: gammaAdjust + anchors.fill: stack + source: stack + gamma: 0.5 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml new file mode 100644 index 0000000..7180065 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +FastBlur { + id: gaussianBlur + transparentBorder: true + radius: 8.0 + + property alias radius: gaussianBlur.radius + property int samples: 0 + Component.onCompleted: console.log("GaussianBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml b/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml new file mode 100644 index 0000000..ee95182 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property real deviation: gaussianBlur.deviation + property alias radius: gaussianBlur.radius + property int samples: 0 + property alias transparentBorder: gaussianBlur.transparentBorder + property alias cached: gaussianBlur.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + FastBlur { + id: gaussianBlur + transparentBorder: true + anchors.fill: stack + source: stack + radius: 8.0 + } + Component.onCompleted: console.log("GaussianBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/GlowEffect.qml b/build/qml/QtQuick/Studio/Effects/GlowEffect.qml new file mode 100644 index 0000000..6a4d56d --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GlowEffect.qml @@ -0,0 +1,40 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Glow { + property real samples: 0 + id: glow + radius: 5 + spread: 0.5 + color: "#ffffffff" + transparentBorder: true +} diff --git a/build/qml/QtQuick/Studio/Effects/GlowItem.qml b/build/qml/QtQuick/Studio/Effects/GlowItem.qml new file mode 100644 index 0000000..201a3b1 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/GlowItem.qml @@ -0,0 +1,63 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias radius: glow.radius + property real samples: 0 + property alias spread: glow.spread + property alias color: glow.color + property alias transparentBorder: glow.transparentBorder + property alias cached: glow.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + Glow { + id: glow + anchors.fill: stack + radius: 5 + spread: 0.5 + color: "#ffffffff" + transparentBorder: true + source: stack + } +} diff --git a/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml b/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml new file mode 100644 index 0000000..d35f33f --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml @@ -0,0 +1,38 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +HueSaturation { + id: hueSat + hue: 0.5 + saturation: 0.5 + lightness: 0.5 +} diff --git a/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml b/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml new file mode 100644 index 0000000..39ab8ec --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias adjustHue: hueSat.hue + property alias adjustSaturation: hueSat.saturation + property alias adjustLightness: hueSat.lightness + property alias cached: hueSat.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + HueSaturation { + id: hueSat + anchors.fill: stack + source: stack + hue: 0.5 + saturation: 0.5 + lightness: 0.5 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml b/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml new file mode 100644 index 0000000..ec182aa --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml @@ -0,0 +1,45 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +FastBlur { + id: innerShadow + + property color color: "#000000" + property bool fast: false + property real horizontalOffset: 0 + property real radius: 0 + property real samples: 0 + property real spread: 0 + property real verticalOffset: 0 + + Component.onCompleted: console.log("InnerShadow is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml b/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml new file mode 100644 index 0000000..de8405b --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml @@ -0,0 +1,63 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias cached: innerShadow.cached + + property color color: "#000000" + property bool fast: false + property real horizontalOffset: 0 + property real radius: 0 + property real samples: 0 + property real spread: 0 + property real verticalOffset: 0 + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + FastBlur { + id: innerShadow + anchors.fill: stack + source: stack + } + Component.onCompleted: console.log("InnerShadow is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml b/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml new file mode 100644 index 0000000..9ca5ca6 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 +import Qt5Compat.GraphicalEffects + +LevelAdjust { + id: levelAdjust + + property real gammaR: 1.0 + property real gammaG: 1.0 + property real gammaB: 1.0 + + gamma: Qt.vector3d(levelAdjust.gammaR, levelAdjust.gammaG, levelAdjust.gammaG) +} diff --git a/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml b/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml new file mode 100644 index 0000000..6415e5c --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property real gammaR: 1.0 + property real gammaG: 1.0 + property real gammaB: 1.0 + property alias maximumInput: levelAdjust.maximumInput + property alias maximumOutput: levelAdjust.maximumOutput + property alias minimumInput: levelAdjust.minimumInput + property alias minimumOutput: levelAdjust.minimumOutput + property alias cached: levelAdjust.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: true + } + + LevelAdjust { + id: levelAdjust + anchors.fill: stack + source: stack + gamma: Qt.vector3d(root.gammaR, root.gammaG, root.gammaG) + } +} diff --git a/build/qml/QtQuick/Studio/Effects/MaskItem.qml b/build/qml/QtQuick/Studio/Effects/MaskItem.qml new file mode 100644 index 0000000..1ef8202 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/MaskItem.qml @@ -0,0 +1,69 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias invert: blend.invert + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + implicitWidth: blend.source.width + blend.source.x + implicitHeight: blend.source.height + blend.source.y + + visible: false + } + + OpacityMask { + id: blend + anchors.fill: parent + source: root.background + maskSource: root.foreground + + } + + property Item background + property Item foreground + + property Item foo: Item {} + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + } +} + diff --git a/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml new file mode 100644 index 0000000..ac6125b --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml @@ -0,0 +1,38 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +FastBlur { + id: maskedBlur + radius: 32 + property int samples: 0 + Component.onCompleted: console.log("MaskedBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml b/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml new file mode 100644 index 0000000..03e80ab --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml @@ -0,0 +1,68 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias radius: maskedBlur.radius + property int samples: 0 + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + implicitWidth: maskedBlur.source.width + maskedBlur.source.x + implicitHeight: maskedBlur.source.height + maskedBlur.source.y + visible: false + } + + FastBlur { + id: maskedBlur + anchors.fill: parent + source: root.background + maskSource: root.foreground + radius: 32 + samples: 16 + } + + property Item background + property Item foreground + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + console.log("MaskedBlur is not supported with Qt 6") + } +} diff --git a/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml b/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml new file mode 100644 index 0000000..71e4afb --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml @@ -0,0 +1,35 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +OpacityMask { + id: mask +} diff --git a/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml b/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml new file mode 100644 index 0000000..e523d9d --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml @@ -0,0 +1,65 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias invert: mask.invert + property alias cached: mask.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + implicitWidth: mask.source.width + mask.source.x + implicitHeight: mask.source.height + mask.source.y + visible: false + } + + OpacityMask { + id: mask + anchors.fill: parent + source: root.background + maskSource: root.foreground + } + + property Item background + property Item foreground + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + } +} diff --git a/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc new file mode 100644 index 0000000..df2ddc7 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects + + + diff --git a/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml new file mode 100644 index 0000000..c4bd45b --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml @@ -0,0 +1,45 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +FastBlur { + + property int samples: 0 + property real verticalOffset: 0 + property real horizontalOffset: 0 + property real angle: 0 + + id: radialBlur + + transparentBorder: true + + Component.onCompleted: console.log("RadiallBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml b/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml new file mode 100644 index 0000000..92712d8 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias cached: radialBlur.cached + property int samples: 0 + property real verticalOffset: 0 + property real horizontalOffset: 0 + property real transparentBorder: 0 + property real angle: 0 + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + } + + FastBlur { + id: radialBlur + anchors.fill: stack + source: stack + transparentBorder: true + } + + Component.onCompleted: console.log("RadiallBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml new file mode 100644 index 0000000..eb0cc7c --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml @@ -0,0 +1,40 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +FastBlur { + id: recursiveBlur + transparentBorder: true + radius: 8.0 + property int loops: 0 + property int progress: 0 + Component.onCompleted: console.log("RecursiveBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml b/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml new file mode 100644 index 0000000..5d966d1 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property int loops: 0 + property int progress: 0 + property alias radius: recursiveBlur.radius + property alias transparentBorder: recursiveBlur.transparentBorder + property alias cached: recursiveBlur.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + visible: false + } + + FastBlur { + id: recursiveBlur + transparentBorder: true + anchors.fill: stack + source: stack + radius: 8.0 + } + Component.onCompleted: console.log("RecursiveBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/RotationItem.qml b/build/qml/QtQuick/Studio/Effects/RotationItem.qml new file mode 100644 index 0000000..76da4d4 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/RotationItem.qml @@ -0,0 +1,51 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + property alias originX: rotation.origin.x + property alias originY: rotation.origin.y + property alias axisX: rotation.axis.x + property alias axisY: rotation.axis.y + property alias axisZ: rotation.axis.z + property alias angle: rotation.angle + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + transform: Rotation { + id: rotation + origin.x: root.width / 2 + origin.y: root.height / 2 + angle: 45 + } +} diff --git a/build/qml/QtQuick/Studio/Effects/SaturationItem.qml b/build/qml/QtQuick/Studio/Effects/SaturationItem.qml new file mode 100644 index 0000000..cc26a91 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/SaturationItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias desaturation: desaturate.desaturation + property alias cached: desaturate.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + + Item { + id: stack + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + + visible: false + } + + Desaturate { + id: desaturate + source: stack + anchors.fill: stack + + desaturation: 0.5 + } +} + diff --git a/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml b/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml new file mode 100644 index 0000000..7092998 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml @@ -0,0 +1,37 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +ThresholdMask { + id: thresholdMask + spread: 0.2 + threshold: 0.5 +} diff --git a/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml b/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml new file mode 100644 index 0000000..3302f38 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml @@ -0,0 +1,68 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property alias spread: thresholdMask.spread + property alias threshold: thresholdMask.threshold + property alias cached: thresholdMask.cached + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + z: -1 + id: stack + implicitWidth: thresholdMask.source.width + thresholdMask.source.x + implicitHeight: thresholdMask.source.height + thresholdMask.source.y + visible: false + } + + ThresholdMask { + id: thresholdMask + anchors.fill: parent + source: root.background + maskSource: root.foreground + spread: 0.2 + threshold: 0.5 + } + + property Item background + property Item foreground + + Component.onCompleted: { + root.background = stack.children[0] + root.foreground = stack.children[1] + } +} diff --git a/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml new file mode 100644 index 0000000..7742a46 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +FastBlur { + id: zoomBlur + property int zoomBlurLength: 0 + property int zoomBlurSamples: 0 + property real zoomBlurHoffset: 0 + property real zoomBlurVoffset: 0 + transparentBorder: true + Component.onCompleted: console.log("ZoomBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml b/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml new file mode 100644 index 0000000..ff3f5a3 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml @@ -0,0 +1,61 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick +import Qt5Compat.GraphicalEffects + +Item { + id: root + + default property alias contentStack: stack.children + property int zoomBlurLength: 0 + property int zoomBlurSamples: 0 + property real zoomBlurHoffset: 0 + property real zoomBlurVoffset: 0 + property alias cached: zoomBlur.cached + property alias transparentBorder: zoomBlur.transparentBorder + + implicitWidth: Math.max(32, stack.implicitWidth) + implicitHeight: Math.max(32, stack.implicitHeight) + + Item { + id: stack + + implicitWidth: childrenRect.width + childrenRect.x + implicitHeight: childrenRect.height + childrenRect.y + } + + FastBlur { + id: zoomBlur + anchors.fill: stack + source: stack + transparentBorder: true + } + Component.onCompleted: console.log("ZoomBlur is not supported with Qt 6") +} diff --git a/build/qml/QtQuick/Studio/Effects/qmldir b/build/qml/QtQuick/Studio/Effects/qmldir new file mode 100644 index 0000000..7680230 --- /dev/null +++ b/build/qml/QtQuick/Studio/Effects/qmldir @@ -0,0 +1,98 @@ +module QtQuick.Studio.Effects +linktarget QuickStudioEffectsplugin +optional plugin QuickStudioEffectsplugin +classname QtQuick_Studio_EffectsPlugin +designersupported +typeinfo QuickStudioEffects.qmltypes +prefer :/QtQuick/Studio/Effects/ +FastBlurItem 6.0 FastBlurItem.qml +FastBlurItem 1.0 FastBlurItem.qml +GlowItem 6.0 GlowItem.qml +GlowItem 1.0 GlowItem.qml +ZoomBlurItem 6.0 ZoomBlurItem.qml +ZoomBlurItem 1.0 ZoomBlurItem.qml +RadialBlurItem 6.0 RadialBlurItem.qml +RadialBlurItem 1.0 RadialBlurItem.qml +DesaturationItem 6.0 DesaturationItem.qml +DesaturationItem 1.0 DesaturationItem.qml +SaturationItem 6.0 SaturationItem.qml +SaturationItem 1.0 SaturationItem.qml +DirectionalBlurItem 6.0 DirectionalBlurItem.qml +DirectionalBlurItem 1.0 DirectionalBlurItem.qml +ColorOverlayItem 6.0 ColorOverlayItem.qml +ColorOverlayItem 1.0 ColorOverlayItem.qml +DropShadowItem 6.0 DropShadowItem.qml +DropShadowItem 1.0 DropShadowItem.qml +ColorizeItem 6.0 ColorizeItem.qml +ColorizeItem 1.0 ColorizeItem.qml +BrightnessContrastItem 6.0 BrightnessContrastItem.qml +BrightnessContrastItem 1.0 BrightnessContrastItem.qml +HueSaturationItem 6.0 HueSaturationItem.qml +HueSaturationItem 1.0 HueSaturationItem.qml +MaskedBlurItem 6.0 MaskedBlurItem.qml +MaskedBlurItem 1.0 MaskedBlurItem.qml +BlendItem 6.0 BlendItem.qml +BlendItem 1.0 BlendItem.qml +OpacityMaskItem 6.0 OpacityMaskItem.qml +OpacityMaskItem 1.0 OpacityMaskItem.qml +MaskItem 6.0 MaskItem.qml +MaskItem 1.0 MaskItem.qml +RotationItem 6.0 RotationItem.qml +RotationItem 1.0 RotationItem.qml +GaussianBlurItem 6.0 GaussianBlurItem.qml +GaussianBlurItem 1.0 GaussianBlurItem.qml +GammaAdjustItem 6.0 GammaAdjustItem.qml +GammaAdjustItem 1.0 GammaAdjustItem.qml +RecursiveBlurItem 6.0 RecursiveBlurItem.qml +RecursiveBlurItem 1.0 RecursiveBlurItem.qml +ThresholdMaskItem 6.0 ThresholdMaskItem.qml +ThresholdMaskItem 1.0 ThresholdMaskItem.qml +LevelAdjustItem 6.0 LevelAdjustItem.qml +LevelAdjustItem 1.0 LevelAdjustItem.qml +InnerShadowItem 6.0 InnerShadowItem.qml +InnerShadowItem 1.0 InnerShadowItem.qml +DisplaceItem 6.0 DisplaceItem.qml +DisplaceItem 1.0 DisplaceItem.qml +BlendEffect 6.0 BlendEffect.qml +BlendEffect 1.0 BlendEffect.qml +BrightnessContrastEffect 6.0 BrightnessContrastEffect.qml +BrightnessContrastEffect 1.0 BrightnessContrastEffect.qml +ColorizeEffect 6.0 ColorizeEffect.qml +ColorizeEffect 1.0 ColorizeEffect.qml +ColorOverlayEffect 6.0 ColorOverlayEffect.qml +ColorOverlayEffect 1.0 ColorOverlayEffect.qml +DesaturationEffect 6.0 DesaturationEffect.qml +DesaturationEffect 1.0 DesaturationEffect.qml +DirectionalBlurEffect 6.0 DirectionalBlurEffect.qml +DirectionalBlurEffect 1.0 DirectionalBlurEffect.qml +DisplaceEffect 6.0 DisplaceEffect.qml +DisplaceEffect 1.0 DisplaceEffect.qml +DropShadowEffect 6.0 DropShadowEffect.qml +DropShadowEffect 1.0 DropShadowEffect.qml +FastBlurEffect 6.0 FastBlurEffect.qml +FastBlurEffect 1.0 FastBlurEffect.qml +GammaAdjustEffect 6.0 GammaAdjustEffect.qml +GammaAdjustEffect 1.0 GammaAdjustEffect.qml +GaussianBlurEffect 6.0 GaussianBlurEffect.qml +GaussianBlurEffect 1.0 GaussianBlurEffect.qml +GlowEffect 6.0 GlowEffect.qml +GlowEffect 1.0 GlowEffect.qml +HueSaturationEffect 6.0 HueSaturationEffect.qml +HueSaturationEffect 1.0 HueSaturationEffect.qml +InnerShadowEffect 6.0 InnerShadowEffect.qml +InnerShadowEffect 1.0 InnerShadowEffect.qml +LevelAdjustEffect 6.0 LevelAdjustEffect.qml +LevelAdjustEffect 1.0 LevelAdjustEffect.qml +MaskedBlurEffect 6.0 MaskedBlurEffect.qml +MaskedBlurEffect 1.0 MaskedBlurEffect.qml +OpacityMaskEffect 6.0 OpacityMaskEffect.qml +OpacityMaskEffect 1.0 OpacityMaskEffect.qml +RadialBlurEffect 6.0 RadialBlurEffect.qml +RadialBlurEffect 1.0 RadialBlurEffect.qml +RecursiveBlurEffect 6.0 RecursiveBlurEffect.qml +RecursiveBlurEffect 1.0 RecursiveBlurEffect.qml +ThresholdMaskEffect 6.0 ThresholdMaskEffect.qml +ThresholdMaskEffect 1.0 ThresholdMaskEffect.qml +ZoomBlurEffect 6.0 ZoomBlurEffect.qml +ZoomBlurEffect 1.0 ZoomBlurEffect.qml + diff --git a/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml b/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml new file mode 100644 index 0000000..c9a1638 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml @@ -0,0 +1,165 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +pragma Singleton +import QtQuick 2.10 +import QtQuick.Window 2.2 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: root + + property ListModel __filteredModel: ListModel{} + property font font: { + family: "Verdana" + bold: true + } + + property alias cellColor: simulatorWindow.cellColor + property alias borderColor: simulatorWindow.borderColor + property alias textColor: simulatorWindow.textColor + property alias backgroundColor: simulatorWindow.backgroundColor + property alias listView: list + + property alias x: simulatorWindow.x + property alias y: simulatorWindow.y + + property alias width: simulatorWindow.width + property alias height: simulatorWindow.height + + + function show() + { + simulatorWindow.show() + simulatorWindow.raise() + } + + function hide() + { + simulatorWindow.hide() + simulatorWindow.lower() + } + + function __filterModel(idFilter) { + __filteredModel.clear() + + // reset the model when the filter is empty + var alwaysAdd = idFilter === "" + + for (var i = 0; i < EventSystem.model.count; i++) { + if (alwaysAdd || EventSystem.model.get(i).eventId.startsWith(idFilter)) { + __filteredModel.append(EventSystem.model.get(i)) + } + } + } + + property Window eventDialog: Window { + id: simulatorWindow + width: 200 + height: 1280 + color: backgroundColor + + property color cellColor: defaultPalette.mid + property color borderColor: defaultPalette.light + property color textColor: defaultPalette.text + property color backgroundColor: defaultPalette.window + + SystemPalette { + id: defaultPalette + colorGroup: SystemPalette.Active + } + + Component.onCompleted: { + // call the filter with an empty string to populate the list after component is created + root.__filterModel("") + } + Rectangle { + id: inputContainer + color: defaultPalette.shadow + height: 25 + width: 190 + x: 5 + + border { + color: simulatorWindow.borderColor + width: 1 + } + anchors.horizontalCenter: simulatorWindow.horizontalCenter + + TextInput { + id: filterInput + text: qsTr("Filter...") + color: root.textColor + + leftPadding: 5 + verticalAlignment: Text.AlignVCenter + anchors.fill: inputContainer + + selectByMouse: true + KeyNavigation.tab: list + + onTextEdited: { + root.__filterModel(this.text); + } + + onEditingFinished: { + list.focus = true + } + + onActiveFocusChanged: { + if (focus == true) { + if (text === "Filter...") { + filterInput.clear() + } + } else { + if (text === "") { + text = qsTr("Filter...") + } + } + } + } + } + ListView { + id: list + width: inputContainer.width + anchors { + top: inputContainer.bottom + left: inputContainer.left + bottom: parent.bottom + } + clip: true + focus: true + spacing: 2 + + model: root.__filteredModel + delegate: EventSimulatorDelegate { } + + } + } +} diff --git a/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml b/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml new file mode 100644 index 0000000..e592cbd --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml @@ -0,0 +1,79 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Studio.EventSystem 1.0 + +Rectangle { + id: delegateItem + width: 190 + height: 60 + color: simulatorWindow.cellColor + border { + color: simulatorWindow.borderColor + width: 1 + } + + MouseArea { + anchors.fill: parent + onDoubleClicked: { + EventSystem.triggerEvent(eventId) + } + } + + Column { + anchors.centerIn: parent + spacing: 5 + Text { + width: 190 + color: root.textColor + text: eventId + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: root.font.family + } + + Text { + width: 190 + color: root.textColor + text: "[" + shortcut +"]" + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: root.font.family + } + } + + Shortcut { + sequence: shortcut + enabled: list.focus + onActivated : { + EventSystem.triggerEvent(eventId) + } + } +} diff --git a/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc new file mode 100644 index 0000000..cbaf7f9 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator + + + diff --git a/build/qml/QtQuick/Studio/EventSimulator/qmldir b/build/qml/QtQuick/Studio/EventSimulator/qmldir new file mode 100644 index 0000000..764f1e0 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSimulator/qmldir @@ -0,0 +1,12 @@ +module QtQuick.Studio.EventSimulator +linktarget QuickStudioEventSimulatorplugin +optional plugin QuickStudioEventSimulatorplugin +classname QtQuick_Studio_EventSimulatorPlugin +designersupported +typeinfo QuickStudioEventSimulator.qmltypes +prefer :/QtQuick/Studio/EventSimulator/ +singleton EventSimulator 6.0 EventSimulator.qml +singleton EventSimulator 1.0 EventSimulator.qml +EventSimulatorDelegate 6.0 EventSimulatorDelegate.qml +EventSimulatorDelegate 1.0 EventSimulatorDelegate.qml + diff --git a/build/qml/QtQuick/Studio/EventSystem/EventListener.qml b/build/qml/QtQuick/Studio/EventSystem/EventListener.qml new file mode 100644 index 0000000..14aa0a8 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSystem/EventListener.qml @@ -0,0 +1,53 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: root + signal triggered(var eventId, var parameters) + property string eventIds + property var __eventIdList + function __receiveEvent(eventId, parameters) { + if (root.eventIds === eventId || __eventIdList.indexOf(eventId) > -1) + root.triggered(eventId, parameters) + } + + onEventIdsChanged:{ + var split = root.eventIds.split(',').map(item=>item.trim()); + if (split.length > 0) { + __eventIdList = split + } + } + + Component.onCompleted: { + EventSystem.eventTriggered.connect(__receiveEvent) + } +} diff --git a/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml b/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml new file mode 100644 index 0000000..d2e3d83 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml @@ -0,0 +1,58 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +pragma Singleton +import QtQuick 2.10 +import QtQuick.Window 2.2 + +Item { + signal eventTriggered(string eventID, string parameters) + property ListModel model + + function __modelLoaded() + { + model = eventListLoader.item + } + + function init(modelURI) { + eventListLoader.loaded.connect(__modelLoaded) + eventListLoader.source = modelURI + } + + function triggerEvent(eventId) { + for (var i = 0; i < model.count; i++) { + if (model.get(i).eventId === eventId) { + eventTriggered(eventId, model.get(i).parameters) + } + } + } + + Loader { + id: eventListLoader + } +} diff --git a/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc new file mode 100644 index 0000000..4a6d601 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem + + + diff --git a/build/qml/QtQuick/Studio/EventSystem/qmldir b/build/qml/QtQuick/Studio/EventSystem/qmldir new file mode 100644 index 0000000..e987725 --- /dev/null +++ b/build/qml/QtQuick/Studio/EventSystem/qmldir @@ -0,0 +1,12 @@ +module QtQuick.Studio.EventSystem +linktarget QuickStudioEventSystemplugin +optional plugin QuickStudioEventSystemplugin +classname QtQuick_Studio_EventSystemPlugin +designersupported +typeinfo QuickStudioEventSystem.qmltypes +prefer :/QtQuick/Studio/EventSystem/ +singleton EventSystem 6.0 EventSystem.qml +singleton EventSystem 1.0 EventSystem.qml +EventListener 6.0 EventListener.qml +EventListener 1.0 EventListener.qml + diff --git a/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml new file mode 100644 index 0000000..2be3b41 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml @@ -0,0 +1,97 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype AndOperator + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Evaluates two boolean input values and provides the result as output. + + The AndOperator type evaluates two boolean inputs, \l input01 and + \l input02. The \l output is evaluated as \c true if both \l input01 + and \l input02 are evaluated as \c true. + + Designers can use the And Operator type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use the checked state of two \l CheckBox + types to determine the checked state of a third one: + + \code + Rectangle { + CheckBox { + id: checkBox1 + text: qsTr("Check Box 1") + checked: false + } + CheckBox { + id: checkBox2 + text: qsTr("Check Box 2") + } + CheckBox { + id: checkBox3 + text: qsTr("Check Box 3") + checked: andOperator.output + } + AndOperator { + id: andOperator + input02: checkBox2.checked + input01: checkBox1.checked + } + } + \endcode + + \sa OrOperator, NotOperator +*/ + +QtObject { + id: object + +/*! + The first value to evaluate. +*/ + property bool input01: false + +/*! + The second value to evaluate. +*/ + property bool input02: false + +/*! + The result of the evaluation. +*/ + property bool output: object.input01 && object.input02 + +} diff --git a/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml b/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml new file mode 100644 index 0000000..f025b29 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml @@ -0,0 +1,156 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype BidirectionalBinding + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Binds the values of two controls bi-directionally. + + The BidirectionalBinding type binds the values of two controls + together, so that when one value is changed, the other one follows it. + For example, this type could be used to synchronize two sliders or a + slider and checkbox. Typically, it is used to bind a backend value to + a control, such as a slider. + + The \l target01 and \l target02 properties specify the ids of the components + to bind together. The \l property01 and \l property02 properties specify the + names the properties to synchronize. + + Designers can use the BidirectionalBinding type in \QDS instead of writing + JavaScript expressions. + + A \l StringMapper type can be used to add a text property that displays the + value. + + \section1 Example Usage + + In the following example, we bind the values of two \l Slider types + together bidirectionally: + + \code + Rectangle { + Slider { + id: slider + value: 0.5 + } + Slider { + id: slider1 + value: 0.5 + } + + BidrectionalBinding { + id: biDirectBinding + property02: "value" + property01: "value" + target02: slider1 + target01: slider + } + } + \endcode +*/ + +QtObject { + id: object + +/*! + The id of the component to bind to \l target02. +*/ + property QtObject target01 + +/*! + The id of the component to bind to \l target01. +*/ + property QtObject target02 + +/*! + The name of the property to synchronize with \l property02. +*/ + property string property01 + +/*! + The name of the property to synchronize with \l property01. +*/ + property string property02 + + property QtObject __internal: QtObject { + property variant value01 + property variant value02 + + property bool block: false + + onValue01Changed: { + if (__internal.block) + return; + + __internal.block = true; + try { + object.target02[property02] = __internal.value01 + } catch(error) { + } + __internal.block = false; + } + + onValue02Changed: { + if (__internal.block) + return; + + __internal.block = true; + try { + object.target01[property01] = __internal.value02 + } catch(error) { + } + __internal.block = false; + } + } + + property Binding __b01: Binding { + target: __internal + property: "value01" + value: target01[property01] + } + + property Binding __b02: Binding { + target: __internal + property: "value02" + value: target02[property02] + } + + +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml new file mode 100644 index 0000000..512c414 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml @@ -0,0 +1,132 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype MinMaxMapper + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Provides access to values that are out or range. + + The MinMaxMapper type has output values even if the input value is out + of range or too small or big. This enables applying actions to values + even if they are out of range, such as changing a color in a state. + + To access the values of a control, the \l input property of the + minimum-maximum mapper is bound to that of the \c value property + of the control. + + For example, to restrict the maximum value of a slider to 0.60, + regardless of the maximum value set in the slider properties, + we bind the value of the \l input property of the mapper to + the value of the \c value property of the slider and set the value + of the \l maximum property to 0.60. + + The \l outOfRange, \l aboveMaximum and \l belowMinimum properties are set to + \c true if the value of the \l input property is out of range. + For example, in the context of speed, \l aboveMaximum being \c true + would mean \e {too fast}, whereas \l belowMinimum being \c true would + mean \e {too slow}, and \l outOfRange being \c true would mean + \e {either too fast or too slow}. + + Designers can use the Min Max Mapper type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use the MinMaxMapper type to restrict the + maximum value of a \l Slider type to 0.60, regardless of the maximum + value set in the Slider properties: + + \code + Rectangle { + Slider { + id: slider + value: 0.5 + } + MinMaxMapper { + id: minMaxMapper + input: slider.value + maximum: 0.6 + } + } + \endcode +*/ + +QtObject { + id: object + +/*! + The input value. +*/ + property real input: 0 + +/*! + Whether \l input is less than \l minimum. +*/ + property bool belowMinimum: object.input < object.minimum + +/*! + Whether \l input is larger than \l maximum. +*/ + property bool aboveMaximum: object.input > object.maximum + +/*! + Whether \l input is out of range. Returns \c true if \l belowMinimum or + \l aboveMaximum is \c true. +*/ + property bool outOfRange: object.aboveMaximum ||object.belowMinimum + +/*! + The value of \l input. If \l aboveMaximum is \c true, returns the value of + \l maximum. If \l belowMinimum is \c true, returns the value of \l minimum. +*/ + property real output: { + if (object.aboveMaximum) + return object.maximum + + if (object.belowMinimum) + return object.minimum + + return object.input + } + +/*! + The minimum value of \l input. +*/ + property real minimum: 0 + +/*! + The maximum value of \l input. +*/ + property real maximum: 100 +} diff --git a/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml new file mode 100644 index 0000000..01277eb --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml @@ -0,0 +1,85 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype NotOperator + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Evaluates a boolean input value and provides the result as output. + + The NotOperator type evaluates the boolean input \l input. The \l output + value is evaluated as \c true if \l input is evaluated as \c false. + + Designers can use the Not Operator type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use the checked state of a \l CheckBox to + determine the checked state of another one: + + \code + Rectangle { + CheckBox { + id: checkBox1 + text: qsTr("Check Box 1") + checked: false + } + CheckBox { + id: checkBox2 + text: qsTr("Check Box 2") + checked: notOperator.output + } + NotOperator { + id: notOperator + input: checkBox1.checked + } + } + \endcode + + \sa AndOperator, OrOperator +*/ + +QtObject { + id: object + +/*! + The value to evaluate. +*/ + property bool input: false + +/*! + The result of the evaluation. +*/ + property bool output: !object.input +} diff --git a/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml new file mode 100644 index 0000000..b4f3c5a --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml @@ -0,0 +1,98 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype OrOperator + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Evaluates two boolean input values and provides the result as output. + + The OrOperator type evaluates two boolean inputs, \l input01 and \l input02. + The \l output is evaluated as \c true if either \l input01 or \l input02 is + evaluated as \c true. + + Designers can use the Or Operator type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use the checked state of two \l CheckBox + types to determine the checked state of a third one: + + \code + Rectangle { + CheckBox { + id: checkBox1 + text: qsTr("Check Box 1") + checked: false + } + CheckBox { + id: checkBox2 + text: qsTr("Check Box 2") + } + + CheckBox { + id: checkBox3 + text: qsTr("Check Box 3") + checked: orOperator.output + } + + OrOperator { + id: orOperator + input02: checkBox2.checked + input01: checkBox1.checked + } + } + \endcode + + \sa AndOperator, NotOperator +*/ + +QtObject { + id: object + +/*! + The first value to evaluate. +*/ + property bool input01: false + +/*! + The second value to evaluate. +*/ + property bool input02: false + +/*! + The result of the evaluation. +*/ + property bool output: object.input01 || object.input02 +} diff --git a/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc new file mode 100644 index 0000000..0d6be32 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper + + + diff --git a/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml new file mode 100644 index 0000000..cd9a712 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml @@ -0,0 +1,115 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype RangeMapper + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Maps a numerical range to another range, so that the output value + of the second range follows that of the original range. + + The minimum and maximum input and output values are specified as values of + the \l inputMinimum, \l inputMaximum, \l outputMinimum, and \l outputMaximum properties. + The original value is specified as the value of the \l output property. + + For example, if you map input in the range of \c {-1,1} to output in the + range of \c {0,1000}, and the original value changes from -1 to 1, the + output value will change from 0 to 1000. This is useful when remapping + the current frame on the timeline, for example. + + Designers can use the Range Mapper type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use a RangeMapper type to map the value range + from -1 to 1 that is specified for a \l Slider type to a range from 10 to + 1000: + + \code + Rectangle { + Slider { + id: slider + from: -1 + to: 1 + value: -1 + } + RangeMapper { + id: rangeMapper + outputMinimum: 10 + outputMaximum: 1000 + inputMinimum: slider.from + inputMaximum: slider.to + input: slider.value + } + } + \endcode +*/ + +QtObject { + id: object + +/*! + The input value. +*/ + property real input: 0 + +/*! + The output value. +*/ + property real output: { + var slope = (object.outputMaximum - object.outputMinimum) / (object.inputMaximum - object.inputMinimum) + return object.outputMinimum + slope * (object.input - object.inputMinimum) + } + +/*! + The minimum input value. +*/ + property real inputMinimum: 0 + +/*! + The maximum input value. +*/ + property real inputMaximum: 100 + +/*! + The minimum output value. +*/ + property real outputMinimum: 0 + +/*! + The maximum output value. +*/ + property real outputMaximum: 100 + +} diff --git a/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml new file mode 100644 index 0000000..a809f14 --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml @@ -0,0 +1,94 @@ +/**************************************************************************** +** +** Copyright (C) 2020 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.10 + +/*! + \qmltype StringMapper + \inqmlmodule QtQuick.Studio.LogicHelper + \since QtQuick.Studio.LogicHelper 1.0 + \inherits QtObject + + \brief Converts numbers to strings with the defined precision. + + The StringMapper type maps numbers to strings. The string mapper + \l input property is bound to the \c value property of a control that + provides the number and the \l text property of the string mapper is + mapped to the \c text property of type that displays the string. + + Designers can use the String Mapper type in \QDS instead of writing + JavaScript expressions. + + \section1 Example Usage + + In the following example, we use \l Text type to display the numerical + value of a \l Slider type as a string: + + \code + Rectangle { + Slider { + id: slider + value: 0.5 + } + Text { + id: text1 + text: stringMapper.text + } + StringMapper { + id: stringMapper + input: slider.value + } + } + \endcode +*/ + +QtObject { + id: object + +/*! + The value to convert to a string. +*/ + property real input: 0 + +/*! + The number of digits after the decimal separator. +*/ + property int decimals: 2 + +/*! + The \l input value as a string. +*/ + property string text: object.input.toFixed(object.decimals) +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/build/qml/QtQuick/Studio/LogicHelper/qmldir b/build/qml/QtQuick/Studio/LogicHelper/qmldir new file mode 100644 index 0000000..99c024c --- /dev/null +++ b/build/qml/QtQuick/Studio/LogicHelper/qmldir @@ -0,0 +1,22 @@ +module QtQuick.Studio.LogicHelper +linktarget QuickStudioLogicHelperplugin +optional plugin QuickStudioLogicHelperplugin +classname QtQuick_Studio_LogicHelperPlugin +designersupported +typeinfo QuickStudioLogicHelper.qmltypes +prefer :/QtQuick/Studio/LogicHelper/ +BidirectionalBinding 6.0 BidirectionalBinding.qml +BidirectionalBinding 1.0 BidirectionalBinding.qml +RangeMapper 6.0 RangeMapper.qml +RangeMapper 1.0 RangeMapper.qml +MinMaxMapper 6.0 MinMaxMapper.qml +MinMaxMapper 1.0 MinMaxMapper.qml +StringMapper 6.0 StringMapper.qml +StringMapper 1.0 StringMapper.qml +OrOperator 6.0 OrOperator.qml +OrOperator 1.0 OrOperator.qml +AndOperator 6.0 AndOperator.qml +AndOperator 1.0 AndOperator.qml +NotOperator 6.0 NotOperator.qml +NotOperator 1.0 NotOperator.qml + diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml new file mode 100644 index 0000000..785d51c --- /dev/null +++ b/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml @@ -0,0 +1,100 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQml 2.15 +import QtQuick 2.15 + +Text { + id: root + + property real descent: fontMetrics.descent + property real leading: fontMetrics.leading + property real fontHeight: fontMetrics.height + + property real baselineOffset: -999 + + //lineHeight: root.fontHeight - root.descent + root.baselineOffset - root.leading + + Binding on lineHeight { + when: root.baselineOffset !== -999 + value: root.fontHeight - root.descent + root.baselineOffset - root.leading + } + + onLineHeightChanged: { + print("lh") + print(root.baseLineOffset) + } + + FontMetrics { + id: fontMetrics + font: root.font + } + + lineHeightMode: root.baselineOffset !== -999 ? Text.FixedHeight : Text.ProportionalHeight + + width: visible ? implicitWidth : 0 + height: visible ? implicitHeight : 0 + + + property Text __backupText: Text { + id: backupText + visible: false + } + + property Text languageExceptionItem: backupText + onLanguageExceptionItemChanged: { + if (root.__completed) + root.assignException() + } + + property bool __completed: false + + Component.onCompleted: { + root.__backupText.font = root.font + root.__backupText.text = root.text + root.__backupText.color = root.color + root.__backupText.lineHeight = root.lineHeight + root.__backupText.lineHeightMode = root.lineHeightMode + + root.__completed = true + print("start " + root.languageExceptionItem) + root.assignException() + } + + function assignException() { + print("assign") + print(root.languageExceptionItem) + root.font = root.languageExceptionItem.font + root.text = root.languageExceptionItem.text + root.color = root.languageExceptionItem.color + root.lineHeight = root.languageExceptionItem.lineHeight + root.lineHeightMode = root.languageExceptionItem.lineHeightMode + } + +} diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml new file mode 100644 index 0000000..7b21fd3 --- /dev/null +++ b/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml @@ -0,0 +1,65 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQml 2.15 +import QtQuick 2.15 + +Text { + id: root + visible: false + + property bool exceptionAcive: Qt.uiLanguage === root.languageCode + + + property string languageCode + onExceptionAciveChanged: { + root.__setup() + } + + Component.onCompleted: root.__setup() + + function __setup() { + var p = parent + if (parent.languageExceptionItem !== undefined) { + if (root.exceptionAcive) { + parent.languageExceptionItem = root + } else { + if (parent.languageExceptionItem === root) + parent.languageExceptionItem = parent.__backupText + } + } + } + +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:19;width:70} +} +##^##*/ diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml new file mode 100644 index 0000000..444870f --- /dev/null +++ b/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml @@ -0,0 +1,103 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.12 +import QtQuick.Layouts 1.3 + +StackLayout { + id: root + width: childrenRect.width + height: childrenRect.height + + + property int maxIndex: { + var ret = 0 + for (var i = 0; i < root.data.length; i++) + { + if (root.data[i].text !== undefined) + ret++ + } + + return ret + + } + + property int stringIndex: 0 + + onStringIndexChanged: { + setupText() + } + + Component.onCompleted: setupText() + + function setupText() { + var textArray = [] + + for (var i = 0; i < root.data.length; i++) + { + if (root.data[i].text !== undefined) + textArray.push(root.data[i].text) + } + + } + + property string textModel: { + var textArray = "" + + for (var i = 0; i < root.data.length; i++) + { + if (root.data[i].text !== undefined) { + if (textArray === "") + textArray = textArray + root.data[i].text + else + textArray = textArray + 'e\u001f' + 'e\u001d' + root.data[i].text + } + } + + return textArray + } + + property string testString: { + + var textArray = "" + + for (var i = 0; i < root.data.length; i++) + { + if (root.data[i].text !== undefined) + textArray = textArray + (root.data[i].text) + } + + return textArray + } + + + + +} + diff --git a/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc new file mode 100644 index 0000000..b444b6a --- /dev/null +++ b/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText + + + diff --git a/build/qml/QtQuick/Studio/MultiText/qmldir b/build/qml/QtQuick/Studio/MultiText/qmldir new file mode 100644 index 0000000..2cc848c --- /dev/null +++ b/build/qml/QtQuick/Studio/MultiText/qmldir @@ -0,0 +1,14 @@ +module QtQuick.Studio.MultiText +linktarget QuickStudioMultiTextplugin +optional plugin QuickStudioMultiTextplugin +classname QtQuick_Studio_MultiTextPlugin +designersupported +typeinfo QuickStudioMultiText.qmltypes +prefer :/QtQuick/Studio/MultiText/ +MultiTextElement 6.0 MultiTextElement.qml +MultiTextElement 1.0 MultiTextElement.qml +MultiTextItem 6.0 MultiTextItem.qml +MultiTextItem 1.0 MultiTextItem.qml +MultiTextException 6.0 MultiTextException.qml +MultiTextException 1.0 MultiTextException.qml + diff --git a/build/qml/content/App.qml b/build/qml/content/App.qml new file mode 100644 index 0000000..e11cd83 --- /dev/null +++ b/build/qml/content/App.qml @@ -0,0 +1,20 @@ +// Copyright (C) 2021 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import Bolt_Dash +import Backend + +Window { + width: mainScreen.width + height: mainScreen.height + + visible: true + title: "Bolt_Dash" + + Screen01 { + id: mainScreen + } + +} + diff --git a/build/qml/content/BatterySlider.qml b/build/qml/content/BatterySlider.qml new file mode 100644 index 0000000..4b66f6d --- /dev/null +++ b/build/qml/content/BatterySlider.qml @@ -0,0 +1,38 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + width: 60 + height: 350 + readonly property string red: "#e80c0c" + readonly property string green: "#09bd0f" + property double fullness: 0.5; + + function integerToHex(num){ + let hexString = Math.floor(num).toString(16); + if (hexString.length === 1){ + hexString = "0" + hexString; + } + return hexString; + } + + Rectangle { + id: enclosing + x: 0 + y: 0 + width: 60 + height: 350 + border.width: 3 + color: `#${integerToHex(254 - (fullness * 245))}${integerToHex(12+(fullness*177))}${integerToHex(13+(fullness*-2))}`; + } + + Rectangle { + id: level + x: 0 + y: 0 + width: 60 + height: 350-(350*fullness) + color: "white" + border.width: 3 + } +} diff --git a/build/qml/content/Screen01.ui.qml b/build/qml/content/Screen01.ui.qml new file mode 100644 index 0000000..a8cdfc9 --- /dev/null +++ b/build/qml/content/Screen01.ui.qml @@ -0,0 +1,224 @@ + +/* +This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. +It is supposed to be strictly declarative and only uses a subset of QML. If you edit +this file manually, you might introduce QML code that is not supported by Qt Design Studio. +Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. +*/ +import QtQuick 6.2 +import QtQuick.Controls 6.2 +import Bolt_Dash +import Backend + +Rectangle { + id: rectangle + width: Constants.width + height: Constants.height + + color: Constants.backgroundColor + + readonly property int textLabelY: 435 + readonly property int sliderY: 175 + readonly property int valueLabelY: textLabelY+20 + + Speedometer { + id: speedometer + fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM + x: 50 + y: 24 + } + + Backend { + id: backend + motorTemp: 0 + auxVoltage: 0 + auxPercent: 0 + packSOC: 0 + highCellTemp: 0 + lowCellTemp: 0 + bmsTemp: 0 + motorSpeed: 0 + bikeSpeed: 0 + } + + // Remove for production + // Slider { + // id: slider + // x: -274 + // y: 209 + // width: 600 + // height: 48 + // scale: 0.5 + // rotation: -90 + // value: 0.5 + // } + + BatterySlider { + id: packSlider + x: 28 + y: sliderY + scale: 0.5 + fullness: backend.packSOC // Percent to decimal + } + + BatterySlider { + id: auxSlider + x: 98 + y: sliderY + scale: 0.5 + fullness: backend.auxPercent // Percent to decimal + } + + Text { + id: packLabel + x: 36 + y: textLabelY + width: 48 + height: 29 + text: qsTr("PACK") + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: packLabel2 + x: 36 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1\%").arg(Math.round(backend.packSOC * 100)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: auxLabel + x: 104 + y: textLabelY + width: 48 + height: 29 + text: qsTr("AUX") + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + + Text { + id: auxLabel2 + x: 104 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1\%").arg(Math.round(backend.auxPercent * 100)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + TempSlider { + id: packTempSlider + x: 715 + y: sliderY + scale: 0.5 + fullness: (backend.highCellTemp+backend.lowCellTemp) / 200 // Abosulte max of 100C and divide by 2 for avg + } + + Text { + id: packTempLabel + x: 723 + y: textLabelY + width: 48 + height: 29 + text: qsTr("PACK") + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: packTempLabel2 + x: 723 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round((backend.highCellTemp+backend.lowCellTemp) / 2)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + TempSlider { + id: mCTempSlider + x: 644 + y: sliderY + scale: 0.5 + fullness: backend.mcTemp / 100 // Abosulte max of 100C + } + + Text { + id: mcTempLabel + x: 652 + y: textLabelY + width: 48 + height: 29 + text: qsTr("MC") + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: mcTempLabel2 + x: 652 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round(backend.mcTemp)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + TempSlider { + id: motorTempSlider + x: 568 + y: sliderY + scale: 0.5 + fullness: backend.motorTemp / 115 // Abosulte max of 115C + } + + Text { + id: motorTempLabel + x: 572 + y: textLabelY + width: 48 + height: 29 + text: qsTr("MOTOR") + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: motorTempLabel2 + x: 572 + y: valueLabelY + width: 48 + height: 29 + text: qsTr("%1C").arg(Math.round(backend.motorTemp)) + font.pixelSize: 20 + horizontalAlignment: Text.AlignHCenter + } + + Text { + id: speedoLabel + x: 263 + y: 105 + width: 274 + height: 160 + text: qsTr(backend.bikeSpeed) + font.pixelSize: 125 + horizontalAlignment: Text.AlignHCenter + font.family: "Nasalization" + } + + WarningSymbol { + id: warningSymbol + x: 626 + y: 127 + } +} diff --git a/build/qml/content/Speedometer.qml b/build/qml/content/Speedometer.qml new file mode 100644 index 0000000..00506ea --- /dev/null +++ b/build/qml/content/Speedometer.qml @@ -0,0 +1,46 @@ +/* +This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. +It is supposed to be strictly declarative and only uses a subset of QML. If you edit +this file manually, you might introduce QML code that is not supported by Qt Design Studio. +Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. +*/ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Shapes 2.15 +import Bolt_Dash 1.0 +import QtQuick.Studio.Components + + +Item { + visible: true + id: container + width: 700 + height: 75 + property double fullness: 0.5; + + Connections { + target: container + onSpeedoPercentChanged: { + curveCanvas.requestPaint(); + } + } + + Rectangle { + id: root + width: parent.width + height: parent.height + radius: 10 + border.color: "#616161" + border.width: 10 + + Rectangle { + id: rectangle + x: 10 + y: 10 + width: 680*fullness + height: 55 + color: "#0c00ff" + } + } +} + diff --git a/build/qml/content/TempSlider.qml b/build/qml/content/TempSlider.qml new file mode 100644 index 0000000..bca903b --- /dev/null +++ b/build/qml/content/TempSlider.qml @@ -0,0 +1,38 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + width: 60 + height: 350 + readonly property string red: "#e80c0c" + readonly property string green: "#09bd0f" + property double fullness: 0.5; + + function integerToHex(num){ + let hexString = Math.floor(num).toString(16); + if (hexString.length === 1){ + hexString = "0" + hexString; + } + return hexString; + } + + Rectangle { + id: enclosing + x: 0 + y: 0 + width: 60 + height: 350 + border.width: 3 + color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; + } + + Rectangle { + id: level + x: 0 + y: 0 + width: 60 + height: 350-(350*fullness) + color: "white" + border.width: 3 + } +} diff --git a/build/qml/content/WarningSymbol.qml b/build/qml/content/WarningSymbol.qml new file mode 100644 index 0000000..3cf02f4 --- /dev/null +++ b/build/qml/content/WarningSymbol.qml @@ -0,0 +1,19 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + width: 100 + height: 100 + + Rectangle { + id: rectangle + x: 0 + y: 0 + width: 100 + height: 100 + color: "red" + border.color: "black" + border.width: 7 + radius: 15 + } +} diff --git a/build/qml/content/content_qml_module_dir_map.qrc b/build/qml/content/content_qml_module_dir_map.qrc new file mode 100644 index 0000000..93093db --- /dev/null +++ b/build/qml/content/content_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/qml/content + + + diff --git a/build/qml/content/fonts/fonts.txt b/build/qml/content/fonts/fonts.txt new file mode 100644 index 0000000..ab96122 --- /dev/null +++ b/build/qml/content/fonts/fonts.txt @@ -0,0 +1 @@ +Fonts in this folder are loaded automatically. diff --git a/build/qml/content/fonts/nasalization-rg.otf b/build/qml/content/fonts/nasalization-rg.otf new file mode 100644 index 0000000000000000000000000000000000000000..ce4625f27fd3ea52ecc65b3b52946e8cd9e845d6 GIT binary patch literal 89220 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 literal 0 HcmV?d00001 diff --git a/build/qml/content/qmldir b/build/qml/content/qmldir new file mode 100644 index 0000000..0541cca --- /dev/null +++ b/build/qml/content/qmldir @@ -0,0 +1,13 @@ +module content +linktarget contentplugin +optional plugin contentplugin +classname contentPlugin +typeinfo content.qmltypes +prefer :/content/ +App 1.0 App.qml +Screen01 1.0 Screen01.ui.qml +Speedometer 1.0 Speedometer.qml +BatterySlider 1.0 BatterySlider.qml +TempSlider 1.0 TempSlider.qml +WarningSymbol 1.0 WarningSymbol.qml + diff --git a/build/qmltypes/Bolt_DashApp_foreign_types.txt b/build/qmltypes/Bolt_DashApp_foreign_types.txt new file mode 100644 index 0000000..cd0fd5f --- /dev/null +++ b/build/qmltypes/Bolt_DashApp_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json \ No newline at end of file From c2a64644df707db7d94bc4a47af4ea42a2d1f619 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:11:31 -0400 Subject: [PATCH 019/165] Oops shouldnt add build folder --- .../api/v1/query/client-vscode/query.json | 1 - .../reply/cache-v2-09572c2a4037f1c266b0.json | 6671 ----------------- .../cmakeFiles-v1-256c4d2247a2cba5e778.json | 4959 ------------ .../codemodel-v2-ad2e60b2d5fa1ddbf7d9.json | 1931 ----- ...irectory-.-Debug-47816394be0d82548d3c.json | 45 - ...s.ds-build-Debug-45915f4ed77ac65fb59f.json | 14 - ...-build.src-Debug-086a1021909f660ac8f0.json | 14 - ...rc.imports-Debug-6ae157d3befc2d39f7b0.json | 14 - ...pplication-Debug-e11a881a4fda21f1b735.json | 14 - ...components-Debug-4293b42b57a71d3edc40.json | 14 - ...ffects_qt6-Debug-e6fb1a94da029e11c833.json | 14 - ...s.flowview-Debug-053280cd8c5d79e97027.json | 14 - ...ogichelper-Debug-695ea36ef5b701d62d76.json | 14 - ....multitext-Debug-9316be53bba37f42017a.json | 14 - ...orts.tools-Debug-8b6400d24bd3c996d3e7.json | 14 - ...tsimulator-Debug-22fca08e32e75018a8c7.json | 14 - ...ventsystem-Debug-efc5c2a7251938dd6f45.json | 14 - ...ry-content-Debug-61a361743d88a3b42c45.json | 14 - ...ry-imports-Debug-615074570c3908afab44.json | 14 - ...ts.Backend-Debug-ce54a73fda8314d5dfb3.json | 14 - ....Bolt_Dash-Debug-826bc3c800d0ab2caed0.json | 14 - .../reply/index-2024-04-03T21-01-57-0879.json | 132 - ...et-Backend-Debug-de734fde861fd851f012.json | 114 - ...kendPlugin-Debug-eacb7cbe9c7a6ef2da10.json | 568 -- ...in_autogen-Debug-a73dfb3a4ea3a348cd52.json | 62 - ...extraction-Debug-a9feb18d590cb4415c47.json | 107 - ...in_qmllint-Debug-82a4fd9208fabd1fea3a.json | 98 - ...llint_json-Debug-d229ff952a0acc21b751.json | 98 - ...int_module-Debug-2fcb4aca214837a47999.json | 98 - ...gistration-Debug-a5029b34c5389525c0fe.json | 112 - ...uginplugin-Debug-964102888d1d9a6883d7.json | 369 - ...in_autogen-Debug-ddef841ea250b6451802.json | 62 - ...nd_autogen-Debug-9983c5ff9bcf52fc6d4e.json | 62 - ...-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json | 532 -- ...lt_DashApp-Debug-763ba49338c5ff5ad7aa.json | 2908 ------- ...pp_autogen-Debug-51d62c3be5509ceb0bb5.json | 120 - ...extraction-Debug-8931ade274fe100feea2.json | 119 - ...importscan-Debug-d571df3a3563cde60aba.json | 120 - ...pp_qmllint-Debug-ab28db9e596282492f2e.json | 110 - ...llint_json-Debug-9d88dd62a7b7725ae6eb.json | 110 - ...int_module-Debug-0fbd777caab43d73f488.json | 110 - ...gistration-Debug-3bed5478be85aebe4448.json | 124 - ...pp_tooling-Debug-26dba12b3615cfa9bb85.json | 104 - ...sh_autogen-Debug-c529f7cb8e24c653ee03.json | 69 - ...extraction-Debug-3a28b0c0b06e75c1c7ef.json | 107 - ...h_qmlcache-Debug-5daa185e6fb46a1289a0.json | 295 - ...he_autogen-Debug-d3192055f8042e40da36.json | 69 - ...sh_qmllint-Debug-6e5028162500695ce336.json | 98 - ...llint_json-Debug-6b58b157210c30b8fafa.json | 98 - ...int_module-Debug-b6cc991c9fe54460ca33.json | 98 - ...gistration-Debug-51834e0f945bd55cf657.json | 112 - ...esources_1-Debug-98f13cbbddb59674fee2.json | 254 - ...esources_2-Debug-d5178de269ed3fd32777.json | 261 - ...sh_tooling-Debug-2c1722a7c9fd34e67a24.json | 134 - ...Dashplugin-Debug-9a32297ce09472e7765e.json | 266 - ...in_autogen-Debug-b1e80763c9cddaac16c3.json | 62 - ...lugin_init-Debug-cb0ae3a09b6af6e52fed.json | 252 - ...it_autogen-Debug-4045a4e549874d0f3b94.json | 62 - ...t-FlowView-Debug-9ae8992f3002d4d4605a.json | 1179 --- ...ew_autogen-Debug-067fd34decd4a498dab5.json | 69 - ...extraction-Debug-f6560e536d24d854fec1.json | 107 - ...w_qmlcache-Debug-7859b0f95607044a1e25.json | 295 - ...he_autogen-Debug-de2a1ab1915411cca2ee.json | 69 - ...ew_qmllint-Debug-48b8342c2cd5f2ffef0e.json | 98 - ...llint_json-Debug-a80f46698059d9ff08bf.json | 98 - ...int_module-Debug-7b6f6e166e39a451a9c2.json | 98 - ...gistration-Debug-9113cd9ee0f901fd056b.json | 112 - ...esources_1-Debug-03ca1597fbe0116b12ed.json | 261 - ...ew_tooling-Debug-8926159527a4d8731d7a.json | 414 - ...Viewplugin-Debug-a4ac85a95193ab0025c6.json | 262 - ...in_autogen-Debug-6495605358fb078d5661.json | 62 - ...lugin_init-Debug-7d392c5f9e62ab493e00.json | 252 - ...it_autogen-Debug-7c1f13be59c3a57768ca.json | 62 - ...pplication-Debug-69deb348e3fbce864c1a.json | 424 -- ...on_autogen-Debug-83d5b0f03cdde7888ef0.json | 62 - ...extraction-Debug-f99b0de1d5e16bb44833.json | 107 - ...on_qmllint-Debug-73045ea851da794fb785.json | 98 - ...llint_json-Debug-d9ba4d345b6cfec5a49e.json | 98 - ...int_module-Debug-ebb9d160c568c013044e.json | 98 - ...gistration-Debug-d2343964a719307788ee.json | 112 - ...esources_1-Debug-4d9fa217efc56ec99928.json | 266 - ...tionplugin-Debug-f8fdecab3cfcf03d05fe.json | 258 - ...in_autogen-Debug-239bcab3fe9c863ed150.json | 62 - ...lugin_init-Debug-bf12920fa9218d95643c.json | 252 - ...it_autogen-Debug-41959f83d5f8f1ab3398.json | 62 - ...Components-Debug-eff245e7a5d85a1b2d2d.json | 838 --- ...ts_autogen-Debug-687fff37523f13c88106.json | 69 - ...extraction-Debug-e69426057529e6b4a3bc.json | 107 - ...s_qmlcache-Debug-0e7e33519be5e45a818d.json | 295 - ...he_autogen-Debug-80d7a13e7128a08d7745.json | 69 - ...ts_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json | 98 - ...llint_json-Debug-e43e87a498510cfaf755.json | 98 - ...int_module-Debug-df7a571606bf13e004f3.json | 98 - ...gistration-Debug-c2eda95b9f70b6634345.json | 112 - ...esources_1-Debug-c94cca8847514c8a1fec.json | 254 - ...esources_2-Debug-e54cd9e14e804f1c1d37.json | 261 - ...ts_tooling-Debug-a8b0564709ac0090c2bf.json | 260 - ...entsplugin-Debug-f80a6a31b26a94fe0aee.json | 266 - ...in_autogen-Debug-56b3fc91987160e8aef4.json | 62 - ...lugin_init-Debug-e112112a1e3249549eb4.json | 252 - ...it_autogen-Debug-7e45ee8db2f603f2458f.json | 62 - ...dioEffects-Debug-b61e1c52a2c845888d2e.json | 1926 ----- ...ts_autogen-Debug-bb0d5aa4545d8a4633af.json | 69 - ...extraction-Debug-b34c65f0d2d61d856036.json | 107 - ...s_qmlcache-Debug-62f627c5be6418f51d1b.json | 295 - ...he_autogen-Debug-ce2c11ed80bd1dcda9ea.json | 69 - ...ts_qmllint-Debug-0edc9dd54ea41321d716.json | 98 - ...llint_json-Debug-b8c4d7a6bc373e3dc1d4.json | 98 - ...int_module-Debug-3a1719c05bb9e08a130d.json | 98 - ...gistration-Debug-b8df36b9d880b694a36f.json | 112 - ...esources_1-Debug-f34eeba0c68a8f05abfc.json | 254 - ...esources_2-Debug-62ca9f6cf3fcd7f1561e.json | 261 - ...ts_tooling-Debug-fff09cf476db79d0f6e7.json | 708 -- ...ectsplugin-Debug-809afbdeb69fd5f05d22.json | 266 - ...in_autogen-Debug-00465e4e7695e405281c.json | 62 - ...lugin_init-Debug-042ac96d4fa8f103dcb6.json | 252 - ...it_autogen-Debug-7bd53f2c68a900023b06.json | 62 - ...tSimulator-Debug-52e95ad6290712ddbac3.json | 464 -- ...or_autogen-Debug-d912ed5d2e105e4e0e04.json | 69 - ...extraction-Debug-0a8051d41ec498dea305.json | 107 - ...r_qmlcache-Debug-3ffc8954632edd193df6.json | 295 - ...he_autogen-Debug-c80991485872513d3d44.json | 69 - ...or_qmllint-Debug-0c241128e2f2a58eec9a.json | 98 - ...llint_json-Debug-56c4fdfad7b0da73835a.json | 98 - ...int_module-Debug-e80deb3c0914e8dca6cb.json | 98 - ...gistration-Debug-dbf8444e331eed1664ab.json | 112 - ...esources_1-Debug-83ef65e4aead9500cf57.json | 254 - ...esources_2-Debug-d106a9ea47011dbe5854.json | 261 - ...or_tooling-Debug-1414a517ad0c98cec378.json | 106 - ...atorplugin-Debug-f0b6d32b33f4d00f0424.json | 266 - ...in_autogen-Debug-882c8979d7a1747d5776.json | 62 - ...lugin_init-Debug-292cd102b0716f173b4a.json | 252 - ...it_autogen-Debug-f6260cf45c3fb17d20bb.json | 62 - ...ventSystem-Debug-68afb462c691cffab0f1.json | 464 -- ...em_autogen-Debug-dec4d99f7c4a991467d1.json | 69 - ...extraction-Debug-ab6db483d42db8625245.json | 107 - ...m_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json | 295 - ...he_autogen-Debug-63db6734c3b36083442c.json | 69 - ...em_qmllint-Debug-88de39be09e18070471e.json | 98 - ...llint_json-Debug-15ea54571422a3cf5060.json | 98 - ...int_module-Debug-721c01d255a48e2e1e83.json | 98 - ...gistration-Debug-fea30a225b653475d1d5.json | 112 - ...esources_1-Debug-9fd339c044320add5c5b.json | 254 - ...esources_2-Debug-b0828fb1f90f23da9bde.json | 261 - ...em_tooling-Debug-8bfb1c432f951116dcc5.json | 106 - ...stemplugin-Debug-09ee66272cb237d4dc05.json | 266 - ...in_autogen-Debug-f2c706e44f37dadacbc8.json | 62 - ...lugin_init-Debug-343f1ca3f23b6c952248.json | 252 - ...it_autogen-Debug-f357766959be7cb64efc.json | 62 - ...ogicHelper-Debug-9ff9fbe3473d587ac8ab.json | 634 -- ...er_autogen-Debug-acac8d55f919d532bccc.json | 69 - ...extraction-Debug-ac6cad20fedbaff6a85e.json | 107 - ...r_qmlcache-Debug-0bc778a7c47475f51f2a.json | 295 - ...he_autogen-Debug-8bb53d06198a3d2a85d5.json | 69 - ...er_qmllint-Debug-d29c6f8e4b91aede32ce.json | 98 - ...llint_json-Debug-cc144d47959645fff87f.json | 98 - ...int_module-Debug-2bcae026fba5ff56aa27.json | 98 - ...gistration-Debug-0fb18cab5fc606ee92e3.json | 112 - ...esources_1-Debug-56ecef5c12b368c68831.json | 254 - ...esources_2-Debug-be6195f0002b6bc280e6.json | 261 - ...er_tooling-Debug-ba2aa88d61332cd2f7b5.json | 176 - ...lperplugin-Debug-d3b9d020db127173445f.json | 266 - ...in_autogen-Debug-0dd188261b123c2bb9b1.json | 62 - ...lugin_init-Debug-7eac1bd077b590d87984.json | 252 - ...it_autogen-Debug-6af1ce9827b44f4e66fb.json | 62 - ...oMultiText-Debug-2e298304b037ed580c9b.json | 498 -- ...xt_autogen-Debug-c66703cd494d3cdb0440.json | 69 - ...extraction-Debug-438c699ceaad7f4cb98b.json | 107 - ...t_qmlcache-Debug-8999543ed32aa3ead06a.json | 295 - ...he_autogen-Debug-8fea4b04a9bbfdb2caa5.json | 69 - ...xt_qmllint-Debug-af06fbfe1b2ed442f15d.json | 98 - ...llint_json-Debug-0ddbeb9ded609fc21ea8.json | 98 - ...int_module-Debug-4008ea7ea2855164c174.json | 98 - ...gistration-Debug-0d1b59ff4ea71708ab01.json | 112 - ...esources_1-Debug-b38c819cb562f99b94c1.json | 254 - ...esources_2-Debug-8579ffd664f94d780c71.json | 261 - ...xt_tooling-Debug-e27d6bd0c3154db9e024.json | 120 - ...Textplugin-Debug-f3a6275f7f88c39070b3.json | 266 - ...in_autogen-Debug-9a2e57708f39f2f164dc.json | 62 - ...lugin_init-Debug-ef0a0dd61b083408cdf1.json | 252 - ...it_autogen-Debug-11bfedfb7e56a6e43d8d.json | 62 - ...ll_qmllint-Debug-0f40c30e93bae5da3a81.json | 512 -- ...llint_json-Debug-d117ee47724a917c25a6.json | 512 -- ...int_module-Debug-0c0ad4e6c76d40d3903a.json | 512 -- ...istrations-Debug-cc8b39e42111f0ac0ac2.json | 366 - ...et-content-Debug-c060ad8002349d7d4719.json | 612 -- ...nt_autogen-Debug-11f39ff5c1526eb6e4ea.json | 69 - ...extraction-Debug-fb25e892c14063686b39.json | 107 - ...t_qmlcache-Debug-25ce992711465a39f5da.json | 295 - ...he_autogen-Debug-80d799f57b14979f3281.json | 69 - ...nt_qmllint-Debug-c0b18f91f25a4a3449ea.json | 98 - ...llint_json-Debug-d7deaf355c4ba8b44fcc.json | 98 - ...int_module-Debug-2271d96a817e5f6826e3.json | 98 - ...gistration-Debug-6619c21d07987003e504.json | 112 - ...esources_1-Debug-4f3509f7c6d83ef1bc3e.json | 254 - ...esources_2-Debug-a6b69f41e3b5ca110ed3.json | 261 - ...nt_tooling-Debug-573ff9ff0f4b830ba1d7.json | 190 - ...tentplugin-Debug-e8dbacf35574156a146d.json | 266 - ...in_autogen-Debug-3519fac822a7f673e653.json | 62 - ...lugin_init-Debug-52add43ca8eedc831dec.json | 252 - ...it_autogen-Debug-88e21ac6d7d4eece2512.json | 62 - ...al_plugins-Debug-a1ab1f9aa73790d1a746.json | 76 - .../toolchains-v1-3df0db7d651d973da145.json | 61 - build/.qt/QtDeploySupport.cmake | 66 - .../.qt/deploy_qml_imports/Bolt_DashApp.cmake | 20 - .../Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp | 15 - build/.rcc/Bolt_DashApp_raw_qml_0.qrc | 6 - build/.rcc/configuration.qrc | 6 - build/.rcc/qmake_Main.qrc | 6 - .../Bolt_DashApp_qml_loader_file_list.rsp | 1 - build/.rcc/qmllint/Bolt_DashApp.rsp | 14 - build/.rcc/qmllint/Bolt_DashApp_json.rsp | 16 - build/.rcc/qmllint/Bolt_DashApp_module.rsp | 14 - .../CMakeFiles/3.27.8/CMakeCXXCompiler.cmake | 85 - .../3.27.8/CMakeDetermineCompilerABI_CXX.bin | Bin 16984 -> 0 bytes build/CMakeFiles/3.27.8/CMakeSystem.cmake | 15 - .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 --- .../3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 1712 -> 0 bytes .../Bolt_DashApp.dir/DependInfo.cmake | 32 - build/CMakeFiles/Bolt_DashApp.dir/build.make | 350 - .../Bolt_DashApp.dir/cmake_clean.cmake | 36 - .../Bolt_DashApp.dir/compiler_depend.make | 2 - .../Bolt_DashApp.dir/compiler_depend.ts | 2 - build/CMakeFiles/Bolt_DashApp.dir/depend.make | 2 - build/CMakeFiles/Bolt_DashApp.dir/flags.make | 12 - build/CMakeFiles/Bolt_DashApp.dir/link.txt | 1 - .../CMakeFiles/Bolt_DashApp.dir/progress.make | 17 - .../Bolt_DashApp_autogen.dir/AutogenInfo.json | 1137 --- .../Bolt_DashApp_autogen.dir/DependInfo.cmake | 18 - .../Bolt_DashApp_autogen.dir/build.make | 97 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_autogen.dir/progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../Bolt_DashApp_qmlimportscan.dir/build.make | 95 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../Bolt_DashApp_qmllint.dir/DependInfo.cmake | 18 - .../Bolt_DashApp_qmllint.dir/build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../Bolt_DashApp_qmllint_json.dir/build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 119 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../Bolt_DashApp_tooling.dir/DependInfo.cmake | 18 - .../Bolt_DashApp_tooling.dir/build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_tooling.dir/progress.make | 2 - build/CMakeFiles/CMakeConfigureLog.yaml | 295 - .../CMakeDirectoryInformation.cmake | 16 - build/CMakeFiles/CMakeRuleHashes.txt | 389 - build/CMakeFiles/Makefile.cmake | 1222 --- build/CMakeFiles/Makefile2 | 5438 -------------- build/CMakeFiles/TargetDirectories.txt | 282 - build/CMakeFiles/cmake.check_cache | 1 - build/CMakeFiles/progress.marks | 1 - build/Makefile | 2925 -------- .../CMakeDirectoryInformation.cmake | 16 - .../_deps/ds-build/CMakeFiles/progress.marks | 1 - build/_deps/ds-build/Makefile | 189 - build/_deps/ds-build/cmake_install.cmake | 44 - .../CMakeDirectoryInformation.cmake | 16 - .../ds-build/src/CMakeFiles/progress.marks | 1 - build/_deps/ds-build/src/Makefile | 189 - build/_deps/ds-build/src/cmake_install.cmake | 44 - .../CMakeDirectoryInformation.cmake | 16 - .../src/imports/CMakeFiles/progress.marks | 1 - build/_deps/ds-build/src/imports/Makefile | 189 - .../.rcc/qmake_QtQuick_Studio_Application.qrc | 6 - .../.rcc/qmllint/QuickStudioApplication.rsp | 9 - .../qmllint/QuickStudioApplication_json.rsp | 11 - .../qmllint/QuickStudioApplication_module.rsp | 10 - .../CMakeDirectoryInformation.cmake | 16 - .../DependInfo.cmake | 27 - .../QuickStudioApplication.dir/build.make | 171 - .../cmake_clean.cmake | 22 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioApplication.dir/depend.make | 2 - .../QuickStudioApplication.dir/flags.make | 12 - .../QuickStudioApplication.dir/link.txt | 2 - .../QuickStudioApplication.dir/progress.make | 8 - .../AutogenInfo.json | 118 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 87 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 116 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 20 - .../build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../QuickStudioApplicationplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 107 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 110 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../application/CMakeFiles/progress.marks | 1 - .../ds-build/src/imports/application/Makefile | 585 -- ...lugin_QtQuick_Studio_ApplicationPlugin.cpp | 23 - .../QuickStudioApplicationplugin_init.cpp | 2 - .../imports/application/cmake_install.cmake | 39 - ...uickstudioapplication_debug_metatypes.json | 0 .../QuickStudioApplication_foreign_types.txt | 1 - .../ds-build/src/imports/cmake_install.cmake | 74 - .../.rcc/QuickStudioComponents_raw_qml_0.qrc | 18 - .../.rcc/qmake_QtQuick_Studio_Components.qrc | 6 - ...kStudioComponents_qml_loader_file_list.rsp | 13 - .../.rcc/qmllint/QuickStudioComponents.rsp | 24 - .../qmllint/QuickStudioComponents_json.rsp | 26 - .../qmllint/QuickStudioComponents_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../DependInfo.cmake | 39 - .../QuickStudioComponents.dir/build.make | 505 -- .../cmake_clean.cmake | 59 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioComponents.dir/depend.make | 2 - .../QuickStudioComponents.dir/flags.make | 12 - .../QuickStudioComponents.dir/link.txt | 2 - .../QuickStudioComponents.dir/progress.make | 33 - .../AutogenInfo.json | 129 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 141 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 101 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 101 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 101 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 119 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 148 - .../cmake_clean.cmake | 20 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 14 - .../DependInfo.cmake | 20 - .../build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../QuickStudioComponentsplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 136 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 141 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../all_qmllint.dir/DependInfo.cmake | 18 - .../CMakeFiles/all_qmllint.dir/build.make | 83 - .../all_qmllint.dir/cmake_clean.cmake | 5 - .../all_qmllint.dir/compiler_depend.make | 2 - .../all_qmllint.dir/compiler_depend.ts | 2 - .../CMakeFiles/all_qmllint.dir/progress.make | 1 - .../all_qmllint_json.dir/DependInfo.cmake | 18 - .../all_qmllint_json.dir/build.make | 83 - .../all_qmllint_json.dir/cmake_clean.cmake | 5 - .../all_qmllint_json.dir/compiler_depend.make | 2 - .../all_qmllint_json.dir/compiler_depend.ts | 2 - .../all_qmllint_json.dir/progress.make | 1 - .../all_qmllint_module.dir/DependInfo.cmake | 18 - .../all_qmllint_module.dir/build.make | 83 - .../all_qmllint_module.dir/cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../all_qmllint_module.dir/compiler_depend.ts | 2 - .../all_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../all_qmltyperegistrations.dir/build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../components/CMakeFiles/progress.marks | 1 - .../ds-build/src/imports/components/Makefile | 1096 --- ...plugin_QtQuick_Studio_ComponentsPlugin.cpp | 23 - .../QuickStudioComponentsplugin_init.cpp | 2 - .../imports/components/cmake_install.cmake | 39 - ...quickstudiocomponents_debug_metatypes.json | 0 .../QuickStudioComponents_foreign_types.txt | 1 - .../.rcc/QuickStudioEffects_raw_qml_0.qrc | 50 - .../.rcc/qmake_QtQuick_Studio_Effects.qrc | 6 - ...uickStudioEffects_qml_loader_file_list.rsp | 45 - .../.rcc/qmllint/QuickStudioEffects.rsp | 56 - .../.rcc/qmllint/QuickStudioEffects_json.rsp | 58 - .../qmllint/QuickStudioEffects_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../QuickStudioEffects.dir/DependInfo.cmake | 71 - .../QuickStudioEffects.dir/build.make | 1369 ---- .../QuickStudioEffects.dir/cmake_clean.cmake | 155 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../QuickStudioEffects.dir/compiler_depend.ts | 2 - .../QuickStudioEffects.dir/depend.make | 2 - .../QuickStudioEffects.dir/flags.make | 12 - .../QuickStudioEffects.dir/link.txt | 2 - .../QuickStudioEffects.dir/progress.make | 97 - .../AutogenInfo.json | 193 - .../DependInfo.cmake | 18 - .../QuickStudioEffects_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 205 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../QuickStudioEffects_qmllint.dir/build.make | 133 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 133 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 133 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 151 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../QuickStudioEffects_tooling.dir/build.make | 308 - .../cmake_clean.cmake | 52 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 46 - .../DependInfo.cmake | 20 - .../QuickStudioEffectsplugin.dir/build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioEffectsplugin.dir/depend.make | 2 - .../QuickStudioEffectsplugin.dir/flags.make | 12 - .../QuickStudioEffectsplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 200 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 205 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../effects_qt6/CMakeFiles/progress.marks | 1 - .../ds-build/src/imports/effects_qt6/Makefile | 1900 ----- ...ctsplugin_QtQuick_Studio_EffectsPlugin.cpp | 23 - .../QuickStudioEffectsplugin_init.cpp | 2 - .../imports/effects_qt6/cmake_install.cmake | 39 - ...qt6quickstudioeffects_debug_metatypes.json | 0 .../QuickStudioEffects_foreign_types.txt | 1 - .../flowview/.rcc/FlowView_raw_qml_0.qrc | 29 - .../FlowView_qml_loader_file_list.rsp | 23 - .../flowview/.rcc/qmllint/FlowView.rsp | 32 - .../flowview/.rcc/qmllint/FlowView_json.rsp | 34 - .../flowview/.rcc/qmllint/FlowView_module.rsp | 10 - .../CMakeDirectoryInformation.cmake | 16 - .../CMakeFiles/FlowView.dir/DependInfo.cmake | 49 - .../CMakeFiles/FlowView.dir/build.make | 752 -- .../CMakeFiles/FlowView.dir/cmake_clean.cmake | 89 - .../FlowView.dir/cmake_clean_target.cmake | 3 - .../FlowView.dir/compiler_depend.make | 2 - .../FlowView.dir/compiler_depend.ts | 2 - .../CMakeFiles/FlowView.dir/depend.make | 2 - .../CMakeFiles/FlowView.dir/flags.make | 12 - .../flowview/CMakeFiles/FlowView.dir/link.txt | 2 - .../CMakeFiles/FlowView.dir/progress.make | 53 - .../FlowView_autogen.dir/AutogenInfo.json | 145 - .../FlowView_autogen.dir/DependInfo.cmake | 18 - .../FlowView_autogen.dir/build.make | 88 - .../FlowView_autogen.dir/cmake_clean.cmake | 9 - .../FlowView_autogen.dir/compiler_depend.make | 2 - .../FlowView_autogen.dir/compiler_depend.ts | 2 - .../FlowView_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../FlowView_qmlcache.dir/DependInfo.cmake | 20 - .../FlowView_qmlcache.dir/build.make | 122 - .../FlowView_qmlcache.dir/cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../FlowView_qmlcache.dir/compiler_depend.ts | 2 - .../FlowView_qmlcache.dir/depend.make | 2 - .../FlowView_qmlcache.dir/flags.make | 12 - .../FlowView_qmlcache.dir/progress.make | 4 - .../AutogenInfo.json | 157 - .../DependInfo.cmake | 18 - .../FlowView_qmlcache_autogen.dir/build.make | 95 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../FlowView_qmllint.dir/DependInfo.cmake | 18 - .../FlowView_qmllint.dir/build.make | 111 - .../FlowView_qmllint.dir/cmake_clean.cmake | 8 - .../FlowView_qmllint.dir/compiler_depend.make | 2 - .../FlowView_qmllint.dir/compiler_depend.ts | 2 - .../FlowView_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../FlowView_qmllint_json.dir/build.make | 111 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../FlowView_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../FlowView_qmllint_module.dir/build.make | 111 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../FlowView_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../FlowView_resources_1.dir/DependInfo.cmake | 19 - .../FlowView_resources_1.dir/build.make | 130 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../FlowView_resources_1.dir/depend.make | 2 - .../FlowView_resources_1.dir/flags.make | 12 - .../FlowView_resources_1.dir/progress.make | 3 - .../FlowView_tooling.dir/DependInfo.cmake | 18 - .../FlowView_tooling.dir/build.make | 203 - .../FlowView_tooling.dir/cmake_clean.cmake | 31 - .../FlowView_tooling.dir/compiler_depend.make | 2 - .../FlowView_tooling.dir/compiler_depend.ts | 2 - .../FlowView_tooling.dir/progress.make | 25 - .../FlowViewplugin.dir/DependInfo.cmake | 20 - .../CMakeFiles/FlowViewplugin.dir/build.make | 127 - .../FlowViewplugin.dir/cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../FlowViewplugin.dir/compiler_depend.make | 2 - .../FlowViewplugin.dir/compiler_depend.ts | 2 - .../CMakeFiles/FlowViewplugin.dir/depend.make | 2 - .../CMakeFiles/FlowViewplugin.dir/flags.make | 12 - .../CMakeFiles/FlowViewplugin.dir/link.txt | 2 - .../FlowViewplugin.dir/progress.make | 4 - .../AutogenInfo.json | 152 - .../DependInfo.cmake | 18 - .../FlowViewplugin_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../FlowViewplugin_autogen.dir/progress.make | 2 - .../FlowViewplugin_init.dir/DependInfo.cmake | 20 - .../FlowViewplugin_init.dir/build.make | 116 - .../FlowViewplugin_init.dir/cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../FlowViewplugin_init.dir/depend.make | 2 - .../FlowViewplugin_init.dir/flags.make | 12 - .../FlowViewplugin_init.dir/progress.make | 3 - .../AutogenInfo.json | 157 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../flowview/CMakeFiles/progress.marks | 1 - .../FlowViewplugin_FlowViewPlugin.cpp | 23 - .../imports/flowview/FlowViewplugin_init.cpp | 2 - .../ds-build/src/imports/flowview/Makefile | 1264 ---- .../src/imports/flowview/cmake_install.cmake | 39 - .../qt6flowview_debug_metatypes.json | 0 .../qmltypes/FlowView_foreign_types.txt | 1 - .../.rcc/QuickStudioLogicHelper_raw_qml_0.qrc | 12 - .../.rcc/qmake_QtQuick_Studio_LogicHelper.qrc | 6 - ...StudioLogicHelper_qml_loader_file_list.rsp | 7 - .../.rcc/qmllint/QuickStudioLogicHelper.rsp | 18 - .../qmllint/QuickStudioLogicHelper_json.rsp | 20 - .../qmllint/QuickStudioLogicHelper_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../DependInfo.cmake | 33 - .../QuickStudioLogicHelper.dir/build.make | 343 - .../cmake_clean.cmake | 41 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioLogicHelper.dir/depend.make | 2 - .../QuickStudioLogicHelper.dir/flags.make | 12 - .../QuickStudioLogicHelper.dir/link.txt | 2 - .../QuickStudioLogicHelper.dir/progress.make | 21 - .../AutogenInfo.json | 117 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 129 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 95 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 95 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 95 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 113 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 118 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 8 - .../DependInfo.cmake | 20 - .../build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../QuickStudioLogicHelperplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 124 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 129 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../logichelper/CMakeFiles/progress.marks | 1 - .../ds-build/src/imports/logichelper/Makefile | 874 --- ...lugin_QtQuick_Studio_LogicHelperPlugin.cpp | 23 - .../QuickStudioLogicHelperplugin_init.cpp | 2 - .../imports/logichelper/cmake_install.cmake | 39 - ...uickstudiologichelper_debug_metatypes.json | 0 .../QuickStudioLogicHelper_foreign_types.txt | 1 - .../.rcc/QuickStudioMultiText_raw_qml_0.qrc | 8 - .../.rcc/qmake_QtQuick_Studio_MultiText.qrc | 6 - ...ckStudioMultiText_qml_loader_file_list.rsp | 3 - .../.rcc/qmllint/QuickStudioMultiText.rsp | 14 - .../qmllint/QuickStudioMultiText_json.rsp | 16 - .../qmllint/QuickStudioMultiText_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../QuickStudioMultiText.dir/DependInfo.cmake | 29 - .../QuickStudioMultiText.dir/build.make | 235 - .../cmake_clean.cmake | 29 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioMultiText.dir/depend.make | 2 - .../QuickStudioMultiText.dir/flags.make | 12 - .../QuickStudioMultiText.dir/link.txt | 2 - .../QuickStudioMultiText.dir/progress.make | 13 - .../AutogenInfo.json | 109 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 121 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 91 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 91 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 91 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 109 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 98 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 20 - .../QuickStudioMultiTextplugin.dir/build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../QuickStudioMultiTextplugin.dir/flags.make | 12 - .../QuickStudioMultiTextplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 116 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 121 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../multitext/CMakeFiles/progress.marks | 1 - .../ds-build/src/imports/multitext/Makefile | 766 -- ...tplugin_QtQuick_Studio_MultiTextPlugin.cpp | 23 - .../QuickStudioMultiTextplugin_init.cpp | 2 - .../src/imports/multitext/cmake_install.cmake | 39 - ...6quickstudiomultitext_debug_metatypes.json | 0 .../QuickStudioMultiText_foreign_types.txt | 1 - .../CMakeDirectoryInformation.cmake | 16 - .../imports/tools/CMakeFiles/progress.marks | 1 - .../_deps/ds-build/src/imports/tools/Makefile | 189 - .../src/imports/tools/cmake_install.cmake | 49 - .../QuickStudioEventSimulator_raw_qml_0.qrc | 7 - .../qmake_QtQuick_Studio_EventSimulator.qrc | 6 - ...dioEventSimulator_qml_loader_file_list.rsp | 2 - .../qmllint/QuickStudioEventSimulator.rsp | 13 - .../QuickStudioEventSimulator_json.rsp | 15 - .../QuickStudioEventSimulator_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../DependInfo.cmake | 28 - .../QuickStudioEventSimulator.dir/build.make | 208 - .../cmake_clean.cmake | 26 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioEventSimulator.dir/depend.make | 2 - .../QuickStudioEventSimulator.dir/flags.make | 12 - .../QuickStudioEventSimulator.dir/link.txt | 2 - .../progress.make | 11 - .../AutogenInfo.json | 107 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 119 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 108 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 93 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 20 - .../build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 114 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 119 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../eventsimulator/CMakeFiles/progress.marks | 1 - .../src/imports/tools/eventsimulator/Makefile | 739 -- ...in_QtQuick_Studio_EventSimulatorPlugin.cpp | 23 - .../QuickStudioEventSimulatorplugin_init.cpp | 2 - .../tools/eventsimulator/cmake_install.cmake | 39 - ...kstudioeventsimulator_debug_metatypes.json | 0 ...uickStudioEventSimulator_foreign_types.txt | 1 - .../.rcc/QuickStudioEventSystem_raw_qml_0.qrc | 7 - .../.rcc/qmake_QtQuick_Studio_EventSystem.qrc | 6 - ...StudioEventSystem_qml_loader_file_list.rsp | 2 - .../.rcc/qmllint/QuickStudioEventSystem.rsp | 13 - .../qmllint/QuickStudioEventSystem_json.rsp | 15 - .../qmllint/QuickStudioEventSystem_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../DependInfo.cmake | 28 - .../QuickStudioEventSystem.dir/build.make | 208 - .../cmake_clean.cmake | 26 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../QuickStudioEventSystem.dir/depend.make | 2 - .../QuickStudioEventSystem.dir/flags.make | 12 - .../QuickStudioEventSystem.dir/link.txt | 2 - .../QuickStudioEventSystem.dir/progress.make | 11 - .../AutogenInfo.json | 107 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 123 - .../cmake_clean.cmake | 15 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 4 - .../AutogenInfo.json | 119 - .../DependInfo.cmake | 18 - .../build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 90 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 19 - .../build.make | 108 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../DependInfo.cmake | 18 - .../build.make | 93 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../DependInfo.cmake | 20 - .../build.make | 127 - .../cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../QuickStudioEventSystemplugin.dir/link.txt | 2 - .../progress.make | 4 - .../AutogenInfo.json | 114 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 20 - .../build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../depend.make | 2 - .../flags.make | 12 - .../progress.make | 3 - .../AutogenInfo.json | 119 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../eventsystem/CMakeFiles/progress.marks | 1 - .../src/imports/tools/eventsystem/Makefile | 739 -- ...lugin_QtQuick_Studio_EventSystemPlugin.cpp | 23 - .../QuickStudioEventSystemplugin_init.cpp | 2 - .../tools/eventsystem/cmake_install.cmake | 39 - ...uickstudioeventsystem_debug_metatypes.json | 0 .../QuickStudioEventSystem_foreign_types.txt | 1 - build/_deps/ds-src | 1 - .../CMakeFiles/3.27.8/CMakeSystem.cmake | 15 - .../CMakeFiles/CMakeConfigureLog.yaml | 11 - .../CMakeDirectoryInformation.cmake | 16 - .../CMakeFiles/CMakeRuleHashes.txt | 11 - .../ds-subbuild/CMakeFiles/Makefile.cmake | 52 - build/_deps/ds-subbuild/CMakeFiles/Makefile2 | 112 - .../CMakeFiles/TargetDirectories.txt | 3 - .../ds-subbuild/CMakeFiles/cmake.check_cache | 1 - .../CMakeFiles/ds-populate-complete | 0 .../ds-populate.dir/DependInfo.cmake | 18 - .../CMakeFiles/ds-populate.dir/Labels.json | 46 - .../CMakeFiles/ds-populate.dir/Labels.txt | 14 - .../CMakeFiles/ds-populate.dir/build.make | 159 - .../ds-populate.dir/cmake_clean.cmake | 17 - .../ds-populate.dir/compiler_depend.make | 2 - .../ds-populate.dir/compiler_depend.ts | 2 - .../CMakeFiles/ds-populate.dir/progress.make | 10 - .../ds-subbuild/CMakeFiles/progress.marks | 1 - build/_deps/ds-subbuild/CMakeLists.txt | 42 - build/_deps/ds-subbuild/Makefile | 154 - build/_deps/ds-subbuild/cmake_install.cmake | 44 - .../src/ds-populate-stamp/ds-populate-build | 0 .../ds-populate-stamp/ds-populate-configure | 0 .../src/ds-populate-stamp/ds-populate-done | 0 .../ds-populate-stamp/ds-populate-download | 0 .../ds-populate-gitclone-lastrun.txt | 15 - .../ds-populate-stamp/ds-populate-gitinfo.txt | 15 - .../src/ds-populate-stamp/ds-populate-install | 0 .../src/ds-populate-stamp/ds-populate-mkdir | 0 .../src/ds-populate-stamp/ds-populate-patch | 0 .../ds-populate-patch-info.txt | 6 - .../src/ds-populate-stamp/ds-populate-test | 0 .../ds-populate-update-info.txt | 7 - .../tmp/ds-populate-cfgcmd.txt | 1 - .../tmp/ds-populate-gitclone.cmake | 73 - .../tmp/ds-populate-gitupdate.cmake | 292 - .../tmp/ds-populate-mkdirs.cmake | 22 - build/cmake_install.cmake | 77 - build/compile_commands.json | 1310 ---- build/content/.rcc/content_raw_qml_0.qrc | 13 - build/content/.rcc/qmake_content.qrc | 6 - .../qmlcache/content_qml_loader_file_list.rsp | 6 - build/content/.rcc/qmllint/content.rsp | 17 - build/content/.rcc/qmllint/content_json.rsp | 19 - build/content/.rcc/qmllint/content_module.rsp | 12 - .../CMakeDirectoryInformation.cmake | 16 - .../CMakeFiles/content.dir/DependInfo.cmake | 32 - .../content/CMakeFiles/content.dir/build.make | 316 - .../CMakeFiles/content.dir/cmake_clean.cmake | 38 - .../content.dir/cmake_clean_target.cmake | 3 - .../content.dir/compiler_depend.make | 2 - .../CMakeFiles/content.dir/compiler_depend.ts | 2 - .../CMakeFiles/content.dir/depend.make | 2 - .../content/CMakeFiles/content.dir/flags.make | 12 - build/content/CMakeFiles/content.dir/link.txt | 2 - .../CMakeFiles/content.dir/progress.make | 19 - .../content_autogen.dir/AutogenInfo.json | 115 - .../content_autogen.dir/DependInfo.cmake | 18 - .../CMakeFiles/content_autogen.dir/build.make | 88 - .../content_autogen.dir/cmake_clean.cmake | 9 - .../content_autogen.dir/compiler_depend.make | 2 - .../content_autogen.dir/compiler_depend.ts | 2 - .../content_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../content_qmlcache.dir/DependInfo.cmake | 20 - .../content_qmlcache.dir/build.make | 116 - .../content_qmlcache.dir/cmake_clean.cmake | 14 - .../content_qmlcache.dir/compiler_depend.make | 2 - .../content_qmlcache.dir/compiler_depend.ts | 2 - .../content_qmlcache.dir/depend.make | 2 - .../content_qmlcache.dir/flags.make | 12 - .../content_qmlcache.dir/progress.make | 3 - .../AutogenInfo.json | 127 - .../DependInfo.cmake | 18 - .../content_qmlcache_autogen.dir/build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../content_qmllint.dir/DependInfo.cmake | 18 - .../CMakeFiles/content_qmllint.dir/build.make | 94 - .../content_qmllint.dir/cmake_clean.cmake | 8 - .../content_qmllint.dir/compiler_depend.make | 2 - .../content_qmllint.dir/compiler_depend.ts | 2 - .../content_qmllint.dir/progress.make | 1 - .../content_qmllint_json.dir/DependInfo.cmake | 18 - .../content_qmllint_json.dir/build.make | 94 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../content_qmllint_module.dir/build.make | 94 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../content_resources_1.dir/DependInfo.cmake | 19 - .../content_resources_1.dir/build.make | 107 - .../content_resources_1.dir/cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_resources_1.dir/depend.make | 2 - .../content_resources_1.dir/flags.make | 12 - .../content_resources_1.dir/progress.make | 3 - .../content_resources_2.dir/DependInfo.cmake | 19 - .../content_resources_2.dir/build.make | 114 - .../content_resources_2.dir/cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_resources_2.dir/depend.make | 2 - .../content_resources_2.dir/flags.make | 12 - .../content_resources_2.dir/progress.make | 3 - .../content_tooling.dir/DependInfo.cmake | 18 - .../CMakeFiles/content_tooling.dir/build.make | 123 - .../content_tooling.dir/cmake_clean.cmake | 15 - .../content_tooling.dir/compiler_depend.make | 2 - .../content_tooling.dir/compiler_depend.ts | 2 - .../content_tooling.dir/progress.make | 9 - .../contentplugin.dir/DependInfo.cmake | 20 - .../CMakeFiles/contentplugin.dir/build.make | 127 - .../contentplugin.dir/cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../contentplugin.dir/compiler_depend.make | 2 - .../contentplugin.dir/compiler_depend.ts | 2 - .../CMakeFiles/contentplugin.dir/depend.make | 2 - .../CMakeFiles/contentplugin.dir/flags.make | 12 - .../CMakeFiles/contentplugin.dir/link.txt | 2 - .../contentplugin.dir/progress.make | 4 - .../AutogenInfo.json | 122 - .../DependInfo.cmake | 18 - .../contentplugin_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../contentplugin_autogen.dir/progress.make | 2 - .../contentplugin_init.dir/DependInfo.cmake | 20 - .../contentplugin_init.dir/build.make | 116 - .../contentplugin_init.dir/cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../contentplugin_init.dir/compiler_depend.ts | 2 - .../contentplugin_init.dir/depend.make | 2 - .../contentplugin_init.dir/flags.make | 12 - .../contentplugin_init.dir/progress.make | 3 - .../AutogenInfo.json | 127 - .../DependInfo.cmake | 18 - .../contentplugin_init_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - build/content/CMakeFiles/progress.marks | 1 - build/content/Makefile | 847 --- build/content/cmake_install.cmake | 39 - build/content/contentplugin_contentPlugin.cpp | 23 - build/content/contentplugin_init.cpp | 2 - .../qt6content_debug_metatypes.json | 0 .../qmltypes/content_foreign_types.txt | 1 - build/imports/Backend/.rcc/qmake_Backend.qrc | 6 - .../Backend/.rcc/qmllint/BackendPlugin.rsp | 9 - .../.rcc/qmllint/BackendPlugin_json.rsp | 11 - .../.rcc/qmllint/BackendPlugin_module.rsp | 10 - .../BackendPluginplugin_BackendPlugin.cpp | 23 - .../CMakeFiles/Backend.dir/DependInfo.cmake | 19 - .../Backend/CMakeFiles/Backend.dir/build.make | 111 - .../CMakeFiles/Backend.dir/cmake_clean.cmake | 14 - .../Backend.dir/cmake_clean_target.cmake | 3 - .../Backend.dir/compiler_depend.make | 2 - .../CMakeFiles/Backend.dir/compiler_depend.ts | 2 - .../CMakeFiles/Backend.dir/depend.make | 2 - .../Backend/CMakeFiles/Backend.dir/flags.make | 12 - .../Backend/CMakeFiles/Backend.dir/link.txt | 2 - .../CMakeFiles/Backend.dir/progress.make | 3 - .../BackendPlugin.dir/DependInfo.cmake | 29 - .../CMakeFiles/BackendPlugin.dir/build.make | 211 - .../BackendPlugin.dir/cmake_clean.cmake | 27 - .../BackendPlugin.dir/compiler_depend.make | 2 - .../BackendPlugin.dir/compiler_depend.ts | 2 - .../CMakeFiles/BackendPlugin.dir/depend.make | 2 - .../CMakeFiles/BackendPlugin.dir/flags.make | 12 - .../CMakeFiles/BackendPlugin.dir/link.txt | 1 - .../BackendPlugin.dir/progress.make | 11 - .../AutogenInfo.json | 129 - .../DependInfo.cmake | 18 - .../BackendPlugin_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../BackendPlugin_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 18 - .../BackendPlugin_qmllint.dir/build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../BackendPlugin_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../BackendPlugin_qmllint_json.dir/build.make | 87 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../BackendPluginplugin.dir/DependInfo.cmake | 20 - .../BackendPluginplugin.dir/build.make | 130 - .../BackendPluginplugin.dir/cmake_clean.cmake | 16 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../BackendPluginplugin.dir/depend.make | 2 - .../BackendPluginplugin.dir/flags.make | 12 - .../BackendPluginplugin.dir/link.txt | 1 - .../BackendPluginplugin.dir/progress.make | 4 - .../AutogenInfo.json | 109 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../Backend_autogen.dir/AutogenInfo.json | 80 - .../Backend_autogen.dir/DependInfo.cmake | 18 - .../CMakeFiles/Backend_autogen.dir/build.make | 88 - .../Backend_autogen.dir/cmake_clean.cmake | 9 - .../Backend_autogen.dir/compiler_depend.make | 2 - .../Backend_autogen.dir/compiler_depend.ts | 2 - .../Backend_autogen.dir/progress.make | 2 - .../CMakeDirectoryInformation.cmake | 16 - .../imports/Backend/CMakeFiles/progress.marks | 1 - .../qt_internal_plugins.dir/DependInfo.cmake | 18 - .../qt_internal_plugins.dir/build.make | 83 - .../qt_internal_plugins.dir/cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../qt_internal_plugins.dir/progress.make | 1 - build/imports/Backend/Makefile | 585 -- build/imports/Backend/cmake_install.cmake | 39 - .../qt6backendplugin_debug_metatypes.json | 0 .../qmltypes/BackendPlugin_foreign_types.txt | 1 - .../Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc | 9 - .../Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc | 6 - .../Bolt_Dash_qml_loader_file_list.rsp | 4 - .../Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp | 15 - .../Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp | 17 - .../.rcc/qmllint/Bolt_Dash_module.rsp | 12 - .../Bolt_Dashplugin_Bolt_DashPlugin.cpp | 23 - .../Bolt_Dash/Bolt_Dashplugin_init.cpp | 2 - .../CMakeFiles/Bolt_Dash.dir/DependInfo.cmake | 30 - .../CMakeFiles/Bolt_Dash.dir/build.make | 262 - .../Bolt_Dash.dir/cmake_clean.cmake | 32 - .../Bolt_Dash.dir/cmake_clean_target.cmake | 3 - .../Bolt_Dash.dir/compiler_depend.make | 2 - .../Bolt_Dash.dir/compiler_depend.ts | 2 - .../CMakeFiles/Bolt_Dash.dir/depend.make | 2 - .../CMakeFiles/Bolt_Dash.dir/flags.make | 12 - .../CMakeFiles/Bolt_Dash.dir/link.txt | 2 - .../CMakeFiles/Bolt_Dash.dir/progress.make | 15 - .../Bolt_Dash_autogen.dir/AutogenInfo.json | 111 - .../Bolt_Dash_autogen.dir/DependInfo.cmake | 18 - .../Bolt_Dash_autogen.dir/build.make | 88 - .../Bolt_Dash_autogen.dir/cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../Bolt_Dash_autogen.dir/compiler_depend.ts | 2 - .../Bolt_Dash_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../Bolt_Dash_qmlcache.dir/DependInfo.cmake | 20 - .../Bolt_Dash_qmlcache.dir/build.make | 116 - .../Bolt_Dash_qmlcache.dir/cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../Bolt_Dash_qmlcache.dir/compiler_depend.ts | 2 - .../Bolt_Dash_qmlcache.dir/depend.make | 2 - .../Bolt_Dash_qmlcache.dir/flags.make | 12 - .../Bolt_Dash_qmlcache.dir/progress.make | 3 - .../AutogenInfo.json | 123 - .../DependInfo.cmake | 18 - .../Bolt_Dash_qmlcache_autogen.dir/build.make | 96 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 3 - .../Bolt_Dash_qmllint.dir/DependInfo.cmake | 18 - .../Bolt_Dash_qmllint.dir/build.make | 92 - .../Bolt_Dash_qmllint.dir/cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../Bolt_Dash_qmllint.dir/compiler_depend.ts | 2 - .../Bolt_Dash_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../Bolt_Dash_qmllint_json.dir/build.make | 92 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 18 - .../Bolt_Dash_qmllint_module.dir/build.make | 92 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 24 - .../build.make | 115 - .../cmake_clean.cmake | 12 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 4 - .../DependInfo.cmake | 19 - .../Bolt_Dash_resources_1.dir/build.make | 107 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_resources_1.dir/depend.make | 2 - .../Bolt_Dash_resources_1.dir/flags.make | 12 - .../Bolt_Dash_resources_1.dir/progress.make | 3 - .../DependInfo.cmake | 19 - .../Bolt_Dash_resources_2.dir/build.make | 110 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_resources_2.dir/depend.make | 2 - .../Bolt_Dash_resources_2.dir/flags.make | 12 - .../Bolt_Dash_resources_2.dir/progress.make | 3 - .../Bolt_Dash_tooling.dir/DependInfo.cmake | 18 - .../Bolt_Dash_tooling.dir/build.make | 103 - .../Bolt_Dash_tooling.dir/cmake_clean.cmake | 11 - .../compiler_depend.make | 2 - .../Bolt_Dash_tooling.dir/compiler_depend.ts | 2 - .../Bolt_Dash_tooling.dir/progress.make | 5 - .../Bolt_Dashplugin.dir/DependInfo.cmake | 20 - .../CMakeFiles/Bolt_Dashplugin.dir/build.make | 127 - .../Bolt_Dashplugin.dir/cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../Bolt_Dashplugin.dir/compiler_depend.make | 2 - .../Bolt_Dashplugin.dir/compiler_depend.ts | 2 - .../Bolt_Dashplugin.dir/depend.make | 2 - .../CMakeFiles/Bolt_Dashplugin.dir/flags.make | 12 - .../CMakeFiles/Bolt_Dashplugin.dir/link.txt | 2 - .../Bolt_Dashplugin.dir/progress.make | 4 - .../AutogenInfo.json | 118 - .../DependInfo.cmake | 18 - .../Bolt_Dashplugin_autogen.dir/build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dashplugin_autogen.dir/progress.make | 2 - .../Bolt_Dashplugin_init.dir/DependInfo.cmake | 20 - .../Bolt_Dashplugin_init.dir/build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dashplugin_init.dir/depend.make | 2 - .../Bolt_Dashplugin_init.dir/flags.make | 12 - .../Bolt_Dashplugin_init.dir/progress.make | 3 - .../AutogenInfo.json | 123 - .../DependInfo.cmake | 18 - .../build.make | 88 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../CMakeDirectoryInformation.cmake | 16 - .../Bolt_Dash/CMakeFiles/progress.marks | 1 - build/imports/Bolt_Dash/Makefile | 793 -- build/imports/Bolt_Dash/cmake_install.cmake | 39 - .../qt6bolt_dash_debug_metatypes.json | 0 .../qmltypes/Bolt_Dash_foreign_types.txt | 1 - .../CMakeDirectoryInformation.cmake | 16 - build/imports/CMakeFiles/progress.marks | 1 - build/imports/Makefile | 189 - build/imports/cmake_install.cmake | 49 - .../qt6bolt_dashapp_debug_metatypes.json | 0 .../BackendPlugin_qml_module_dir_map.qrc | 6 - build/qml/Backend/qmldir | 7 - .../Bolt_Dash_qml_module_dir_map.qrc | 6 - build/qml/Bolt_Dash/Constants.qml | 27 - build/qml/Bolt_Dash/DirectoryFontLoader.qml | 34 - build/qml/Bolt_Dash/EventListModel.qml | 15 - build/qml/Bolt_Dash/EventListSimulator.qml | 25 - build/qml/Bolt_Dash/qmldir | 11 - build/qml/FlowView/+DesignMode/FlowItem.qml | 100 - build/qml/FlowView/+DesignMode/FlowView.qml | 311 - build/qml/FlowView/DefaultFlowEffect.qml | 41 - build/qml/FlowView/FlowActionArea.qml | 213 - build/qml/FlowView/FlowDecision.qml | 126 - build/qml/FlowView/FlowEffect.qml | 161 - build/qml/FlowView/FlowFadeEffect.qml | 80 - build/qml/FlowView/FlowItem.qml | 116 - build/qml/FlowView/FlowMoveEffect.qml | 102 - build/qml/FlowView/FlowPushEffect.qml | 231 - build/qml/FlowView/FlowPushLeftEffect.qml | 155 - build/qml/FlowView/FlowPushRightEffect.qml | 155 - build/qml/FlowView/FlowPushUpEffect.qml | 162 - build/qml/FlowView/FlowSlideDownEffect.qml | 90 - build/qml/FlowView/FlowSlideLeftEffect.qml | 66 - build/qml/FlowView/FlowSlideRightEffect.qml | 66 - build/qml/FlowView/FlowSlideUpEffect.qml | 66 - build/qml/FlowView/FlowState.qml | 36 - build/qml/FlowView/FlowTransition.qml | 154 - build/qml/FlowView/FlowTransitionList.qml | 101 - build/qml/FlowView/FlowView.qml | 348 - .../FlowView/FlowView_qml_module_dir_map.qrc | 6 - build/qml/FlowView/FlowWildcard.qml | 77 - build/qml/FlowView/SwipeInteraction.qml | 118 - build/qml/FlowView/qmldir | 46 - .../Main/Bolt_DashApp_qml_module_dir_map.qrc | 6 - build/qml/Main/main.qml | 9 - build/qml/Main/qmldir | 4 - ...ckStudioApplication_qml_module_dir_map.qrc | 6 - build/qml/QtQuick/Studio/Application/qmldir | 8 - .../QtQuick/Studio/Components/ArcArrow.qml | 83 - .../qml/QtQuick/Studio/Components/ArcItem.qml | 494 -- .../QtQuick/Studio/Components/BorderItem.qml | 506 -- .../QtQuick/Studio/Components/EllipseItem.qml | 201 - .../Studio/Components/FlipableItem.qml | 153 - .../QtQuick/Studio/Components/GroupItem.qml | 77 - .../qml/QtQuick/Studio/Components/IsoItem.qml | 67 - .../qml/QtQuick/Studio/Components/PieItem.qml | 322 - ...ickStudioComponents_qml_module_dir_map.qrc | 6 - .../Studio/Components/RectangleItem.qml | 434 -- .../Studio/Components/RegularPolygonItem.qml | 318 - .../Studio/Components/StraightArrow.qml | 97 - .../QtQuick/Studio/Components/SvgPathItem.qml | 221 - .../Studio/Components/TriangleItem.qml | 496 -- build/qml/QtQuick/Studio/Components/qmldir | 34 - .../QtQuick/Studio/Effects/BlendEffect.qml | 37 - .../qml/QtQuick/Studio/Effects/BlendItem.qml | 65 - .../Effects/BrightnessContrastEffect.qml | 35 - .../Studio/Effects/BrightnessContrastItem.qml | 57 - .../Studio/Effects/ColorOverlayEffect.qml | 36 - .../Studio/Effects/ColorOverlayItem.qml | 59 - .../QtQuick/Studio/Effects/ColorizeEffect.qml | 38 - .../QtQuick/Studio/Effects/ColorizeItem.qml | 61 - .../Studio/Effects/DesaturationEffect.qml | 36 - .../Studio/Effects/DesaturationItem.qml | 56 - .../Studio/Effects/DirectionalBlurEffect.qml | 42 - .../Studio/Effects/DirectionalBlurItem.qml | 62 - .../QtQuick/Studio/Effects/DisplaceEffect.qml | 35 - .../QtQuick/Studio/Effects/DisplaceItem.qml | 66 - .../Studio/Effects/DropShadowEffect.qml | 41 - .../QtQuick/Studio/Effects/DropShadowItem.qml | 69 - .../QtQuick/Studio/Effects/FastBlurEffect.qml | 36 - .../QtQuick/Studio/Effects/FastBlurItem.qml | 61 - .../Studio/Effects/GammaAdjustEffect.qml | 37 - .../Studio/Effects/GammaAdjustItem.qml | 57 - .../Studio/Effects/GaussianBlurEffect.qml | 41 - .../Studio/Effects/GaussianBlurItem.qml | 61 - .../qml/QtQuick/Studio/Effects/GlowEffect.qml | 40 - build/qml/QtQuick/Studio/Effects/GlowItem.qml | 63 - .../Studio/Effects/HueSaturationEffect.qml | 38 - .../Studio/Effects/HueSaturationItem.qml | 61 - .../Studio/Effects/InnerShadowEffect.qml | 45 - .../Studio/Effects/InnerShadowItem.qml | 63 - .../Studio/Effects/LevelAdjustEffect.qml | 41 - .../Studio/Effects/LevelAdjustItem.qml | 62 - build/qml/QtQuick/Studio/Effects/MaskItem.qml | 69 - .../Studio/Effects/MaskedBlurEffect.qml | 38 - .../QtQuick/Studio/Effects/MaskedBlurItem.qml | 68 - .../Studio/Effects/OpacityMaskEffect.qml | 35 - .../Studio/Effects/OpacityMaskItem.qml | 65 - .../QuickStudioEffects_qml_module_dir_map.qrc | 6 - .../Studio/Effects/RadialBlurEffect.qml | 45 - .../QtQuick/Studio/Effects/RadialBlurItem.qml | 62 - .../Studio/Effects/RecursiveBlurEffect.qml | 40 - .../Studio/Effects/RecursiveBlurItem.qml | 61 - .../QtQuick/Studio/Effects/RotationItem.qml | 51 - .../QtQuick/Studio/Effects/SaturationItem.qml | 61 - .../Studio/Effects/ThresholdMaskEffect.qml | 37 - .../Studio/Effects/ThresholdMaskItem.qml | 68 - .../QtQuick/Studio/Effects/ZoomBlurEffect.qml | 41 - .../QtQuick/Studio/Effects/ZoomBlurItem.qml | 61 - build/qml/QtQuick/Studio/Effects/qmldir | 98 - .../Studio/EventSimulator/EventSimulator.qml | 165 - .../EventSimulator/EventSimulatorDelegate.qml | 79 - ...tudioEventSimulator_qml_module_dir_map.qrc | 6 - .../qml/QtQuick/Studio/EventSimulator/qmldir | 12 - .../Studio/EventSystem/EventListener.qml | 53 - .../Studio/EventSystem/EventSystem.qml | 58 - ...ckStudioEventSystem_qml_module_dir_map.qrc | 6 - build/qml/QtQuick/Studio/EventSystem/qmldir | 12 - .../Studio/LogicHelper/AndOperator.qml | 97 - .../LogicHelper/BidirectionalBinding.qml | 156 - .../Studio/LogicHelper/MinMaxMapper.qml | 132 - .../Studio/LogicHelper/NotOperator.qml | 85 - .../QtQuick/Studio/LogicHelper/OrOperator.qml | 98 - ...ckStudioLogicHelper_qml_module_dir_map.qrc | 6 - .../Studio/LogicHelper/RangeMapper.qml | 115 - .../Studio/LogicHelper/StringMapper.qml | 94 - build/qml/QtQuick/Studio/LogicHelper/qmldir | 22 - .../Studio/MultiText/MultiTextElement.qml | 100 - .../Studio/MultiText/MultiTextException.qml | 65 - .../Studio/MultiText/MultiTextItem.qml | 103 - ...uickStudioMultiText_qml_module_dir_map.qrc | 6 - build/qml/QtQuick/Studio/MultiText/qmldir | 14 - build/qml/content/App.qml | 20 - build/qml/content/BatterySlider.qml | 38 - build/qml/content/Screen01.ui.qml | 224 - build/qml/content/Speedometer.qml | 46 - build/qml/content/TempSlider.qml | 38 - build/qml/content/WarningSymbol.qml | 19 - .../content/content_qml_module_dir_map.qrc | 6 - build/qml/content/fonts/fonts.txt | 1 - build/qml/content/fonts/nasalization-rg.otf | Bin 89220 -> 0 bytes build/qml/content/qmldir | 13 - build/qmltypes/Bolt_DashApp_foreign_types.txt | 1 - 1859 files changed, 127590 deletions(-) delete mode 100644 build/.cmake/api/v1/query/client-vscode/query.json delete mode 100644 build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json delete mode 100644 build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json delete mode 100644 build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json delete mode 100644 build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json delete mode 100644 build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json delete mode 100644 build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json delete mode 100644 build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json delete mode 100644 build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json delete mode 100644 build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json delete mode 100644 build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json delete mode 100644 build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json delete mode 100644 build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json delete mode 100644 build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json delete mode 100644 build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json delete mode 100644 build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json delete mode 100644 build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json delete mode 100644 build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json delete mode 100644 build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json delete mode 100644 build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json delete mode 100644 build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json delete mode 100644 build/.qt/QtDeploySupport.cmake delete mode 100644 build/.qt/deploy_qml_imports/Bolt_DashApp.cmake delete mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp delete mode 100644 build/.rcc/Bolt_DashApp_raw_qml_0.qrc delete mode 100644 build/.rcc/configuration.qrc delete mode 100644 build/.rcc/qmake_Main.qrc delete mode 100644 build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp_json.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp_module.rsp delete mode 100644 build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake delete mode 100755 build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 build/CMakeFiles/3.27.8/CMakeSystem.cmake delete mode 100644 build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100644 build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/flags.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/link.txt delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make delete mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/CMakeFiles/CMakeRuleHashes.txt delete mode 100644 build/CMakeFiles/Makefile.cmake delete mode 100644 build/CMakeFiles/Makefile2 delete mode 100644 build/CMakeFiles/TargetDirectories.txt delete mode 100644 build/CMakeFiles/cmake.check_cache delete mode 100644 build/CMakeFiles/progress.marks delete mode 100644 build/Makefile delete mode 100644 build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/Makefile delete mode 100644 build/_deps/ds-build/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/Makefile delete mode 100644 build/_deps/ds-build/src/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/Makefile delete mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc delete mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp delete mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/application/Makefile delete mode 100644 build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/application/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/components/Makefile delete mode 100644 build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/components/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/Makefile delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp delete mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/flowview/Makefile delete mode 100644 build/_deps/ds-build/src/imports/flowview/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/logichelper/Makefile delete mode 100644 build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/multitext/Makefile delete mode 100644 build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/multitext/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/tools/Makefile delete mode 100644 build/_deps/ds-build/src/imports/tools/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/Makefile delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json delete mode 100644 build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt delete mode 160000 build/_deps/ds-src delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/Makefile2 delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make delete mode 100644 build/_deps/ds-subbuild/CMakeFiles/progress.marks delete mode 100644 build/_deps/ds-subbuild/CMakeLists.txt delete mode 100644 build/_deps/ds-subbuild/Makefile delete mode 100644 build/_deps/ds-subbuild/cmake_install.cmake delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake delete mode 100644 build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake delete mode 100644 build/cmake_install.cmake delete mode 100644 build/compile_commands.json delete mode 100644 build/content/.rcc/content_raw_qml_0.qrc delete mode 100644 build/content/.rcc/qmake_content.qrc delete mode 100644 build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp delete mode 100644 build/content/.rcc/qmllint/content.rsp delete mode 100644 build/content/.rcc/qmllint/content_json.rsp delete mode 100644 build/content/.rcc/qmllint/content_module.rsp delete mode 100644 build/content/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/content/CMakeFiles/content.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content.dir/build.make delete mode 100644 build/content/CMakeFiles/content.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content.dir/cmake_clean_target.cmake delete mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content.dir/depend.make delete mode 100644 build/content/CMakeFiles/content.dir/flags.make delete mode 100644 build/content/CMakeFiles/content.dir/link.txt delete mode 100644 build/content/CMakeFiles/content.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/depend.make delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/flags.make delete mode 100644 build/content/CMakeFiles/content_qmlcache.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/build.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/depend.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/flags.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/build.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/depend.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/flags.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_tooling.dir/build.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_tooling.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin.dir/depend.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/flags.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/link.txt delete mode 100644 build/content/CMakeFiles/contentplugin.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/flags.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/progress.marks delete mode 100644 build/content/Makefile delete mode 100644 build/content/cmake_install.cmake delete mode 100644 build/content/contentplugin_contentPlugin.cpp delete mode 100644 build/content/contentplugin_init.cpp delete mode 100644 build/content/meta_types/qt6content_debug_metatypes.json delete mode 100644 build/content/qmltypes/content_foreign_types.txt delete mode 100644 build/imports/Backend/.rcc/qmake_Backend.qrc delete mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp delete mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp delete mode 100644 build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp delete mode 100644 build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/depend.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/flags.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/link.txt delete mode 100644 build/imports/Backend/CMakeFiles/Backend.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make delete mode 100644 build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/Backend/CMakeFiles/progress.marks delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts delete mode 100644 build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make delete mode 100644 build/imports/Backend/Makefile delete mode 100644 build/imports/Backend/cmake_install.cmake delete mode 100644 build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json delete mode 100644 build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt delete mode 100644 build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc delete mode 100644 build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc delete mode 100644 build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp delete mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp delete mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/progress.marks delete mode 100644 build/imports/Bolt_Dash/Makefile delete mode 100644 build/imports/Bolt_Dash/cmake_install.cmake delete mode 100644 build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json delete mode 100644 build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt delete mode 100644 build/imports/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/CMakeFiles/progress.marks delete mode 100644 build/imports/Makefile delete mode 100644 build/imports/cmake_install.cmake delete mode 100644 build/meta_types/qt6bolt_dashapp_debug_metatypes.json delete mode 100644 build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc delete mode 100644 build/qml/Backend/qmldir delete mode 100644 build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc delete mode 100644 build/qml/Bolt_Dash/Constants.qml delete mode 100644 build/qml/Bolt_Dash/DirectoryFontLoader.qml delete mode 100644 build/qml/Bolt_Dash/EventListModel.qml delete mode 100644 build/qml/Bolt_Dash/EventListSimulator.qml delete mode 100644 build/qml/Bolt_Dash/qmldir delete mode 100644 build/qml/FlowView/+DesignMode/FlowItem.qml delete mode 100644 build/qml/FlowView/+DesignMode/FlowView.qml delete mode 100644 build/qml/FlowView/DefaultFlowEffect.qml delete mode 100644 build/qml/FlowView/FlowActionArea.qml delete mode 100644 build/qml/FlowView/FlowDecision.qml delete mode 100644 build/qml/FlowView/FlowEffect.qml delete mode 100644 build/qml/FlowView/FlowFadeEffect.qml delete mode 100644 build/qml/FlowView/FlowItem.qml delete mode 100644 build/qml/FlowView/FlowMoveEffect.qml delete mode 100644 build/qml/FlowView/FlowPushEffect.qml delete mode 100644 build/qml/FlowView/FlowPushLeftEffect.qml delete mode 100644 build/qml/FlowView/FlowPushRightEffect.qml delete mode 100644 build/qml/FlowView/FlowPushUpEffect.qml delete mode 100644 build/qml/FlowView/FlowSlideDownEffect.qml delete mode 100644 build/qml/FlowView/FlowSlideLeftEffect.qml delete mode 100644 build/qml/FlowView/FlowSlideRightEffect.qml delete mode 100644 build/qml/FlowView/FlowSlideUpEffect.qml delete mode 100644 build/qml/FlowView/FlowState.qml delete mode 100644 build/qml/FlowView/FlowTransition.qml delete mode 100644 build/qml/FlowView/FlowTransitionList.qml delete mode 100644 build/qml/FlowView/FlowView.qml delete mode 100644 build/qml/FlowView/FlowView_qml_module_dir_map.qrc delete mode 100644 build/qml/FlowView/FlowWildcard.qml delete mode 100644 build/qml/FlowView/SwipeInteraction.qml delete mode 100644 build/qml/FlowView/qmldir delete mode 100644 build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc delete mode 100644 build/qml/Main/main.qml delete mode 100644 build/qml/Main/qmldir delete mode 100644 build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/Application/qmldir delete mode 100644 build/qml/QtQuick/Studio/Components/ArcArrow.qml delete mode 100644 build/qml/QtQuick/Studio/Components/ArcItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/BorderItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/EllipseItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/FlipableItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/GroupItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/IsoItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/PieItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/Components/RectangleItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/StraightArrow.qml delete mode 100644 build/qml/QtQuick/Studio/Components/SvgPathItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/TriangleItem.qml delete mode 100644 build/qml/QtQuick/Studio/Components/qmldir delete mode 100644 build/qml/QtQuick/Studio/Effects/BlendEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/BlendItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ColorizeItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DesaturationItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DisplaceItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/DropShadowItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/FastBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GlowEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/GlowItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/MaskItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/RotationItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/SaturationItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml delete mode 100644 build/qml/QtQuick/Studio/Effects/qmldir delete mode 100644 build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml delete mode 100644 build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml delete mode 100644 build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/EventSimulator/qmldir delete mode 100644 build/qml/QtQuick/Studio/EventSystem/EventListener.qml delete mode 100644 build/qml/QtQuick/Studio/EventSystem/EventSystem.qml delete mode 100644 build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/EventSystem/qmldir delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml delete mode 100644 build/qml/QtQuick/Studio/LogicHelper/qmldir delete mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml delete mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextException.qml delete mode 100644 build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml delete mode 100644 build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc delete mode 100644 build/qml/QtQuick/Studio/MultiText/qmldir delete mode 100644 build/qml/content/App.qml delete mode 100644 build/qml/content/BatterySlider.qml delete mode 100644 build/qml/content/Screen01.ui.qml delete mode 100644 build/qml/content/Speedometer.qml delete mode 100644 build/qml/content/TempSlider.qml delete mode 100644 build/qml/content/WarningSymbol.qml delete mode 100644 build/qml/content/content_qml_module_dir_map.qrc delete mode 100644 build/qml/content/fonts/fonts.txt delete mode 100644 build/qml/content/fonts/nasalization-rg.otf delete mode 100644 build/qml/content/qmldir delete mode 100644 build/qmltypes/Bolt_DashApp_foreign_types.txt diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json deleted file mode 100644 index 82bb964..0000000 --- a/build/.cmake/api/v1/query/client-vscode/query.json +++ /dev/null @@ -1 +0,0 @@ -{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json b/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json deleted file mode 100644 index c0ab573..0000000 --- a/build/.cmake/api/v1/reply/cache-v2-09572c2a4037f1c266b0.json +++ /dev/null @@ -1,6671 +0,0 @@ -{ - "entries" : - [ - { - "name" : "BUILD_QDS_COMPONENTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build design studio components" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "BUILD_SHARED_LIBS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build Qt statically or dynamically" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "BUILD_WITH_PCH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "STRING", - "value" : "ON" - }, - { - "name" : "Bolt_DashApp_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/build" - }, - { - "name" : "Bolt_DashApp_IS_TOP_LEVEL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "ON" - }, - { - "name" : "Bolt_DashApp_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "name" : "CMAKE_ADDR2LINE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_ADDR2LINE-NOTFOUND" - }, - { - "name" : "CMAKE_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ar" - }, - { - "name" : "CMAKE_BUILD_TYPE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "STRING", - "value" : "Debug" - }, - { - "name" : "CMAKE_CACHEFILE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "This is the directory where this CMakeCache.txt was created" - } - ], - "type" : "INTERNAL", - "value" : "/Users/mason/Documents/Code/dash-cpp/build" - }, - { - "name" : "CMAKE_CACHE_MAJOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Major version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_CACHE_MINOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minor version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "27" - }, - { - "name" : "CMAKE_CACHE_PATCH_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Patch version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "8" - }, - { - "name" : "CMAKE_COLOR_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable/Disable color output during build." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CMAKE_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake" - }, - { - "name" : "CMAKE_CPACK_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cpack program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cpack" - }, - { - "name" : "CMAKE_CTEST_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to ctest program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ctest" - }, - { - "name" : "CMAKE_CXX_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "CXX compiler" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/c++" - }, - { - "name" : "CMAKE_CXX_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_CXX_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_DLLTOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_DLLTOOL-NOTFOUND" - }, - { - "name" : "CMAKE_EDIT_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cache edit program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake" - }, - { - "name" : "CMAKE_EXECUTABLE_FORMAT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executable file format" - } - ], - "type" : "INTERNAL", - "value" : "MACHO" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "BOOL", - "value" : "TRUE" - }, - { - "name" : "CMAKE_EXTRA_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of external makefile project generator." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake." - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/pkgRedirects" - }, - { - "name" : "CMAKE_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator." - } - ], - "type" : "INTERNAL", - "value" : "Unix Makefiles" - }, - { - "name" : "CMAKE_GENERATOR_INSTANCE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Generator instance identifier." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator platform." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_TOOLSET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator toolset." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_HAVE_LIBC_PTHREAD", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_HOME_DIRECTORY", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Source directory with the top level CMakeLists.txt file for this project" - } - ], - "type" : "INTERNAL", - "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "name" : "CMAKE_INSTALL_BINDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "User executables (bin)" - } - ], - "type" : "PATH", - "value" : "bin" - }, - { - "name" : "CMAKE_INSTALL_DATADIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only architecture-independent data (DATAROOTDIR)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_DATAROOTDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only architecture-independent data root (share)" - } - ], - "type" : "PATH", - "value" : "share" - }, - { - "name" : "CMAKE_INSTALL_DOCDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_INCLUDEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "C header files (include)" - } - ], - "type" : "PATH", - "value" : "include" - }, - { - "name" : "CMAKE_INSTALL_INFODIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Info documentation (DATAROOTDIR/info)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_LIBDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Object code libraries (lib)" - } - ], - "type" : "PATH", - "value" : "lib" - }, - { - "name" : "CMAKE_INSTALL_LIBEXECDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Program executables (libexec)" - } - ], - "type" : "PATH", - "value" : "libexec" - }, - { - "name" : "CMAKE_INSTALL_LOCALEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Locale-dependent data (DATAROOTDIR/locale)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_LOCALSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Modifiable single-machine data (var)" - } - ], - "type" : "PATH", - "value" : "var" - }, - { - "name" : "CMAKE_INSTALL_MANDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Man documentation (DATAROOTDIR/man)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_NAME_TOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Users/mason/anaconda3/bin/install_name_tool" - }, - { - "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "C header files for non-gcc (/usr/include)" - } - ], - "type" : "PATH", - "value" : "/usr/include" - }, - { - "name" : "CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install path prefix, prepended onto install directories." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew" - }, - { - "name" : "CMAKE_INSTALL_RPATH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_RUNSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Run-time variable data (LOCALSTATEDIR/run)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_SBINDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "System admin executables (sbin)" - } - ], - "type" : "PATH", - "value" : "sbin" - }, - { - "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Modifiable architecture-independent data (com)" - } - ], - "type" : "PATH", - "value" : "com" - }, - { - "name" : "CMAKE_INSTALL_SYSCONFDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only single-machine data (etc)" - } - ], - "type" : "PATH", - "value" : "etc" - }, - { - "name" : "CMAKE_LINKER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ld" - }, - { - "name" : "CMAKE_MAKE_PROGRAM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/make" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_NM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/nm" - }, - { - "name" : "CMAKE_NUMBER_OF_MAKEFILES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "number of local generators" - } - ], - "type" : "INTERNAL", - "value" : "17" - }, - { - "name" : "CMAKE_OBJCOPY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_OBJCOPY-NOTFOUND" - }, - { - "name" : "CMAKE_OBJDUMP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/objdump" - }, - { - "name" : "CMAKE_OSX_ARCHITECTURES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build architectures for OSX" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_OSX_DEPLOYMENT_TARGET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_OSX_SYSROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The product will be built against the headers and libraries located inside the indicated SDK." - } - ], - "type" : "PATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - }, - { - "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Platform information initialized" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_PROJECT_DESCRIPTION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_HOMEPAGE_URL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_NAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "Bolt_DashApp" - }, - { - "name" : "CMAKE_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ranlib" - }, - { - "name" : "CMAKE_READELF", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_READELF-NOTFOUND" - }, - { - "name" : "CMAKE_ROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake installation." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SKIP_INSTALL_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_SKIP_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when using shared libraries." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_STAGING_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Staging path prefix, prepended onto install directories on the host machine." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STRIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/strip" - }, - { - "name" : "CMAKE_TAPI", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/tapi" - }, - { - "name" : "CMAKE_UNAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "uname command" - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/uname" - }, - { - "name" : "CMAKE_VERBOSE_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." - } - ], - "type" : "BOOL", - "value" : "FALSE" - }, - { - "name" : "FEATURE_pkg_config", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Using pkg-config" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "FETCHCONTENT_BASE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Directory under which to collect all populated content" - } - ], - "type" : "PATH", - "value" : "/Users/mason/Documents/Code/dash-cpp/build/_deps" - }, - { - "name" : "FETCHCONTENT_FULLY_DISCONNECTED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Disables all attempts to download or update content and assumes source dirs already exist" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "FETCHCONTENT_QUIET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enables QUIET option for all content population" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "FETCHCONTENT_SOURCE_DIR_DS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "When not empty, overrides where to find pre-populated content for ds" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "FETCHCONTENT_UPDATES_DISCONNECTED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enables UPDATE_DISCONNECTED behavior for all content population" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_DS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enables UPDATE_DISCONNECTED behavior just for population of ds" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding OpenGL" - } - ], - "type" : "INTERNAL", - "value" : "[/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][c ][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding Threads" - } - ], - "type" : "INTERNAL", - "value" : "[TRUE][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding WrapAtomic" - } - ], - "type" : "INTERNAL", - "value" : "[1][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding WrapOpenGL" - } - ], - "type" : "INTERNAL", - "value" : "[ON][v()]" - }, - { - "name" : "GIT_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Git command line client" - } - ], - "type" : "FILEPATH", - "value" : "/opt/homebrew/bin/git" - }, - { - "name" : "HAVE_STDATOMIC", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Test HAVE_STDATOMIC" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "INSTALL_ARCHDATADIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Arch-dependent data [PREFIX]" - } - ], - "type" : "STRING", - "value" : "share/qt" - }, - { - "name" : "INSTALL_BINDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executables [PREFIX/bin]" - } - ], - "type" : "STRING", - "value" : "bin" - }, - { - "name" : "INSTALL_DATADIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Arch-independent data [PREFIX]" - } - ], - "type" : "STRING", - "value" : "share/qt" - }, - { - "name" : "INSTALL_DESCRIPTIONSDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Module description files directory" - } - ], - "type" : "STRING", - "value" : "share/qt/modules" - }, - { - "name" : "INSTALL_DOCDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Documentation [DATADIR/doc]" - } - ], - "type" : "STRING", - "value" : "share/qt/doc" - }, - { - "name" : "INSTALL_EXAMPLESDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Examples [PREFIX/examples]" - } - ], - "type" : "STRING", - "value" : "share/qt/examples" - }, - { - "name" : "INSTALL_INCLUDEDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Header files [PREFIX/include]" - } - ], - "type" : "STRING", - "value" : "include" - }, - { - "name" : "INSTALL_LIBDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Libraries [PREFIX/lib]" - } - ], - "type" : "STRING", - "value" : "lib" - }, - { - "name" : "INSTALL_LIBEXECDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Helper programs [ARCHDATADIR/bin on Windows, ARCHDATADIR/libexec otherwise]" - } - ], - "type" : "STRING", - "value" : "share/qt/libexec" - }, - { - "name" : "INSTALL_MKSPECSDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Mkspecs files [PREFIX/mkspecs]" - } - ], - "type" : "STRING", - "value" : "share/qt/mkspecs" - }, - { - "name" : "INSTALL_PLUGINSDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Plugins [ARCHDATADIR/plugins]" - } - ], - "type" : "STRING", - "value" : "share/qt/plugins" - }, - { - "name" : "INSTALL_QMLDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "QML imports [ARCHDATADIR/qml]" - } - ], - "type" : "STRING", - "value" : "share/qt/qml" - }, - { - "name" : "INSTALL_SYSCONFDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Settings used by Qt programs [PREFIX/etc/xdg]/[/Library/Preferences/Qt]" - } - ], - "type" : "STRING", - "value" : "/Library/Preferences/Qt" - }, - { - "name" : "INSTALL_TESTSDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Tests [PREFIX/tests]" - } - ], - "type" : "STRING", - "value" : "share/qt/tests" - }, - { - "name" : "INSTALL_TRANSLATIONSDIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Translations [DATADIR/translations]" - } - ], - "type" : "STRING", - "value" : "share/qt/translations" - }, - { - "name" : "LINK_INSIGHT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Link Qt Insight Tracker library" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "MACDEPLOYQT_EXECUTABLE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/opt/homebrew/bin/macdeployqt" - }, - { - "name" : "OPENGL_INCLUDE_DIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Include for OpenGL on OS X" - } - ], - "type" : "PATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "OPENGL_gl_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "OpenGL library for OS X" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "OPENGL_glu_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "GLU library for OS X (usually same as OpenGL library)" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "PKG_CONFIG_ARGN", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Arguments to supply to pkg-config" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "PKG_CONFIG_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "pkg-config executable" - } - ], - "type" : "FILEPATH", - "value" : "PKG_CONFIG_EXECUTABLE-NOTFOUND" - }, - { - "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Additional directories where find(Qt6 ...) components are searched" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "QT_BUILD_BENCHMARKS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build Qt Benchmarks" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_EXAMPLES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build Qt examples" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_EXAMPLES_AS_EXTERNAL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Should examples be built as ExternalProjects." - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_EXAMPLES_BY_DEFAULT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Should examples be built as part of the default 'all' target." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "QT_BUILD_MANUAL_TESTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build Qt manual tests" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build minimal subset of tests for Android multi-ABI Qt builds" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_MINIMAL_STATIC_TESTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build minimal subset of tests for static Qt builds" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_TESTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build the testing tree." - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_TESTS_BATCHED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Should all tests be batched into a single binary." - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_BUILD_TESTS_BY_DEFAULT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Should tests be built as part of the default 'all' target." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "QT_BUILD_TOOLS_BY_DEFAULT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Should tools be built as part of the default 'all' target." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "QT_COPYRIGHT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "STRING", - "value" : "Copyright (C) 2023 The Qt Company Ltd and other contributors." - }, - { - "name" : "QT_COPYRIGHT_YEAR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "STRING", - "value" : "2023" - }, - { - "name" : "QT_CREATE_VERSIONED_HARD_LINK", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enable the use of versioned hard link" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_accessibility", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: accessibility (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_accessibility_atspi_bridge", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_action", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: action (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_aesni", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: aesni (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_alloca", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_alloca_h", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca_h (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_alloca_malloc_h", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_android_style_assets", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: android_style_assets (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_animation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: animation (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_appstore_compliant", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_arm_crc32", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_arm_crypto", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: arm_crypto (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_avx", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512bw", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512bw (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512cd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512cd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512dq", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512dq (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512er", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512er (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512f", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512f (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512ifma", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512ifma (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512pf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512pf (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vbmi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vbmi2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vl (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_backtrace", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: backtrace (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_brotli", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: brotli (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cborstreamreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cborstreamwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clipboard", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clipboard (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clock_gettime", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clock_gettime (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clock_monotonic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_close_range", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: close_range (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_colornames", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: colornames (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_commandlineparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: commandlineparser (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_concatenatetablesproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_concurrent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: concurrent (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cpp_winrt", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cross_compile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cross_compile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cssparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cssparser (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_ctf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ctf (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cursor", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cursor (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx11_future", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx11_future (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx17_filesystem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx20", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx20 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cxx2a", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx2a (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cxx2b", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx2b (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_datestring", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: datestring (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_datetimeparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: datetimeparser (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dbus", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dbus (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dbus_linked", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dbus_linked (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_debug", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: debug (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_debug_and_release", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: debug_and_release (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_desktopservices", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: desktopservices (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_developer_build", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: developer_build (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_direct2d", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: direct2d (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_direct2d1_1", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directwrite", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directwrite (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directwrite3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_dladdr", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dladdr (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dlopen", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dlopen (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dnslookup", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dnslookup (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_doubleconversion", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: doubleconversion (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_draganddrop", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: draganddrop (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_drm_atomic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_dtls", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dtls (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dynamicgl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_easingcurve", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: easingcurve (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_egl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: egl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_egl_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_brcm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_egldevice", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_gbm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_mali", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_openwfd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_rcar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_viv", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_viv_wl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_vsp2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_etw", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: etw (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_evdev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: evdev (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eventfd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eventfd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_f16c", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: f16c (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_filesystemiterator", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_filesystemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_filesystemwatcher", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_fontconfig", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: fontconfig (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_force_asserts", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: force_asserts (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_forkfd_pidfd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_framework", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: framework (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_freetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: freetype (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_futimens", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: futimens (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_future", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: future (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gc_binaries", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gc_binaries (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_gestures", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gestures (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_getauxval", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getauxval (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_getentropy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getentropy (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_getifaddrs", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getifaddrs (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gif", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gif (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_glib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: glib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_glibc", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: glibc (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_gssapi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gssapi (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gui", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gui (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_harfbuzz", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_highdpiscaling", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_hijricalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: hijricalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_http", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: http (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_ico", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ico (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_icu", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: icu (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_identityproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_ifr_index", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ifr_index (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_im", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: im (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_image_heuristic_mask", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_image_text", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: image_text (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_bmp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_ppm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_xbm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_xpm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformatplugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageio_text_loading", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_inotify", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: inotify (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_integrityfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: integrityfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_integrityhid", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: integrityhid (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_intelcet", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: intelcet (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ipv6ifname", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ipv6ifname (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_islamiccivilcalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_itemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: itemmodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_jalalicalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_journald", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: journald (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_kms", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: kms (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_largefile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: largefile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libinput", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libinput_axis_api", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libinput_hires_wheel_support", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libproxy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libproxy (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_library", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: library (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libresolv", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libresolv (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libudev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libudev (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linkat", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linkat (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linux_netlink", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linux_netlink (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linuxfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linuxfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_localserver", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: localserver (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_lttng", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: lttng (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_mimetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mimetype (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mimetype_database", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mimetype_database (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mips_dsp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mips_dsp (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_mips_dspr2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_movie", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: movie (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mtdev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mtdev (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_multiprocess", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: multiprocess (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_neon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: neon (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_network", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: network (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networkdiskcache", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkdiskcache (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networkinterface", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkinterface (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networklistmanager", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networklistmanager (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_networkproxy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkproxy (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_no_direct_extern_access", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ocsp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ocsp (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_opengl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_opengles2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles3 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles31", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles31 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles32", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles32 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_openssl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_openssl_hash", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl_hash (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_openssl_linked", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl_linked (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opensslv11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opensslv11 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opensslv30", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opensslv30 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_openvg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openvg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_pcre2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pcre2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_pdf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pdf (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_permissions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: permissions (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_picture", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: picture (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_pkg_config", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pkg_config (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_plugin_manifest", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_poll_exit_on_error", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_poll", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_poll (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_poll_pollts", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_pollts (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_ppoll", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_select", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_select (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_posix_fallocate", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_posix_sem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_sem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_posix_shm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_shm (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_precompile_header", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: precompile_header (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_printsupport", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: printsupport (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_private_tests", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: private_tests (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_process", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: process (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_processenvironment", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: processenvironment (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_proxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: proxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_publicsuffix_qt", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: publicsuffix_qt (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_publicsuffix_system", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: publicsuffix_system (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qml_animation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_animation (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_debug", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_debug (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_delegate_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_delegate_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_itemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_itemmodel (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_jit", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_jit (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qml_list_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_list_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_locale", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_locale (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_network", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_network (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_object_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_object_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_preview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_preview (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_profiler", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_profiler (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_python", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_python (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_table_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_table_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_worker_script", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_worker_script (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_xml_http_request", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_xml_http_request (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_xmllistmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_xmllistmodel (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qqnx_imf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qqnx_pps", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qt_framework", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qt_framework (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_animatedimage", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_animatedimage (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_canvas", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_canvas (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_designer", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_designer (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_draganddrop", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_draganddrop (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_flipable", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_flipable (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_gridview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_gridview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_itemview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_itemview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_listview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_listview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_particles", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_particles (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_path", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_path (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_pathview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_pathview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_pixmap_cache_threaded_download", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_pixmap_cache_threaded_download (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_positioners", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_positioners (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_repeater", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_repeater (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_shadereffect", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_shadereffect (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_sprite", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_sprite (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_tableview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_tableview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_treeview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_treeview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_viewtransitions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_viewtransitions (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_raster_64bit", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_raster_fp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: raster_fp (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_rdrnd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rdrnd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_rdseed", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rdseed (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_reduce_exports", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: reduce_exports (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_reduce_relocations", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_regularexpression", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: regularexpression (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_relocatable", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: relocatable (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_renameat2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: renameat2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_res_setservers", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: res_setservers (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_rpath", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rpath (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_schannel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: schannel (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sctp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sctp (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_securetransport", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: securetransport (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_separate_debug_info", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sessionmanager", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_settings", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: settings (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sha3_fast", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sha3_fast (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_shani", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shani (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_shared", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shared (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sharedmemory", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sharedmemory (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_shortcut", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shortcut (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_signaling_nan", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: signaling_nan (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_simulator_and_device", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_slog2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: slog2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_socks5", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: socks5 (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sortfilterproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sql", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sql (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sse2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse3 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse4_1", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse4_1 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse4_2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse4_2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ssl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ssl (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sspi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sspi (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ssse3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ssse3 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_stack_protector_strong", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stack_protector_strong (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_standarditemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_static", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: static (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_statx", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: statx (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_std_atomic64", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_stdlib_libcpp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_stringlistmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_syslog", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: syslog (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_system_doubleconversion", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_freetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_freetype (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_harfbuzz", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_libb2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_libb2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_pcre2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_proxies", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_proxies (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_textmarkdownreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_xcb_xinput", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_system_zlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_zlib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_systemsemaphore", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_systemtrayicon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sysv_sem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sysv_sem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sysv_shm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sysv_shm (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_tabletevent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tabletevent (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_temporaryfile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: temporaryfile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_testlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: testlib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textdate", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textdate (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_texthtmlparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textmarkdownreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textmarkdownwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textodfwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_thread", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: thread (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_timezone", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: timezone (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_topleveldomain", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: topleveldomain (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_translation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: translation (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_transposeproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_tslib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tslib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_tuiotouch", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_udpsocket", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: udpsocket (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undocommand", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undocommand (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undogroup", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undogroup (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undostack", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undostack (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_use_bfd_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_gold_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_lld_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_mold_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vaes", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vaes (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_validator", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: validator (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_vkgen", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vkgen (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_vkkhrdisplay", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vnc", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vnc (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vsp2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vsp2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vulkan", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vulkan (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_wasm_exceptions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_wasm_simd128", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_whatsthis", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: whatsthis (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_wheelevent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wheelevent (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_widgets", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: widgets (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_x86intrin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: x86intrin (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_egl_plugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_glx", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_glx_plugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_native_painting", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_sm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_xlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xkbcommon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xkbcommon_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xlib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xml", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xml (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstream", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstream (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstreamreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstreamwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xrender", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xrender (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_zstd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: zstd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_IS_MACOS_UNIVERSAL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_QPA_DEFAULT_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "STRING", - "value" : "cocoa" - }, - { - "name" : "QT_SOURCE_TREE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "A path to the source tree of the previously configured QtBase project." - } - ], - "type" : "PATH", - "value" : "/tmp/qt-20240222-75196-mh01f2/qt-everywhere-src-6.6.2/qtbase" - }, - { - "name" : "QT_UNITY_BUILD", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enable unity (jumbo) build" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_UNITY_BUILD_BATCH_SIZE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Unity build batch size" - } - ], - "type" : "STRING", - "value" : "32" - }, - { - "name" : "QT_USE_CCACHE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enable the use of ccache" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "QT_USE_VCPKG", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enable the use of vcpkg" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "QT_WILL_INSTALL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Boolean indicating if doing a Qt prefix build (vs non-prefix build)." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "Qt6BuildInternals_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6BuildInternals." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6BuildInternals" - }, - { - "name" : "Qt6CoreTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6CoreTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6CoreTools" - }, - { - "name" : "Qt6Core_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Core." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Core" - }, - { - "name" : "Qt6DBusTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6DBusTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6DBusTools" - }, - { - "name" : "Qt6DBus_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6DBus." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6DBus" - }, - { - "name" : "Qt6GuiTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6GuiTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6GuiTools" - }, - { - "name" : "Qt6Gui_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Gui." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Gui" - }, - { - "name" : "Qt6Network_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Network." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Network" - }, - { - "name" : "Qt6OpenGL_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6OpenGL." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6OpenGL" - }, - { - "name" : "Qt6QmlCompilerPlusPrivate_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivate." - } - ], - "type" : "PATH", - "value" : "Qt6QmlCompilerPlusPrivate_DIR-NOTFOUND" - }, - { - "name" : "Qt6QmlIntegration_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlIntegration." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration" - }, - { - "name" : "Qt6QmlModels_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlModels." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlModels" - }, - { - "name" : "Qt6QmlTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlTools" - }, - { - "name" : "Qt6Qml_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Qml." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Qml" - }, - { - "name" : "Qt6Quick_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Quick." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Quick" - }, - { - "name" : "Qt6_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6" - }, - { - "name" : "TEST_arch_arm64_subarch_crc32", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "TEST_arch_arm64_subarch_crypto", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "TEST_arch_arm64_subarch_neon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "TEST_architecture_arch", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "arm64" - }, - { - "name" : "TEST_buildAbi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "arm64-little_endian-lp64" - }, - { - "name" : "TEST_ld_version_script", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "TEST_subarch_result", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "neon;crc32;crypto" - }, - { - "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" - }, - { - "name" : "Vulkan_GLSLC_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" - }, - { - "name" : "Vulkan_INCLUDE_DIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a file." - } - ], - "type" : "PATH", - "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" - }, - { - "name" : "Vulkan_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a library." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_LIBRARY-NOTFOUND" - }, - { - "name" : "WARNINGS_ARE_ERRORS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build Qt with warnings as errors" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "WrapOpenGL_AGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to a library." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/AGL.framework" - }, - { - "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "CMAKE_INSTALL_PREFIX during last run" - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew" - }, - { - "name" : "__qt_qml_macros_module_base_dir", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/lib/cmake/Qt6Qml" - } - ], - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json deleted file mode 100644 index 98c951e..0000000 --- a/build/.cmake/api/v1/reply/cmakeFiles-v1-256c4d2247a2cba5e778.json +++ /dev/null @@ -1,4959 +0,0 @@ -{ - "inputs" : - [ - { - "path" : "CMakeLists.txt" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "path" : "qmlcomponents" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in" - }, - { - "path" : "qmlmodules" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "path" : "insight" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/CMakeLists.txt" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePrintHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildHelpers.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePackageConfigHelpers.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FeatureSummary.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtAndroidHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtAppHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtAutoDetectHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtAutogenHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildInformation.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildOptionsHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildPathsHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoExamplesHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtCMakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtDbusHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtDocsHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtExecutableHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtFindPackageHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtFlagHandlingHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtFrameworkHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtGlobalStateHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtHeadersClean.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtInstallHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtJavaHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtLalrHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtMkspecHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtModuleHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPkgConfigHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPlatformTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPluginHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPostProcessHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPriHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPrlHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtQmakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtResourceHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtRpathHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtSanitizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtSeparateDebugInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtSimdHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtSyncQtHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtTestHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtToolHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtToolchainHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtUnityBuildHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtWasmHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtWrapperScriptHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtFeature.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtFeatureCommon.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPlatformSupport.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPkgConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/CMakeLists.txt" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/CMakeLists.txt" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/CMakeLists.txt" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "path" : "content/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "path" : "imports/CMakeLists.txt" - }, - { - "path" : "imports/Bolt_Dash/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "path" : "imports/Backend/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - } - ], - "kind" : "cmakeFiles", - "paths" : - { - "build" : "/Users/mason/Documents/Code/dash-cpp/build", - "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json b/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json deleted file mode 100644 index e1e8069..0000000 --- a/build/.cmake/api/v1/reply/codemodel-v2-ad2e60b2d5fa1ddbf7d9.json +++ /dev/null @@ -1,1931 +0,0 @@ -{ - "configurations" : - [ - { - "directories" : - [ - { - "build" : ".", - "childIndexes" : - [ - 1, - 13, - 14 - ], - "hasInstallRule" : true, - "jsonFile" : "directory-.-Debug-47816394be0d82548d3c.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "projectIndex" : 0, - "source" : ".", - "targetIndexes" : - [ - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20 - ] - }, - { - "build" : "_deps/ds-build", - "childIndexes" : - [ - 2 - ], - "jsonFile" : "directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 0, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - }, - { - "build" : "_deps/ds-build/src", - "childIndexes" : - [ - 3 - ], - "jsonFile" : "directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 1, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src" - }, - { - "build" : "_deps/ds-build/src/imports", - "childIndexes" : - [ - 4, - 5, - 6, - 7, - 8, - 9, - 12 - ], - "jsonFile" : "directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 2, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports" - }, - { - "build" : "_deps/ds-build/src/imports/components", - "jsonFile" : "directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "targetIndexes" : - [ - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 159, - 160, - 161, - 162 - ] - }, - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "jsonFile" : "directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "targetIndexes" : - [ - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94 - ] - }, - { - "build" : "_deps/ds-build/src/imports/flowview", - "jsonFile" : "directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "targetIndexes" : - [ - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50 - ] - }, - { - "build" : "_deps/ds-build/src/imports/logichelper", - "jsonFile" : "directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "targetIndexes" : - [ - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142 - ] - }, - { - "build" : "_deps/ds-build/src/imports/multitext", - "jsonFile" : "directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "targetIndexes" : - [ - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158 - ] - }, - { - "build" : "_deps/ds-build/src/imports/tools", - "childIndexes" : - [ - 10, - 11 - ], - "jsonFile" : "directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools" - }, - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "jsonFile" : "directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 9, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "targetIndexes" : - [ - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110 - ] - }, - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "jsonFile" : "directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 9, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "targetIndexes" : - [ - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126 - ] - }, - { - "build" : "_deps/ds-build/src/imports/application", - "jsonFile" : "directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 3, - "projectIndex" : 0, - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", - "targetIndexes" : - [ - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62 - ] - }, - { - "build" : "content", - "jsonFile" : "directory-content-Debug-61a361743d88a3b42c45.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 0, - "projectIndex" : 0, - "source" : "content", - "targetIndexes" : - [ - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178 - ] - }, - { - "build" : "imports", - "childIndexes" : - [ - 15, - 16 - ], - "jsonFile" : "directory-imports-Debug-615074570c3908afab44.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 0, - "projectIndex" : 0, - "source" : "imports" - }, - { - "build" : "imports/Bolt_Dash", - "jsonFile" : "directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 14, - "projectIndex" : 0, - "source" : "imports/Bolt_Dash", - "targetIndexes" : - [ - 11, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35 - ] - }, - { - "build" : "imports/Backend", - "jsonFile" : "directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 14, - "projectIndex" : 0, - "source" : "imports/Backend", - "targetIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 179 - ] - } - ], - "name" : "Debug", - "projects" : - [ - { - "directoryIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16 - ], - "name" : "Bolt_DashApp", - "targetIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179 - ] - } - ], - "targets" : - [ - { - "directoryIndex" : 16, - "id" : "Backend::@b539f45bba5ba55bae2a", - "jsonFile" : "target-Backend-Debug-de734fde861fd851f012.json", - "name" : "Backend", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json", - "name" : "BackendPlugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json", - "name" : "BackendPlugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json", - "name" : "BackendPlugin_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json", - "name" : "BackendPlugin_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json", - "name" : "BackendPlugin_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json", - "name" : "BackendPlugin_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json", - "name" : "BackendPlugin_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json", - "name" : "BackendPluginplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a", - "jsonFile" : "target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json", - "name" : "BackendPluginplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "Backend_autogen::@b539f45bba5ba55bae2a", - "jsonFile" : "target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json", - "name" : "Backend_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json", - "name" : "Bolt_Dash", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json", - "name" : "Bolt_DashApp", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json", - "name" : "Bolt_DashApp_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json", - "name" : "Bolt_DashApp_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json", - "name" : "Bolt_DashApp_qmlimportscan", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json", - "name" : "Bolt_DashApp_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json", - "name" : "Bolt_DashApp_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json", - "name" : "Bolt_DashApp_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json", - "name" : "Bolt_DashApp_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json", - "name" : "Bolt_DashApp_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json", - "name" : "Bolt_Dash_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json", - "name" : "Bolt_Dash_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json", - "name" : "Bolt_Dash_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json", - "name" : "Bolt_Dash_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json", - "name" : "Bolt_Dash_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json", - "name" : "Bolt_Dash_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json", - "name" : "Bolt_Dash_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json", - "name" : "Bolt_Dash_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json", - "name" : "Bolt_Dash_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json", - "name" : "Bolt_Dash_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json", - "name" : "Bolt_Dash_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json", - "name" : "Bolt_Dashplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json", - "name" : "Bolt_Dashplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json", - "name" : "Bolt_Dashplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 15, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json", - "name" : "Bolt_Dashplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView-Debug-9ae8992f3002d4d4605a.json", - "name" : "FlowView", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_autogen-Debug-067fd34decd4a498dab5.json", - "name" : "FlowView_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json", - "name" : "FlowView_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json", - "name" : "FlowView_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json", - "name" : "FlowView_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json", - "name" : "FlowView_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json", - "name" : "FlowView_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json", - "name" : "FlowView_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json", - "name" : "FlowView_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json", - "name" : "FlowView_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowView_tooling-Debug-8926159527a4d8731d7a.json", - "name" : "FlowView_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json", - "name" : "FlowViewplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json", - "name" : "FlowViewplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json", - "name" : "FlowViewplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 6, - "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232", - "jsonFile" : "target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json", - "name" : "FlowViewplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json", - "name" : "QuickStudioApplication", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json", - "name" : "QuickStudioApplication_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json", - "name" : "QuickStudioApplication_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json", - "name" : "QuickStudioApplication_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json", - "name" : "QuickStudioApplication_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json", - "name" : "QuickStudioApplication_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json", - "name" : "QuickStudioApplication_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json", - "name" : "QuickStudioApplication_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json", - "name" : "QuickStudioApplicationplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json", - "name" : "QuickStudioApplicationplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json", - "name" : "QuickStudioApplicationplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 12, - "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2", - "jsonFile" : "target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json", - "name" : "QuickStudioApplicationplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json", - "name" : "QuickStudioComponents", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json", - "name" : "QuickStudioComponents_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json", - "name" : "QuickStudioComponents_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json", - "name" : "QuickStudioComponents_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json", - "name" : "QuickStudioComponents_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json", - "name" : "QuickStudioComponents_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json", - "name" : "QuickStudioComponents_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json", - "name" : "QuickStudioComponents_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json", - "name" : "QuickStudioComponents_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json", - "name" : "QuickStudioComponents_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json", - "name" : "QuickStudioComponents_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json", - "name" : "QuickStudioComponents_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json", - "name" : "QuickStudioComponentsplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json", - "name" : "QuickStudioComponentsplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json", - "name" : "QuickStudioComponentsplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json", - "name" : "QuickStudioComponentsplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json", - "name" : "QuickStudioEffects", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json", - "name" : "QuickStudioEffects_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json", - "name" : "QuickStudioEffects_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json", - "name" : "QuickStudioEffects_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json", - "name" : "QuickStudioEffects_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json", - "name" : "QuickStudioEffects_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json", - "name" : "QuickStudioEffects_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json", - "name" : "QuickStudioEffects_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json", - "name" : "QuickStudioEffects_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json", - "name" : "QuickStudioEffects_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json", - "name" : "QuickStudioEffects_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json", - "name" : "QuickStudioEffects_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json", - "name" : "QuickStudioEffectsplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json", - "name" : "QuickStudioEffectsplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json", - "name" : "QuickStudioEffectsplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 5, - "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24", - "jsonFile" : "target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json", - "name" : "QuickStudioEffectsplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json", - "name" : "QuickStudioEventSimulator", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json", - "name" : "QuickStudioEventSimulator_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json", - "name" : "QuickStudioEventSimulator_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json", - "name" : "QuickStudioEventSimulator_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json", - "name" : "QuickStudioEventSimulator_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json", - "name" : "QuickStudioEventSimulator_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json", - "name" : "QuickStudioEventSimulator_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json", - "name" : "QuickStudioEventSimulator_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json", - "name" : "QuickStudioEventSimulator_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json", - "name" : "QuickStudioEventSimulator_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json", - "name" : "QuickStudioEventSimulator_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json", - "name" : "QuickStudioEventSimulator_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json", - "name" : "QuickStudioEventSimulatorplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json", - "name" : "QuickStudioEventSimulatorplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json", - "name" : "QuickStudioEventSimulatorplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 10, - "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922", - "jsonFile" : "target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json", - "name" : "QuickStudioEventSimulatorplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json", - "name" : "QuickStudioEventSystem", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json", - "name" : "QuickStudioEventSystem_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json", - "name" : "QuickStudioEventSystem_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json", - "name" : "QuickStudioEventSystem_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json", - "name" : "QuickStudioEventSystem_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json", - "name" : "QuickStudioEventSystem_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json", - "name" : "QuickStudioEventSystem_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json", - "name" : "QuickStudioEventSystem_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json", - "name" : "QuickStudioEventSystem_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json", - "name" : "QuickStudioEventSystem_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json", - "name" : "QuickStudioEventSystem_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json", - "name" : "QuickStudioEventSystem_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json", - "name" : "QuickStudioEventSystemplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json", - "name" : "QuickStudioEventSystemplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json", - "name" : "QuickStudioEventSystemplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 11, - "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db", - "jsonFile" : "target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json", - "name" : "QuickStudioEventSystemplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json", - "name" : "QuickStudioLogicHelper", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json", - "name" : "QuickStudioLogicHelper_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json", - "name" : "QuickStudioLogicHelper_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json", - "name" : "QuickStudioLogicHelper_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json", - "name" : "QuickStudioLogicHelper_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json", - "name" : "QuickStudioLogicHelper_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json", - "name" : "QuickStudioLogicHelper_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json", - "name" : "QuickStudioLogicHelper_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json", - "name" : "QuickStudioLogicHelper_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json", - "name" : "QuickStudioLogicHelper_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json", - "name" : "QuickStudioLogicHelper_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json", - "name" : "QuickStudioLogicHelper_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json", - "name" : "QuickStudioLogicHelperplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json", - "name" : "QuickStudioLogicHelperplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json", - "name" : "QuickStudioLogicHelperplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 7, - "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8", - "jsonFile" : "target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json", - "name" : "QuickStudioLogicHelperplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json", - "name" : "QuickStudioMultiText", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json", - "name" : "QuickStudioMultiText_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json", - "name" : "QuickStudioMultiText_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json", - "name" : "QuickStudioMultiText_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json", - "name" : "QuickStudioMultiText_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json", - "name" : "QuickStudioMultiText_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json", - "name" : "QuickStudioMultiText_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json", - "name" : "QuickStudioMultiText_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json", - "name" : "QuickStudioMultiText_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json", - "name" : "QuickStudioMultiText_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json", - "name" : "QuickStudioMultiText_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json", - "name" : "QuickStudioMultiText_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json", - "name" : "QuickStudioMultiTextplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json", - "name" : "QuickStudioMultiTextplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json", - "name" : "QuickStudioMultiTextplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 8, - "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2", - "jsonFile" : "target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json", - "name" : "QuickStudioMultiTextplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "all_qmllint::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-all_qmllint-Debug-0f40c30e93bae5da3a81.json", - "name" : "all_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "all_qmllint_json::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-all_qmllint_json-Debug-d117ee47724a917c25a6.json", - "name" : "all_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "all_qmllint_module::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json", - "name" : "all_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda", - "jsonFile" : "target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json", - "name" : "all_qmltyperegistrations", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content-Debug-c060ad8002349d7d4719.json", - "name" : "content", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json", - "name" : "content_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json", - "name" : "content_automoc_json_extraction", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmlcache::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmlcache-Debug-25ce992711465a39f5da.json", - "name" : "content_qmlcache", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json", - "name" : "content_qmlcache_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmllint::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json", - "name" : "content_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json", - "name" : "content_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json", - "name" : "content_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmltyperegistration-Debug-6619c21d07987003e504.json", - "name" : "content_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_resources_1::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json", - "name" : "content_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_resources_2::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json", - "name" : "content_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "content_tooling::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json", - "name" : "content_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "contentplugin::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin-Debug-e8dbacf35574156a146d.json", - "name" : "contentplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_autogen-Debug-3519fac822a7f673e653.json", - "name" : "contentplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "contentplugin_init::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_init-Debug-52add43ca8eedc831dec.json", - "name" : "contentplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 13, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json", - "name" : "contentplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 16, - "id" : "qt_internal_plugins::@b539f45bba5ba55bae2a", - "jsonFile" : "target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json", - "name" : "qt_internal_plugins", - "projectIndex" : 0 - } - ] - } - ], - "kind" : "codemodel", - "paths" : - { - "build" : "/Users/mason/Documents/Code/dash-cpp/build", - "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - "version" : - { - "major" : 2, - "minor" : 6 - } -} diff --git a/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json b/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json deleted file mode 100644 index 1ace688..0000000 --- a/build/.cmake/api/v1/reply/directory-.-Debug-47816394be0d82548d3c.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : - [ - "install" - ], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - }, - { - "command" : 0, - "file" : 0, - "line" : 42, - "parent" : 0 - } - ] - }, - "installers" : - [ - { - "backtrace" : 1, - "component" : "Unspecified", - "destination" : "bin", - "paths" : - [ - "Bolt_DashApp" - ], - "targetId" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "targetIndex" : 12, - "type" : "target" - } - ], - "paths" : - { - "build" : ".", - "source" : "." - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json deleted file mode 100644 index 6584403..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build-Debug-45915f4ed77ac65fb59f.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json deleted file mode 100644 index 04c52ab..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src-Debug-086a1021909f660ac8f0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json deleted file mode 100644 index e85ed5e..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports-Debug-6ae157d3befc2d39f7b0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json deleted file mode 100644 index 26c6c92..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.application-Debug-e11a881a4fda21f1b735.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json deleted file mode 100644 index d2bf57e..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.components-Debug-4293b42b57a71d3edc40.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json deleted file mode 100644 index 1ac8cdd..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.effects_qt6-Debug-e6fb1a94da029e11c833.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json deleted file mode 100644 index b93c6aa..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.flowview-Debug-053280cd8c5d79e97027.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json deleted file mode 100644 index 5a0b15d..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.logichelper-Debug-695ea36ef5b701d62d76.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json deleted file mode 100644 index 8101e01..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.multitext-Debug-9316be53bba37f42017a.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json deleted file mode 100644 index de53846..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools-Debug-8b6400d24bd3c996d3e7.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json deleted file mode 100644 index b973bdf..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsimulator-Debug-22fca08e32e75018a8c7.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - } -} diff --git a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json b/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json deleted file mode 100644 index 3f920e4..0000000 --- a/build/.cmake/api/v1/reply/directory-_deps.ds-build.src.imports.tools.eventsystem-Debug-efc5c2a7251938dd6f45.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - } -} diff --git a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json deleted file mode 100644 index 4437fd9..0000000 --- a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "content", - "source" : "content" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json deleted file mode 100644 index 6572549..0000000 --- a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports", - "source" : "imports" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json b/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json deleted file mode 100644 index a5b6694..0000000 --- a/build/.cmake/api/v1/reply/directory-imports.Backend-Debug-ce54a73fda8314d5dfb3.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json deleted file mode 100644 index 9c2180d..0000000 --- a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - } -} diff --git a/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json b/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json deleted file mode 100644 index 25ce36d..0000000 --- a/build/.cmake/api/v1/reply/index-2024-04-03T21-01-57-0879.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "cmake" : - { - "generator" : - { - "multiConfig" : false, - "name" : "Unix Makefiles" - }, - "paths" : - { - "cmake" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "cpack" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cpack", - "ctest" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/ctest", - "root" : "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake" - }, - "version" : - { - "isDirty" : false, - "major" : 3, - "minor" : 27, - "patch" : 8, - "string" : "3.27.8", - "suffix" : "" - } - }, - "objects" : - [ - { - "jsonFile" : "codemodel-v2-ad2e60b2d5fa1ddbf7d9.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 6 - } - }, - { - "jsonFile" : "cache-v2-09572c2a4037f1c266b0.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-256c4d2247a2cba5e778.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - }, - { - "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ], - "reply" : - { - "client-vscode" : - { - "query.json" : - { - "requests" : - [ - { - "kind" : "cache", - "version" : 2 - }, - { - "kind" : "codemodel", - "version" : 2 - }, - { - "kind" : "toolchains", - "version" : 1 - }, - { - "kind" : "cmakeFiles", - "version" : 1 - } - ], - "responses" : - [ - { - "jsonFile" : "cache-v2-09572c2a4037f1c266b0.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "codemodel-v2-ad2e60b2d5fa1ddbf7d9.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 6 - } - }, - { - "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-256c4d2247a2cba5e778.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ] - } - } - } -} diff --git a/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json b/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json deleted file mode 100644 index d415e73..0000000 --- a/build/.cmake/api/v1/reply/target-Backend-Debug-de734fde861fd851f012.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "imports/Backend/libBackend.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include" - } - ], - "language" : "CXX", - "sourceIndexes" : - [ - 0 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Backend_autogen::@b539f45bba5ba55bae2a" - } - ], - "id" : "Backend::@b539f45bba5ba55bae2a", - "name" : "Backend", - "nameOnDisk" : "libBackend.a", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json b/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json deleted file mode 100644 index d3e649f..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin-Debug-eacb7cbe9c7a6ef2da10.json +++ /dev/null @@ -1,568 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Backend/libBackendPlugin.dylib" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt6_add_qml_module", - "target_link_libraries", - "set_target_properties", - "include", - "find_package", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 387, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 4, - "file" : 1, - "line" : 392, - "parent" : 1 - }, - { - "file" : 6 - }, - { - "command" : 7, - "file" : 6, - "line" : 10, - "parent" : 6 - }, - { - "file" : 5, - "parent" : 7 - }, - { - "command" : 7, - "file" : 5, - "line" : 164, - "parent" : 8 - }, - { - "file" : 4, - "parent" : 9 - }, - { - "command" : 6, - "file" : 4, - "line" : 53, - "parent" : 10 - }, - { - "file" : 3, - "parent" : 11 - }, - { - "command" : 5, - "file" : 3, - "line" : 62, - "parent" : 12 - }, - { - "command" : 7, - "file" : 5, - "line" : 164, - "parent" : 8 - }, - { - "file" : 8, - "parent" : 14 - }, - { - "command" : 6, - "file" : 8, - "line" : 53, - "parent" : 15 - }, - { - "file" : 7, - "parent" : 16 - }, - { - "command" : 5, - "file" : 7, - "line" : 62, - "parent" : 17 - }, - { - "command" : 9, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 8, - "file" : 1, - "line" : 2752, - "parent" : 19 - }, - { - "command" : 8, - "file" : 1, - "line" : 2777, - "parent" : 19 - }, - { - "command" : 11, - "file" : 1, - "line" : 2582, - "parent" : 19 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 22 - }, - { - "command" : 10, - "file" : 1, - "line" : 2743, - "parent" : 19 - }, - { - "command" : 14, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 25 - }, - { - "command" : 12, - "file" : 0, - "line" : 2150, - "parent" : 26 - }, - { - "command" : 10, - "file" : 0, - "line" : 1794, - "parent" : 27 - }, - { - "command" : 10, - "file" : 1, - "line" : 623, - "parent" : 1 - }, - { - "file" : 2, - "line" : -1, - "parent" : 0 - }, - { - "command" : 16, - "file" : 9, - "line" : 1, - "parent" : 30 - }, - { - "command" : 15, - "file" : 0, - "line" : 764, - "parent" : 31 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 32 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" - } - ], - "defines" : - [ - { - "define" : "BackendPlugin_EXPORTS" - }, - { - "backtrace" : 5, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include" - }, - { - "backtrace" : 20, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 5 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 3, - 4, - 7 - ] - } - ], - "dependencies" : - [ - { - "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a" - }, - { - "backtrace" : 0, - "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a" - } - ], - "id" : "BackendPlugin::@b539f45bba5ba55bae2a", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "", - "role" : "flags" - }, - { - "fragment" : "-iframework /opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/opt/homebrew/lib", - "role" : "libraries" - }, - { - "backtrace" : 5, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 13, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 13, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 18, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 18, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "BackendPlugin", - "nameOnDisk" : "libBackendPlugin.dylib", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 3, - 4, - 7 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 8, - 9, - 14, - 15, - 16 - ] - }, - { - "name" : "Header Files", - "sourceIndexes" : - [ - 5, - 6 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 10, - 11, - 12, - 13 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 29, - "compileGroupIndex" : 0, - "path" : "imports/Backend/can.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 29, - "path" : "imports/Backend/can.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 29, - "path" : "imports/Backend/backend.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 29, - "compileGroupIndex" : 0, - "path" : "imports/Backend/backend.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 33, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 33, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "SHARED_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json b/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json deleted file mode 100644 index c09b093..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_autogen-Debug-a73dfb3a4ea3a348cd52.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a", - "isGeneratorProvided" : true, - "name" : "BackendPlugin_autogen", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json b/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json deleted file mode 100644 index 89febf2..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_automoc_json_extraction-Debug-a9feb18d590cb4415c47.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "BackendPlugin_autogen::@b539f45bba5ba55bae2a" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a", - "name" : "BackendPlugin_automoc_json_extraction", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json deleted file mode 100644 index 139cabd..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint-Debug-82a4fd9208fabd1fea3a.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a", - "name" : "BackendPlugin_qmllint", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json deleted file mode 100644 index be52053..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_json-Debug-d229ff952a0acc21b751.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a", - "name" : "BackendPlugin_qmllint_json", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json deleted file mode 100644 index d060528..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_qmllint_module-Debug-2fcb4aca214837a47999.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a", - "name" : "BackendPlugin_qmllint_module", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json b/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json deleted file mode 100644 index 00e1db6..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPlugin_qmltyperegistration-Debug-a5029b34c5389525c0fe.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "BackendPlugin_automoc_json_extraction::@b539f45bba5ba55bae2a" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a", - "name" : "BackendPlugin_qmltyperegistration", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json b/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json deleted file mode 100644 index 027c9b3..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPluginplugin-Debug-964102888d1d9a6883d7.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "qml/Backend/libBackendPluginplugin.dylib" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "set_target_properties", - "include", - "find_package", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "file" : 6 - }, - { - "command" : 8, - "file" : 6, - "line" : 10, - "parent" : 8 - }, - { - "file" : 5, - "parent" : 9 - }, - { - "command" : 8, - "file" : 5, - "line" : 164, - "parent" : 10 - }, - { - "file" : 4, - "parent" : 11 - }, - { - "command" : 7, - "file" : 4, - "line" : 53, - "parent" : 12 - }, - { - "file" : 3, - "parent" : 13 - }, - { - "command" : 6, - "file" : 3, - "line" : 62, - "parent" : 14 - }, - { - "command" : 8, - "file" : 5, - "line" : 164, - "parent" : 10 - }, - { - "file" : 8, - "parent" : 16 - }, - { - "command" : 7, - "file" : 8, - "line" : 53, - "parent" : 17 - }, - { - "file" : 7, - "parent" : 18 - }, - { - "command" : 6, - "file" : 7, - "line" : 62, - "parent" : 19 - }, - { - "command" : 9, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 10, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" - } - ], - "defines" : - [ - { - "define" : "BackendPluginplugin_EXPORTS" - }, - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 21, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 21, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "BackendPlugin::@b539f45bba5ba55bae2a" - }, - { - "backtrace" : 0, - "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a" - } - ], - "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "", - "role" : "flags" - }, - { - "fragment" : "-iframework /opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/Backend -Wl,-rpath,/opt/homebrew/lib", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "libBackendPlugin.dylib", - "role" : "libraries" - }, - { - "backtrace" : 7, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 20, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 20, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "BackendPluginplugin", - "nameOnDisk" : "libBackendPluginplugin.dylib", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "MODULE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json b/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json deleted file mode 100644 index b907e67..0000000 --- a/build/.cmake/api/v1/reply/target-BackendPluginplugin_autogen-Debug-ddef841ea250b6451802.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "BackendPluginplugin_autogen::@b539f45bba5ba55bae2a", - "isGeneratorProvided" : true, - "name" : "BackendPluginplugin_autogen", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json b/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json deleted file mode 100644 index d0ec91e..0000000 --- a/build/.cmake/api/v1/reply/target-Backend_autogen-Debug-9983c5ff9bcf52fc6d4e.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Backend_autogen::@b539f45bba5ba55bae2a", - "isGeneratorProvided" : true, - "name" : "Backend_autogen", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json deleted file mode 100644 index 181ac4c..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-de1e1513a1cd37cb63ec.json +++ /dev/null @@ -1,532 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/libBolt_Dash.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 23 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 24 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 25 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10 - ] - } - ], - "dependencies" : - [ - { - "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929" - }, - { - "backtrace" : 7, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dash::@4896ae50d004c4a48929", - "name" : "Bolt_Dash", - "nameOnDisk" : "libBolt_Dash.a", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 12, - 13, - 21, - 22, - 23 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 14, - 15, - 16, - 17, - 18, - 19, - 20 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "imports/Bolt_Dash/Constants.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "imports/Bolt_Dash/DirectoryFontLoader.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "imports/Bolt_Dash/EventListModel.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "imports/Bolt_Dash/EventListSimulator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 26, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json deleted file mode 100644 index d245c50..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-763ba49338c5ff5ad7aa.json +++ /dev/null @@ -1,2908 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "Bolt_DashApp" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_executable", - "_qt_internal_create_executable", - "qt6_add_executable", - "qt_add_executable", - "install", - "target_link_libraries", - "__qt_internal_propagate_object_files", - "__qt_internal_propagate_object_library", - "qt6_add_qml_module", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "include", - "set_target_properties", - "find_package", - "qt6_add_qml_plugin", - "add_dependencies", - "_qt_internal_scan_qml_imports", - "_qt_internal_generate_deploy_qml_imports_script", - "cmake_language", - "_qt_internal_finalize_executable", - "qt6_finalize_target", - "target_compile_definitions", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt_add_resources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "qmlcomponents", - "qmlmodules", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 16, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 815, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 575, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 626, - "parent" : 3 - }, - { - "command" : 4, - "file" : 1, - "line" : 42, - "parent" : 0 - }, - { - "file" : 3 - }, - { - "command" : 8, - "file" : 3, - "line" : 2, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 8 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 9 - }, - { - "file" : 4 - }, - { - "command" : 8, - "file" : 4, - "line" : 2, - "parent" : 11 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 12 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 13 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 14 - }, - { - "file" : 5 - }, - { - "command" : 8, - "file" : 5, - "line" : 6, - "parent" : 16 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 17 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 18 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 19 - }, - { - "file" : 6 - }, - { - "command" : 8, - "file" : 6, - "line" : 6, - "parent" : 21 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 22 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 23 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 24 - }, - { - "file" : 7 - }, - { - "command" : 8, - "file" : 7, - "line" : 2, - "parent" : 26 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 27 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 28 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 29 - }, - { - "file" : 8 - }, - { - "command" : 8, - "file" : 8, - "line" : 2, - "parent" : 31 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 32 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 33 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 34 - }, - { - "file" : 9 - }, - { - "command" : 8, - "file" : 9, - "line" : 6, - "parent" : 36 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 37 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 38 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 39 - }, - { - "file" : 10 - }, - { - "command" : 8, - "file" : 10, - "line" : 7, - "parent" : 41 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 42 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 43 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 44 - }, - { - "file" : 11 - }, - { - "command" : 8, - "file" : 11, - "line" : 5, - "parent" : 46 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 47 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 48 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 49 - }, - { - "file" : 12 - }, - { - "command" : 8, - "file" : 12, - "line" : 10, - "parent" : 51 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 52 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 53 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 54 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 7 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 56 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 57 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 58 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 59 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 60 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 7 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 62 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 63 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 64 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 65 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 66 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 62 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 68 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 69 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 70 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 71 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 72 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 12 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 74 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 75 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 76 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 77 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 78 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 12 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 80 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 81 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 82 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 83 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 84 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 80 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 86 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 87 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 88 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 89 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 90 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 17 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 92 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 93 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 94 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 95 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 96 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 22 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 98 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 99 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 100 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 101 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 102 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 98 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 104 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 105 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 106 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 107 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 108 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 27 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 110 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 111 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 112 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 113 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 114 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 27 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 116 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 117 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 118 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 119 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 120 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 116 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 122 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 123 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 124 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 125 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 126 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 32 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 128 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 129 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 130 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 131 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 132 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 32 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 134 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 135 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 136 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 137 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 138 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 134 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 140 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 141 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 142 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 143 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 144 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 37 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 146 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 147 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 148 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 149 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 150 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 37 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 152 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 153 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 154 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 155 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 156 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 152 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 158 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 159 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 160 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 161 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 162 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 42 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 164 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 165 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 166 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 167 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 168 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 42 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 170 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 171 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 172 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 173 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 174 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 170 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 176 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 177 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 178 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 179 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 180 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 47 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 182 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 183 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 184 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 185 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 186 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 47 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 188 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 189 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 190 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 191 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 192 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 188 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 194 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 195 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 196 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 197 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 198 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 52 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 200 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 201 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 202 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 203 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 204 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 52 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 206 - }, - { - "command" : 12, - "file" : 2, - "line" : 1144, - "parent" : 207 - }, - { - "command" : 7, - "file" : 2, - "line" : 1001, - "parent" : 208 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 209 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 210 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 206 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 212 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 213 - }, - { - "command" : 7, - "file" : 0, - "line" : 1787, - "parent" : 214 - }, - { - "command" : 6, - "file" : 0, - "line" : 1727, - "parent" : 215 - }, - { - "command" : 5, - "file" : 0, - "line" : 1675, - "parent" : 216 - }, - { - "command" : 5, - "file" : 1, - "line" : 24, - "parent" : 0 - }, - { - "command" : 15, - "file" : 1, - "line" : 32, - "parent" : 0 - }, - { - "file" : 13, - "parent" : 219 - }, - { - "command" : 5, - "file" : 13, - "line" : 18, - "parent" : 220 - }, - { - "command" : 15, - "file" : 1, - "line" : 35, - "parent" : 0 - }, - { - "file" : 14, - "parent" : 222 - }, - { - "command" : 5, - "file" : 14, - "line" : 14, - "parent" : 223 - }, - { - "command" : 17, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "file" : 17, - "parent" : 225 - }, - { - "command" : 17, - "file" : 17, - "line" : 164, - "parent" : 226 - }, - { - "file" : 16, - "parent" : 227 - }, - { - "command" : 15, - "file" : 16, - "line" : 52, - "parent" : 228 - }, - { - "file" : 15, - "parent" : 229 - }, - { - "command" : 16, - "file" : 15, - "line" : 62, - "parent" : 230 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 7 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 232 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 12 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 234 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 17 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 236 - }, - { - "command" : 17, - "file" : 17, - "line" : 164, - "parent" : 226 - }, - { - "file" : 19, - "parent" : 238 - }, - { - "command" : 15, - "file" : 19, - "line" : 52, - "parent" : 239 - }, - { - "file" : 18, - "parent" : 240 - }, - { - "command" : 16, - "file" : 18, - "line" : 62, - "parent" : 241 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 22 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 243 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 27 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 245 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 32 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 247 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 37 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 249 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 42 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 251 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 47 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 253 - }, - { - "command" : 18, - "file" : 2, - "line" : 611, - "parent" : 52 - }, - { - "command" : 5, - "file" : 2, - "line" : 1937, - "parent" : 255 - }, - { - "command" : 17, - "file" : 17, - "line" : 164, - "parent" : 226 - }, - { - "file" : 21, - "parent" : 257 - }, - { - "command" : 15, - "file" : 21, - "line" : 53, - "parent" : 258 - }, - { - "file" : 20, - "parent" : 259 - }, - { - "command" : 16, - "file" : 20, - "line" : 62, - "parent" : 260 - }, - { - "command" : 5, - "file" : 0, - "line" : 576, - "parent" : 2 - }, - { - "command" : 17, - "file" : 17, - "line" : 164, - "parent" : 226 - }, - { - "file" : 23, - "parent" : 263 - }, - { - "command" : 15, - "file" : 23, - "line" : 53, - "parent" : 264 - }, - { - "file" : 22, - "parent" : 265 - }, - { - "command" : 16, - "file" : 22, - "line" : 62, - "parent" : 266 - }, - { - "command" : 8, - "file" : 14, - "line" : 4, - "parent" : 223 - }, - { - "command" : 14, - "file" : 2, - "line" : 633, - "parent" : 268 - }, - { - "command" : 19, - "file" : 2, - "line" : 2441, - "parent" : 269 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 24, - "file" : 24, - "line" : 1, - "parent" : 271 - }, - { - "command" : 23, - "file" : 0, - "line" : 769, - "parent" : 272 - }, - { - "command" : 22, - "file" : 0, - "line" : 675, - "parent" : 273 - }, - { - "command" : 21, - "file" : 0, - "line" : 675, - "parent" : 274 - }, - { - "command" : 20, - "file" : 2, - "line" : 3122, - "parent" : 275 - }, - { - "command" : 19, - "file" : 2, - "line" : 2974, - "parent" : 276 - }, - { - "command" : 25, - "file" : 13, - "line" : 31, - "parent" : 220 - }, - { - "command" : 27, - "file" : 2, - "line" : 540, - "parent" : 268 - }, - { - "command" : 26, - "file" : 2, - "line" : 2752, - "parent" : 279 - }, - { - "command" : 26, - "file" : 2, - "line" : 2777, - "parent" : 279 - }, - { - "command" : 29, - "file" : 1, - "line" : 18, - "parent" : 0 - }, - { - "command" : 11, - "file" : 0, - "line" : 389, - "parent" : 282 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 283 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 284 - }, - { - "command" : 28, - "file" : 0, - "line" : 1794, - "parent" : 285 - }, - { - "command" : 30, - "file" : 2, - "line" : 2582, - "parent" : 279 - }, - { - "command" : 28, - "file" : 0, - "line" : 1210, - "parent" : 287 - }, - { - "command" : 28, - "file" : 2, - "line" : 2743, - "parent" : 279 - }, - { - "command" : 11, - "file" : 2, - "line" : 584, - "parent" : 268 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 290 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 291 - }, - { - "command" : 28, - "file" : 0, - "line" : 1794, - "parent" : 292 - }, - { - "command" : 28, - "file" : 2, - "line" : 2224, - "parent" : 269 - }, - { - "command" : 13, - "file" : 2, - "line" : 2328, - "parent" : 269 - }, - { - "command" : 28, - "file" : 2, - "line" : 1152, - "parent" : 295 - }, - { - "command" : 28, - "file" : 2, - "line" : 2377, - "parent" : 269 - }, - { - "command" : 11, - "file" : 2, - "line" : 2460, - "parent" : 269 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 298 - }, - { - "command" : 9, - "file" : 0, - "line" : 2150, - "parent" : 299 - }, - { - "command" : 28, - "file" : 0, - "line" : 1794, - "parent" : 300 - }, - { - "command" : 31, - "file" : 0, - "line" : 764, - "parent" : 272 - }, - { - "command" : 28, - "file" : 0, - "line" : 1878, - "parent" : 302 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 278, - "define" : "BULD_QDS_COMPONENTS=true" - }, - { - "backtrace" : 262, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_GUI_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_OPENGL_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_QMLMODELS_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 218, - "define" : "QT_QUICK_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQuick.framework" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQmlModels.framework" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtOpenGL.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include" - }, - { - "backtrace" : 280, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 281, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework/Headers" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQuick.framework/Headers" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQmlModels.framework/Headers" - }, - { - "backtrace" : 218, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtOpenGL.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 262 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1, - 2, - 4, - 5, - 7, - 8, - 9 - ] - } - ], - "dependencies" : - [ - { - "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 270, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 277, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffects::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 221, - "id" : "FlowView::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 221, - "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 221, - "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 221, - "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 221, - "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulator::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db" - }, - { - "backtrace" : 221, - "id" : "QuickStudioApplication::@a324641c06033e250fc2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2" - }, - { - "backtrace" : 221, - "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2" - }, - { - "backtrace" : 224, - "id" : "content::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "content_resources_1::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "contentplugin::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "content_qmlcache::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "content_resources_2::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "contentplugin_init::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dash::@4896ae50d004c4a48929" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" - }, - { - "backtrace" : 224, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" - } - ], - "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "install" : - { - "destinations" : - [ - { - "backtrace" : 5, - "path" : "bin" - } - ], - "prefix" : - { - "path" : "/opt/homebrew" - } - }, - "link" : - { - "commandFragments" : - [ - { - "fragment" : "-g", - "role" : "flags" - }, - { - "fragment" : "", - "role" : "flags" - }, - { - "fragment" : "-iframework /opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/opt/homebrew/lib", - "role" : "libraries" - }, - { - "backtrace" : 10, - "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 20, - "fragment" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 25, - "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 30, - "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 35, - "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 40, - "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 45, - "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 50, - "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 55, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 61, - "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 67, - "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 73, - "fragment" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 79, - "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 85, - "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 91, - "fragment" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 97, - "fragment" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 103, - "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 109, - "fragment" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 115, - "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 121, - "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 127, - "fragment" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 133, - "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 139, - "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 145, - "fragment" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 151, - "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 157, - "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 163, - "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 169, - "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 175, - "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 181, - "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 187, - "fragment" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 193, - "fragment" : "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 199, - "fragment" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 205, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 211, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 217, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 218, - "fragment" : "/opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/FlowView/libFlowViewplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 221, - "fragment" : "qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 224, - "fragment" : "qml/content/libcontentplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 224, - "fragment" : "qml/Bolt_Dash/libBolt_Dashplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 231, - "fragment" : "/opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels", - "role" : "libraries" - }, - { - "backtrace" : 231, - "fragment" : "/opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL", - "role" : "libraries" - }, - { - "backtrace" : 233, - "fragment" : "_deps/ds-build/src/imports/components/libQuickStudioComponents.a", - "role" : "libraries" - }, - { - "backtrace" : 235, - "fragment" : "_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a", - "role" : "libraries" - }, - { - "backtrace" : 237, - "fragment" : "_deps/ds-build/src/imports/application/libQuickStudioApplication.a", - "role" : "libraries" - }, - { - "backtrace" : 218, - "fragment" : "/opt/homebrew/lib/QtGui.framework/Versions/A/QtGui", - "role" : "libraries" - }, - { - "fragment" : "-Xlinker -framework -Xlinker OpenGL", - "role" : "libraries" - }, - { - "fragment" : "-Xlinker -framework -Xlinker AGL", - "role" : "libraries" - }, - { - "backtrace" : 242, - "fragment" : "-framework AppKit", - "role" : "libraries" - }, - { - "backtrace" : 242, - "fragment" : "-framework ImageIO", - "role" : "libraries" - }, - { - "backtrace" : 242, - "fragment" : "-framework Metal", - "role" : "libraries" - }, - { - "backtrace" : 244, - "fragment" : "_deps/ds-build/src/imports/flowview/libFlowView.a", - "role" : "libraries" - }, - { - "backtrace" : 246, - "fragment" : "_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a", - "role" : "libraries" - }, - { - "backtrace" : 248, - "fragment" : "_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a", - "role" : "libraries" - }, - { - "backtrace" : 250, - "fragment" : "_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a", - "role" : "libraries" - }, - { - "backtrace" : 252, - "fragment" : "_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a", - "role" : "libraries" - }, - { - "backtrace" : 254, - "fragment" : "content/libcontent.a", - "role" : "libraries" - }, - { - "backtrace" : 256, - "fragment" : "imports/Bolt_Dash/libBolt_Dash.a", - "role" : "libraries" - }, - { - "backtrace" : 218, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 261, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 262, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 267, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 267, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "Bolt_DashApp", - "nameOnDisk" : "Bolt_DashApp", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1, - 2, - 4, - 5, - 7, - 8, - 9 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 3, - 6, - 10, - 11, - 12, - 13, - 14, - 23, - 24, - 25, - 26, - 27, - 28, - 29 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/main.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 286, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 288, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 289, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 293, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 294, - "path" : "main.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 296, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 297, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 301, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 303, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 303, - "path" : "qtquickcontrols2.conf", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 303, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 303, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 303, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 262, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 218, - "path" : "/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "EXECUTABLE" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json deleted file mode 100644 index 39c499a..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-51d62c3be5509ceb0bb5.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 0, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 0, - "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 0, - "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 0, - "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db" - }, - { - "backtrace" : 0, - "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2" - }, - { - "backtrace" : 0, - "id" : "contentplugin::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", - "isGeneratorProvided" : true, - "name" : "Bolt_DashApp_autogen", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json deleted file mode 100644 index 69764da..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_automoc_json_extraction-Debug-8931ade274fe100feea2.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "include", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 35, - "parent" : 0 - }, - { - "file" : 2, - "parent" : 1 - }, - { - "command" : 3, - "file" : 2, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 3 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 5 - }, - { - "command" : 5, - "file" : 0, - "line" : 1099, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 7, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_automoc_json_extraction", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json deleted file mode 100644 index 3a25869..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-d571df3a3563cde60aba.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_scan_qml_imports", - "_qt_internal_generate_deploy_qml_imports_script", - "cmake_language", - "_qt_internal_finalize_executable", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "file" : 3, - "line" : -1, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 1, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 769, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 675, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 675, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 3122, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2972, - "parent" : 6 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmlimportscan", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 7, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json deleted file mode 100644 index 809a973..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-ab28db9e596282492f2e.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 35, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json deleted file mode 100644 index cb10466..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-9d88dd62a7b7725ae6eb.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 35, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint_json", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json deleted file mode 100644 index b533e7c..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-0fbd777caab43d73f488.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 35, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint_module", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json deleted file mode 100644 index 95cb113..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-3bed5478be85aebe4448.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 35, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 4 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_DashApp_automoc_json_extraction::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmltyperegistration", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json deleted file mode 100644 index d50c63d..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-26dba12b3615cfa9bb85.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 35, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 4 - }, - { - "command" : 4, - "file" : 0, - "line" : 2443, - "parent" : 4 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_tooling", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json deleted file mode 100644 index 363f950..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-c529f7cb8e24c653ee03.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dash_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json deleted file mode 100644 index e3ae070..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_automoc_json_extraction-Debug-3a28b0c0b06e75c1c7ef.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_automoc_json_extraction", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json deleted file mode 100644 index fc774da..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache-Debug-5daa185e6fb46a1289a0.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmlcache", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json deleted file mode 100644 index cf917a0..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmlcache_autogen-Debug-d3192055f8042e40da36.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_qmlcache_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dash_qmlcache_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json deleted file mode 100644 index 02047f9..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-6e5028162500695ce336.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json deleted file mode 100644 index e30c87c..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-6b58b157210c30b8fafa.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint_json", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json deleted file mode 100644 index 38f075d..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-b6cc991c9fe54460ca33.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint_module", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json deleted file mode 100644 index 077dd15..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-51834e0f945bd55cf657.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_Dash_automoc_json_extraction::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmltyperegistration", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json deleted file mode 100644 index a6bbc91..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-98f13cbbddb59674fee2.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_resources_1", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json deleted file mode 100644 index 9a02310..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-d5178de269ed3fd32777.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_resources_2", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json deleted file mode 100644 index 93f55a6..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-2c1722a7c9fd34e67a24.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_tooling", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 4, - 5, - 6, - 7 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json deleted file mode 100644 index 6127199..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-9a32297ce09472e7765e.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/Bolt_Dash/libBolt_Dashplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "Bolt_Dash::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash_qmlcache::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", - "name" : "Bolt_Dashplugin", - "nameOnDisk" : "libBolt_Dashplugin.a", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json deleted file mode 100644 index 2e86bc4..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-b1e80763c9cddaac16c3.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json deleted file mode 100644 index 6aa8cdf..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-cb0ae3a09b6af6e52fed.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", - "name" : "Bolt_Dashplugin_init", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json deleted file mode 100644 index 3957c36..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-4045a4e549874d0f3b94.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_init_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json b/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json deleted file mode 100644 index d10c7a0..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView-Debug-9ae8992f3002d4d4605a.json +++ /dev/null @@ -1,1179 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/flowview/libFlowView.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2338:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 61 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 62 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 63 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 48 - ] - } - ], - "dependencies" : - [ - { - "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 7, - "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 0, - "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232" - } - ], - "id" : "FlowView::@f99fd1e4b9fa497fd232", - "name" : "FlowView", - "nameOnDisk" : "libFlowView.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 48 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 13, - 15, - 17, - 19, - 21, - 23, - 25, - 27, - 29, - 31, - 33, - 35, - 37, - 39, - 41, - 43, - 45, - 47, - 49, - 50, - 78, - 79, - 80 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 25, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 27, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 29, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 31, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 33, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 34, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 35, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 37, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 38, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 39, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 40, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 41, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 42, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 43, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 44, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 45, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 46, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 47, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 48, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 49, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 50, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 51, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 52, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 53, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 54, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 55, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 56, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 57, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 58, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 59, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 60, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 64, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 64, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json b/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json deleted file mode 100644 index b403b9e..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_autogen-Debug-067fd34decd4a498dab5.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232", - "isGeneratorProvided" : true, - "name" : "FlowView_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json b/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json deleted file mode 100644 index 002333d..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_automoc_json_extraction-Debug-f6560e536d24d854fec1.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "FlowView_autogen::@f99fd1e4b9fa497fd232" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232", - "name" : "FlowView_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json b/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json deleted file mode 100644 index b3e726b..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmlcache-Debug-7859b0f95607044a1e25.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232" - } - ], - "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232", - "name" : "FlowView_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json b/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json deleted file mode 100644 index 79817ac..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmlcache_autogen-Debug-de2a1ab1915411cca2ee.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowView_qmlcache_autogen::@f99fd1e4b9fa497fd232", - "isGeneratorProvided" : true, - "name" : "FlowView_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json deleted file mode 100644 index 8940d5a..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmllint-Debug-48b8342c2cd5f2ffef0e.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232", - "name" : "FlowView_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json deleted file mode 100644 index 6a12a73..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmllint_json-Debug-a80f46698059d9ff08bf.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232", - "name" : "FlowView_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json b/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json deleted file mode 100644 index 22e005f..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmllint_module-Debug-7b6f6e166e39a451a9c2.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232", - "name" : "FlowView_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json b/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json deleted file mode 100644 index 3e41794..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_qmltyperegistration-Debug-9113cd9ee0f901fd056b.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "FlowView_automoc_json_extraction::@f99fd1e4b9fa497fd232" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232", - "name" : "FlowView_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json b/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json deleted file mode 100644 index a5643bf..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_resources_1-Debug-03ca1597fbe0116b12ed.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232", - "name" : "FlowView_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json b/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json deleted file mode 100644 index 65828fe..0000000 --- a/build/.cmake/api/v1/reply/target-FlowView_tooling-Debug-8926159527a4d8731d7a.json +++ /dev/null @@ -1,414 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowView_tooling::@f99fd1e4b9fa497fd232", - "name" : "FlowView_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json b/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json deleted file mode 100644 index 1d607d5..0000000 --- a/build/.cmake/api/v1/reply/target-FlowViewplugin-Debug-a4ac85a95193ab0025c6.json +++ /dev/null @@ -1,262 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/FlowView/libFlowViewplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "FlowView::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 6, - "id" : "FlowView_qmlcache::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 6, - "id" : "FlowView_resources_1::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 0, - "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232" - } - ], - "id" : "FlowViewplugin::@f99fd1e4b9fa497fd232", - "name" : "FlowViewplugin", - "nameOnDisk" : "libFlowViewplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json deleted file mode 100644 index 69b38fd..0000000 --- a/build/.cmake/api/v1/reply/target-FlowViewplugin_autogen-Debug-6495605358fb078d5661.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowViewplugin_autogen::@f99fd1e4b9fa497fd232", - "isGeneratorProvided" : true, - "name" : "FlowViewplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json deleted file mode 100644 index 3f182b0..0000000 --- a/build/.cmake/api/v1/reply/target-FlowViewplugin_init-Debug-7d392c5f9e62ab493e00.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232" - } - ], - "id" : "FlowViewplugin_init::@f99fd1e4b9fa497fd232", - "name" : "FlowViewplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json b/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json deleted file mode 100644 index 8377c3e..0000000 --- a/build/.cmake/api/v1/reply/target-FlowViewplugin_init_autogen-Debug-7c1f13be59c3a57768ca.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "FlowViewplugin_init_autogen::@f99fd1e4b9fa497fd232", - "isGeneratorProvided" : true, - "name" : "FlowViewplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/flowview", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json deleted file mode 100644 index 7892c99..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication-Debug-69deb348e3fbce864c1a.json +++ /dev/null @@ -1,424 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/application/libQuickStudioApplication.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "target_link_libraries", - "qt6_add_qml_module", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 5, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 4, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 4, - "file" : 1, - "line" : 14, - "parent" : 0 - }, - { - "command" : 7, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 6, - "file" : 2, - "line" : 2752, - "parent" : 8 - }, - { - "command" : 6, - "file" : 2, - "line" : 2777, - "parent" : 8 - }, - { - "command" : 9, - "file" : 2, - "line" : 2582, - "parent" : 8 - }, - { - "command" : 8, - "file" : 0, - "line" : 1210, - "parent" : 11 - }, - { - "command" : 8, - "file" : 2, - "line" : 2743, - "parent" : 8 - }, - { - "command" : 8, - "file" : 2, - "line" : 623, - "parent" : 5 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 11, - "file" : 3, - "line" : 1, - "parent" : 15 - }, - { - "command" : 10, - "file" : 0, - "line" : 764, - "parent" : 16 - }, - { - "command" : 8, - "file" : 0, - "line" : 1878, - "parent" : 17 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_GUI_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 6 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 3 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2" - }, - { - "backtrace" : 0, - "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2" - } - ], - "id" : "QuickStudioApplication::@a324641c06033e250fc2", - "name" : "QuickStudioApplication", - "nameOnDisk" : "libQuickStudioApplication.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 3 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 5, - 6, - 10, - 11, - 12, - 13 - ] - }, - { - "name" : "Header Files", - "sourceIndexes" : - [ - 4 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 7, - 8, - 9 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 12, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 13, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 14, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication_p.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 18, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 7, - "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json deleted file mode 100644 index e9b6b49..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_autogen-Debug-83d5b0f03cdde7888ef0.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2", - "isGeneratorProvided" : true, - "name" : "QuickStudioApplication_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json deleted file mode 100644 index 4e8d640..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_automoc_json_extraction-Debug-f99b0de1d5e16bb44833.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioApplication_autogen::@a324641c06033e250fc2" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json deleted file mode 100644 index 1aa505e..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint-Debug-73045ea851da794fb785.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json deleted file mode 100644 index e8263f9..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_json-Debug-d9ba4d345b6cfec5a49e.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json deleted file mode 100644 index 2a69870..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmllint_module-Debug-ebb9d160c568c013044e.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 1995, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json deleted file mode 100644 index 96a0e6a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_qmltyperegistration-Debug-d2343964a719307788ee.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioApplication_automoc_json_extraction::@a324641c06033e250fc2" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json b/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json deleted file mode 100644 index 653271d..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplication_resources_1-Debug-4d9fa217efc56ec99928.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_GUI_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtGui.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtGui.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2", - "name" : "QuickStudioApplication_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json deleted file mode 100644 index 33139ca..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin-Debug-f8fdecab3cfcf03d05fe.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioApplication::@a324641c06033e250fc2" - }, - { - "backtrace" : 6, - "id" : "QuickStudioApplication_resources_1::@a324641c06033e250fc2" - }, - { - "backtrace" : 0, - "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2" - } - ], - "id" : "QuickStudioApplicationplugin::@a324641c06033e250fc2", - "name" : "QuickStudioApplicationplugin", - "nameOnDisk" : "libQuickStudioApplicationplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json deleted file mode 100644 index 1fcba3c..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_autogen-Debug-239bcab3fe9c863ed150.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioApplicationplugin_autogen::@a324641c06033e250fc2", - "isGeneratorProvided" : true, - "name" : "QuickStudioApplicationplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json deleted file mode 100644 index 957c046..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init-Debug-bf12920fa9218d95643c.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2" - } - ], - "id" : "QuickStudioApplicationplugin_init::@a324641c06033e250fc2", - "name" : "QuickStudioApplicationplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json b/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json deleted file mode 100644 index c7195a2..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioApplicationplugin_init_autogen-Debug-41959f83d5f8f1ab3398.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioApplicationplugin_init_autogen::@a324641c06033e250fc2", - "isGeneratorProvided" : true, - "name" : "QuickStudioApplicationplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/application", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json deleted file mode 100644 index 21c2bb2..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents-Debug-eff245e7a5d85a1b2d2d.json +++ /dev/null @@ -1,838 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/components/libQuickStudioComponents.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 1, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 41 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 42 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 43 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 7, - "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 0, - "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda" - } - ], - "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents", - "nameOnDisk" : "libQuickStudioComponents.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 13, - 15, - 17, - 19, - 21, - 23, - 25, - 27, - 29, - 30, - 31, - 48, - 49, - 50 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 25, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 27, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 29, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 31, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 33, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 34, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 35, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 37, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 38, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 39, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 40, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 44, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 44, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 44, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json deleted file mode 100644 index dd0e91c..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_autogen-Debug-687fff37523f13c88106.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda", - "isGeneratorProvided" : true, - "name" : "QuickStudioComponents_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json deleted file mode 100644 index ae80eaf..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_automoc_json_extraction-Debug-e69426057529e6b4a3bc.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioComponents_autogen::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json deleted file mode 100644 index ec4babc..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache-Debug-0e7e33519be5e45a818d.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda" - } - ], - "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json deleted file mode 100644 index c19b249..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmlcache_autogen-Debug-80d7a13e7128a08d7745.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponents_qmlcache_autogen::@b8ea75ca72e9d0096cda", - "isGeneratorProvided" : true, - "name" : "QuickStudioComponents_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json deleted file mode 100644 index 1002295..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint-Debug-e826ec1fb9c7ecbeb2ff.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json deleted file mode 100644 index 9e203fe..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_json-Debug-e43e87a498510cfaf755.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json deleted file mode 100644 index ffbddc1..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmllint_module-Debug-df7a571606bf13e004f3.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json deleted file mode 100644 index 5279a79..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_qmltyperegistration-Debug-c2eda95b9f70b6634345.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioComponents_automoc_json_extraction::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json deleted file mode 100644 index abd7b95..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_1-Debug-c94cca8847514c8a1fec.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json deleted file mode 100644 index a7906f0..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_resources_2-Debug-e54cd9e14e804f1c1d37.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json b/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json deleted file mode 100644 index af524b5..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponents_tooling-Debug-a8b0564709ac0090c2bf.json +++ /dev/null @@ -1,260 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponents_tooling::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponents_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json deleted file mode 100644 index 6a66a38..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin-Debug-f80a6a31b26a94fe0aee.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioComponents::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 6, - "id" : "QuickStudioComponents_resources_1::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 6, - "id" : "QuickStudioComponents_qmlcache::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 6, - "id" : "QuickStudioComponents_resources_2::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 0, - "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda" - } - ], - "id" : "QuickStudioComponentsplugin::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponentsplugin", - "nameOnDisk" : "libQuickStudioComponentsplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json deleted file mode 100644 index 47c6d31..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_autogen-Debug-56b3fc91987160e8aef4.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponentsplugin_autogen::@b8ea75ca72e9d0096cda", - "isGeneratorProvided" : true, - "name" : "QuickStudioComponentsplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json deleted file mode 100644 index 7739b71..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init-Debug-e112112a1e3249549eb4.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda" - } - ], - "id" : "QuickStudioComponentsplugin_init::@b8ea75ca72e9d0096cda", - "name" : "QuickStudioComponentsplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json b/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json deleted file mode 100644 index 4216c10..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioComponentsplugin_init_autogen-Debug-7e45ee8db2f603f2458f.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioComponentsplugin_init_autogen::@b8ea75ca72e9d0096cda", - "isGeneratorProvided" : true, - "name" : "QuickStudioComponentsplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json deleted file mode 100644 index ddd18a6..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects-Debug-b61e1c52a2c845888d2e.json +++ /dev/null @@ -1,1926 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 1, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 105 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 106 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 107 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 48, - 50, - 52, - 54, - 56, - 58, - 60, - 62, - 64, - 66, - 68, - 70, - 72, - 74, - 76, - 78, - 80, - 82, - 84, - 86, - 88, - 90, - 92 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 7, - "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24" - } - ], - "id" : "QuickStudioEffects::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects", - "nameOnDisk" : "libQuickStudioEffects.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 48, - 50, - 52, - 54, - 56, - 58, - 60, - 62, - 64, - 66, - 68, - 70, - 72, - 74, - 76, - 78, - 80, - 82, - 84, - 86, - 88, - 90, - 92 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 13, - 15, - 17, - 19, - 21, - 23, - 25, - 27, - 29, - 31, - 33, - 35, - 37, - 39, - 41, - 43, - 45, - 47, - 49, - 51, - 53, - 55, - 57, - 59, - 61, - 63, - 65, - 67, - 69, - 71, - 73, - 75, - 77, - 79, - 81, - 83, - 85, - 87, - 89, - 91, - 93, - 94, - 95, - 144, - 145, - 146 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 25, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 27, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 29, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 31, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 33, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 34, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 35, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 37, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 38, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 39, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 40, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 41, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 42, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 43, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 44, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 45, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 46, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 47, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 48, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 49, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 50, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 51, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 52, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 53, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 54, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 55, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 56, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 57, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 58, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 59, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 60, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 61, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 62, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 63, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 64, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 65, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 66, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 67, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 68, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 69, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 71, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 72, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 73, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 74, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 75, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 76, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 77, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 78, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 79, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 80, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 81, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 82, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 83, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 84, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 85, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 86, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 87, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 88, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 89, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 90, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 91, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 92, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 93, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 94, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 95, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 96, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 97, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 98, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 99, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 100, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 101, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 102, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 103, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 104, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 108, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 108, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 108, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json deleted file mode 100644 index 6abfd81..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_autogen-Debug-bb0d5aa4545d8a4633af.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24", - "isGeneratorProvided" : true, - "name" : "QuickStudioEffects_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json deleted file mode 100644 index 136b290..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_automoc_json_extraction-Debug-b34c65f0d2d61d856036.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioEffects_autogen::@981cd0cfbc19161bec24" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json deleted file mode 100644 index 2d9fded..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache-Debug-62f627c5be6418f51d1b.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24" - } - ], - "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json deleted file mode 100644 index 72a4417..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmlcache_autogen-Debug-ce2c11ed80bd1dcda9ea.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffects_qmlcache_autogen::@981cd0cfbc19161bec24", - "isGeneratorProvided" : true, - "name" : "QuickStudioEffects_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json deleted file mode 100644 index 3961427..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint-Debug-0edc9dd54ea41321d716.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json deleted file mode 100644 index a3a7ef1..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_json-Debug-b8c4d7a6bc373e3dc1d4.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json deleted file mode 100644 index 1d7e293..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmllint_module-Debug-3a1719c05bb9e08a130d.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json deleted file mode 100644 index 4c6a66f..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_qmltyperegistration-Debug-b8df36b9d880b694a36f.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioEffects_automoc_json_extraction::@981cd0cfbc19161bec24" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json deleted file mode 100644 index e262d1a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_1-Debug-f34eeba0c68a8f05abfc.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json deleted file mode 100644 index e2f0744..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_resources_2-Debug-62ca9f6cf3fcd7f1561e.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json b/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json deleted file mode 100644 index d2e8d7a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffects_tooling-Debug-fff09cf476db79d0f6e7.json +++ /dev/null @@ -1,708 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffects_tooling::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffects_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json deleted file mode 100644 index 1b45e4f..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin-Debug-809afbdeb69fd5f05d22.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioEffects::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEffects_resources_1::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEffects_qmlcache::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEffects_resources_2::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24" - } - ], - "id" : "QuickStudioEffectsplugin::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffectsplugin", - "nameOnDisk" : "libQuickStudioEffectsplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json deleted file mode 100644 index 00c1bcf..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_autogen-Debug-00465e4e7695e405281c.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffectsplugin_autogen::@981cd0cfbc19161bec24", - "isGeneratorProvided" : true, - "name" : "QuickStudioEffectsplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json deleted file mode 100644 index ed38f77..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init-Debug-042ac96d4fa8f103dcb6.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24" - } - ], - "id" : "QuickStudioEffectsplugin_init::@981cd0cfbc19161bec24", - "name" : "QuickStudioEffectsplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json b/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json deleted file mode 100644 index 6c362e2..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEffectsplugin_init_autogen-Debug-7bd53f2c68a900023b06.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEffectsplugin_init_autogen::@981cd0cfbc19161bec24", - "isGeneratorProvided" : true, - "name" : "QuickStudioEffectsplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/effects_qt6", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json deleted file mode 100644 index b79072d..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator-Debug-52e95ad6290712ddbac3.json +++ /dev/null @@ -1,464 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 19 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 20 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 21 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922" - }, - { - "backtrace" : 7, - "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922" - } - ], - "id" : "QuickStudioEventSimulator::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator", - "nameOnDisk" : "libQuickStudioEventSimulator.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 8, - 9, - 15, - 16, - 17 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 10, - 11, - 12, - 13, - 14 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json deleted file mode 100644 index 9c41d66..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_autogen-Debug-d912ed5d2e105e4e0e04.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSimulator_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json deleted file mode 100644 index 9d83a86..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_automoc_json_extraction-Debug-0a8051d41ec498dea305.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioEventSimulator_autogen::@639cba86296065e16922" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json deleted file mode 100644 index 95e6fde..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache-Debug-3ffc8954632edd193df6.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922" - } - ], - "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json deleted file mode 100644 index 1c03cd9..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmlcache_autogen-Debug-c80991485872513d3d44.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulator_qmlcache_autogen::@639cba86296065e16922", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSimulator_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json deleted file mode 100644 index 9bd4c67..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint-Debug-0c241128e2f2a58eec9a.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json deleted file mode 100644 index 58a74e1..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_json-Debug-56c4fdfad7b0da73835a.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json deleted file mode 100644 index 0064c5c..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmllint_module-Debug-e80deb3c0914e8dca6cb.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json deleted file mode 100644 index d9f52a1..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_qmltyperegistration-Debug-dbf8444e331eed1664ab.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioEventSimulator_automoc_json_extraction::@639cba86296065e16922" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json deleted file mode 100644 index 391bdd1..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_1-Debug-83ef65e4aead9500cf57.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json deleted file mode 100644 index f35d22e..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_resources_2-Debug-d106a9ea47011dbe5854.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json deleted file mode 100644 index 64c27e3..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulator_tooling-Debug-1414a517ad0c98cec378.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulator_tooling::@639cba86296065e16922", - "name" : "QuickStudioEventSimulator_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2, - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json deleted file mode 100644 index 4cbc573..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin-Debug-f0b6d32b33f4d00f0424.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioEventSimulator::@639cba86296065e16922" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSimulator_resources_1::@639cba86296065e16922" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSimulator_qmlcache::@639cba86296065e16922" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSimulator_resources_2::@639cba86296065e16922" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922" - } - ], - "id" : "QuickStudioEventSimulatorplugin::@639cba86296065e16922", - "name" : "QuickStudioEventSimulatorplugin", - "nameOnDisk" : "libQuickStudioEventSimulatorplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json deleted file mode 100644 index b681b1c..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_autogen-Debug-882c8979d7a1747d5776.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulatorplugin_autogen::@639cba86296065e16922", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSimulatorplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json deleted file mode 100644 index 4120ef6..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init-Debug-292cd102b0716f173b4a.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922" - } - ], - "id" : "QuickStudioEventSimulatorplugin_init::@639cba86296065e16922", - "name" : "QuickStudioEventSimulatorplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json deleted file mode 100644 index 458820a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSimulatorplugin_init_autogen-Debug-f6260cf45c3fb17d20bb.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSimulatorplugin_init_autogen::@639cba86296065e16922", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSimulatorplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsimulator", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json deleted file mode 100644 index c60f8dc..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem-Debug-68afb462c691cffab0f1.json +++ /dev/null @@ -1,464 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 19 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 20 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 21 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db" - }, - { - "backtrace" : 7, - "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db" - } - ], - "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem", - "nameOnDisk" : "libQuickStudioEventSystem.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 8, - 9, - 15, - 16, - 17 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 10, - 11, - 12, - 13, - 14 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json deleted file mode 100644 index 982a19d..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_autogen-Debug-dec4d99f7c4a991467d1.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSystem_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json deleted file mode 100644 index d5e1748..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_automoc_json_extraction-Debug-ab6db483d42db8625245.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 7, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioEventSystem_autogen::@c931a55b2364f386d7db" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json deleted file mode 100644 index b6a9803..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache-Debug-3d98f4c8d47f2e0e4e3b.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 7, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db" - } - ], - "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json deleted file mode 100644 index c1f0c22..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmlcache_autogen-Debug-63db6734c3b36083442c.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystem_qmlcache_autogen::@c931a55b2364f386d7db", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSystem_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json deleted file mode 100644 index c9689c7..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint-Debug-88de39be09e18070471e.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json deleted file mode 100644 index 7e1db18..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_json-Debug-15ea54571422a3cf5060.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json deleted file mode 100644 index 77d0c76..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmllint_module-Debug-721c01d255a48e2e1e83.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json deleted file mode 100644 index df4351a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_qmltyperegistration-Debug-fea30a225b653475d1d5.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioEventSystem_automoc_json_extraction::@c931a55b2364f386d7db" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json deleted file mode 100644 index 20a2126..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_1-Debug-9fd339c044320add5c5b.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 7, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json deleted file mode 100644 index 37e4bd3..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_resources_2-Debug-b0828fb1f90f23da9bde.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 7, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json deleted file mode 100644 index 21f61b3..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystem_tooling-Debug-8bfb1c432f951116dcc5.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 7, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystem_tooling::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystem_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2, - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json deleted file mode 100644 index 101cd60..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin-Debug-09ee66272cb237d4dc05.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 7, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioEventSystem::@c931a55b2364f386d7db" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSystem_resources_1::@c931a55b2364f386d7db" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSystem_qmlcache::@c931a55b2364f386d7db" - }, - { - "backtrace" : 6, - "id" : "QuickStudioEventSystem_resources_2::@c931a55b2364f386d7db" - }, - { - "backtrace" : 0, - "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db" - } - ], - "id" : "QuickStudioEventSystemplugin::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystemplugin", - "nameOnDisk" : "libQuickStudioEventSystemplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json deleted file mode 100644 index 2486d70..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_autogen-Debug-f2c706e44f37dadacbc8.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystemplugin_autogen::@c931a55b2364f386d7db", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSystemplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json deleted file mode 100644 index b4b2f80..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init-Debug-343f1ca3f23b6c952248.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 7, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db" - } - ], - "id" : "QuickStudioEventSystemplugin_init::@c931a55b2364f386d7db", - "name" : "QuickStudioEventSystemplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json b/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json deleted file mode 100644 index 6af60c5..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioEventSystemplugin_init_autogen-Debug-f357766959be7cb64efc.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioEventSystemplugin_init_autogen::@c931a55b2364f386d7db", - "isGeneratorProvided" : true, - "name" : "QuickStudioEventSystemplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/tools/eventsystem", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json deleted file mode 100644 index 6d7e8de..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper-Debug-9ff9fbe3473d587ac8ab.json +++ /dev/null @@ -1,634 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 1, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 29 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 30 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 31 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 7, - "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8" - } - ], - "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper", - "nameOnDisk" : "libQuickStudioLogicHelper.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14, - 16 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 13, - 15, - 17, - 18, - 19, - 30, - 31, - 32 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 25, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 27, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 32, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json deleted file mode 100644 index 4dadbda..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_autogen-Debug-acac8d55f919d532bccc.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8", - "isGeneratorProvided" : true, - "name" : "QuickStudioLogicHelper_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json deleted file mode 100644 index 6764037..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_automoc_json_extraction-Debug-ac6cad20fedbaff6a85e.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioLogicHelper_autogen::@a133c4daf6f4e56b78b8" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json deleted file mode 100644 index c972587..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache-Debug-0bc778a7c47475f51f2a.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8" - } - ], - "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json deleted file mode 100644 index bfaaf66..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmlcache_autogen-Debug-8bb53d06198a3d2a85d5.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelper_qmlcache_autogen::@a133c4daf6f4e56b78b8", - "isGeneratorProvided" : true, - "name" : "QuickStudioLogicHelper_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json deleted file mode 100644 index df7bb5c..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint-Debug-d29c6f8e4b91aede32ce.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json deleted file mode 100644 index 38f46c0..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_json-Debug-cc144d47959645fff87f.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json deleted file mode 100644 index 98787b6..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmllint_module-Debug-2bcae026fba5ff56aa27.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json deleted file mode 100644 index b2c2498..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_qmltyperegistration-Debug-0fb18cab5fc606ee92e3.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioLogicHelper_automoc_json_extraction::@a133c4daf6f4e56b78b8" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json deleted file mode 100644 index 5a107a6..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_1-Debug-56ecef5c12b368c68831.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json deleted file mode 100644 index a54bfd4..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_resources_2-Debug-be6195f0002b6bc280e6.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json deleted file mode 100644 index 81e9349..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelper_tooling-Debug-ba2aa88d61332cd2f7b5.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelper_tooling::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelper_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 7, - 8, - 9, - 10, - 11, - 12, - 13 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json deleted file mode 100644 index 9dfbd8b..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin-Debug-d3b9d020db127173445f.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioLogicHelper::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 6, - "id" : "QuickStudioLogicHelper_resources_1::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 6, - "id" : "QuickStudioLogicHelper_qmlcache::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 6, - "id" : "QuickStudioLogicHelper_resources_2::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8" - } - ], - "id" : "QuickStudioLogicHelperplugin::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelperplugin", - "nameOnDisk" : "libQuickStudioLogicHelperplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json deleted file mode 100644 index cced226..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_autogen-Debug-0dd188261b123c2bb9b1.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelperplugin_autogen::@a133c4daf6f4e56b78b8", - "isGeneratorProvided" : true, - "name" : "QuickStudioLogicHelperplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json deleted file mode 100644 index 13c108d..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init-Debug-7eac1bd077b590d87984.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8" - } - ], - "id" : "QuickStudioLogicHelperplugin_init::@a133c4daf6f4e56b78b8", - "name" : "QuickStudioLogicHelperplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json b/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json deleted file mode 100644 index 3635326..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioLogicHelperplugin_init_autogen-Debug-6af1ce9827b44f4e66fb.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioLogicHelperplugin_init_autogen::@a133c4daf6f4e56b78b8", - "isGeneratorProvided" : true, - "name" : "QuickStudioLogicHelperplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/logichelper", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json deleted file mode 100644 index 598e1cf..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText-Debug-2e298304b037ed580c9b.json +++ /dev/null @@ -1,498 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 1, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 21 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 22 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 23 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8 - ] - } - ], - "dependencies" : - [ - { - "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 7, - "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 0, - "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2" - } - ], - "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText", - "nameOnDisk" : "libQuickStudioMultiText.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 10, - 11, - 18, - 19, - 20 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 12, - 13, - 14, - 15, - 16, - 17 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 24, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json deleted file mode 100644 index 50ee264..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_autogen-Debug-c66703cd494d3cdb0440.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2", - "isGeneratorProvided" : true, - "name" : "QuickStudioMultiText_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json deleted file mode 100644 index 26d3fef..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_automoc_json_extraction-Debug-438c699ceaad7f4cb98b.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "QuickStudioMultiText_autogen::@a7b8d61f767e497853c2" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_automoc_json_extraction", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json deleted file mode 100644 index ecb72a8..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache-Debug-8999543ed32aa3ead06a.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2" - } - ], - "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_qmlcache", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json deleted file mode 100644 index 0a9789a..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmlcache_autogen-Debug-8fea4b04a9bbfdb2caa5.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiText_qmlcache_autogen::@a7b8d61f767e497853c2", - "isGeneratorProvided" : true, - "name" : "QuickStudioMultiText_qmlcache_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json deleted file mode 100644 index d40d3fa..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint-Debug-af06fbfe1b2ed442f15d.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json deleted file mode 100644 index 1954155..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_json-Debug-0ddbeb9ded609fc21ea8.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json deleted file mode 100644 index 3949231..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmllint_module-Debug-4008ea7ea2855164c174.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json deleted file mode 100644 index aeb71c3..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_qmltyperegistration-Debug-0d1b59ff4ea71708ab01.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "QuickStudioMultiText_automoc_json_extraction::@a7b8d61f767e497853c2" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_qmltyperegistration", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json deleted file mode 100644 index f617164..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_1-Debug-b38c819cb562f99b94c1.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_resources_1", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json deleted file mode 100644 index 2505ca6..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_resources_2-Debug-8579ffd664f94d780c71.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_resources_2", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json deleted file mode 100644 index d79edce..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiText_tooling-Debug-e27d6bd0c3154db9e024.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiText_tooling::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiText_tooling", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3, - 4, - 5 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json deleted file mode 100644 index e80e7a0..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin-Debug-f3a6275f7f88c39070b3.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "QuickStudioMultiText::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 6, - "id" : "QuickStudioMultiText_resources_1::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 6, - "id" : "QuickStudioMultiText_qmlcache::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 6, - "id" : "QuickStudioMultiText_resources_2::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 0, - "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2" - } - ], - "id" : "QuickStudioMultiTextplugin::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiTextplugin", - "nameOnDisk" : "libQuickStudioMultiTextplugin.a", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json deleted file mode 100644 index b59e089..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_autogen-Debug-9a2e57708f39f2f164dc.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiTextplugin_autogen::@a7b8d61f767e497853c2", - "isGeneratorProvided" : true, - "name" : "QuickStudioMultiTextplugin_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json deleted file mode 100644 index cbac5b2..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init-Debug-ef0a0dd61b083408cdf1.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2" - } - ], - "id" : "QuickStudioMultiTextplugin_init::@a7b8d61f767e497853c2", - "name" : "QuickStudioMultiTextplugin_init", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json b/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json deleted file mode 100644 index c702889..0000000 --- a/build/.cmake/api/v1/reply/target-QuickStudioMultiTextplugin_init_autogen-Debug-11bfedfb7e56a6e43d8d.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "QuickStudioMultiTextplugin_init_autogen::@a7b8d61f767e497853c2", - "isGeneratorProvided" : true, - "name" : "QuickStudioMultiTextplugin_init_autogen", - "paths" : - { - "build" : "_deps/ds-build/src/imports/multitext", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json deleted file mode 100644 index 1e6a016..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-0f40c30e93bae5da3a81.json +++ /dev/null @@ -1,512 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "add_dependencies", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "qmlmodules", - "CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Backend/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1044, - "parent" : 4 - }, - { - "file" : 3 - }, - { - "command" : 6, - "file" : 3, - "line" : 35, - "parent" : 6 - }, - { - "file" : 2, - "parent" : 7 - }, - { - "command" : 4, - "file" : 2, - "line" : 4, - "parent" : 8 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 9 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 10 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 11 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 12 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 4 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 2, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 18 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 24 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 25 - }, - { - "file" : 6 - }, - { - "command" : 4, - "file" : 6, - "line" : 2, - "parent" : 27 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 28 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 29 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 30 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 31 - }, - { - "file" : 7 - }, - { - "command" : 4, - "file" : 7, - "line" : 2, - "parent" : 33 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 34 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 35 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 36 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 37 - }, - { - "file" : 8 - }, - { - "command" : 4, - "file" : 8, - "line" : 6, - "parent" : 39 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 40 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 41 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 42 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 43 - }, - { - "file" : 9 - }, - { - "command" : 4, - "file" : 9, - "line" : 7, - "parent" : 45 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 46 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 47 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 48 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 49 - }, - { - "file" : 10 - }, - { - "command" : 4, - "file" : 10, - "line" : 6, - "parent" : 51 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 52 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 53 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 54 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 55 - }, - { - "file" : 11 - }, - { - "command" : 4, - "file" : 11, - "line" : 5, - "parent" : 57 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 58 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 59 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 60 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 61 - }, - { - "file" : 12 - }, - { - "command" : 4, - "file" : 12, - "line" : 6, - "parent" : 63 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 64 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 65 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 66 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 67 - }, - { - "file" : 13 - }, - { - "command" : 4, - "file" : 13, - "line" : 10, - "parent" : 69 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 70 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 71 - }, - { - "command" : 1, - "file" : 0, - "line" : 951, - "parent" : 72 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 73 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 13, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "QuickStudioComponents_qmllint::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 20, - "id" : "QuickStudioEffects_qmllint::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 26, - "id" : "FlowView_qmllint::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 32, - "id" : "QuickStudioLogicHelper_qmllint::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 38, - "id" : "QuickStudioMultiText_qmllint::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 44, - "id" : "QuickStudioEventSimulator_qmllint::@639cba86296065e16922" - }, - { - "backtrace" : 50, - "id" : "QuickStudioEventSystem_qmllint::@c931a55b2364f386d7db" - }, - { - "backtrace" : 56, - "id" : "QuickStudioApplication_qmllint::@a324641c06033e250fc2" - }, - { - "backtrace" : 62, - "id" : "content_qmllint::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 68, - "id" : "BackendPlugin_qmllint::@b539f45bba5ba55bae2a" - }, - { - "backtrace" : 74, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "all_qmllint::@b8ea75ca72e9d0096cda", - "name" : "all_qmllint", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json deleted file mode 100644 index 251678a..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-d117ee47724a917c25a6.json +++ /dev/null @@ -1,512 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "add_dependencies", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "qmlmodules", - "CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Backend/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1044, - "parent" : 4 - }, - { - "file" : 3 - }, - { - "command" : 6, - "file" : 3, - "line" : 35, - "parent" : 6 - }, - { - "file" : 2, - "parent" : 7 - }, - { - "command" : 4, - "file" : 2, - "line" : 4, - "parent" : 8 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 9 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 10 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 11 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 12 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 4 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 2, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 18 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 24 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 25 - }, - { - "file" : 6 - }, - { - "command" : 4, - "file" : 6, - "line" : 2, - "parent" : 27 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 28 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 29 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 30 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 31 - }, - { - "file" : 7 - }, - { - "command" : 4, - "file" : 7, - "line" : 2, - "parent" : 33 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 34 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 35 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 36 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 37 - }, - { - "file" : 8 - }, - { - "command" : 4, - "file" : 8, - "line" : 6, - "parent" : 39 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 40 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 41 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 42 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 43 - }, - { - "file" : 9 - }, - { - "command" : 4, - "file" : 9, - "line" : 7, - "parent" : 45 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 46 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 47 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 48 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 49 - }, - { - "file" : 10 - }, - { - "command" : 4, - "file" : 10, - "line" : 6, - "parent" : 51 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 52 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 53 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 54 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 55 - }, - { - "file" : 11 - }, - { - "command" : 4, - "file" : 11, - "line" : 5, - "parent" : 57 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 58 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 59 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 60 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 61 - }, - { - "file" : 12 - }, - { - "command" : 4, - "file" : 12, - "line" : 6, - "parent" : 63 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 64 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 65 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 66 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 67 - }, - { - "file" : 13 - }, - { - "command" : 4, - "file" : 13, - "line" : 10, - "parent" : 69 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 70 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 71 - }, - { - "command" : 1, - "file" : 0, - "line" : 953, - "parent" : 72 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 73 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 13, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "QuickStudioComponents_qmllint_json::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 20, - "id" : "QuickStudioEffects_qmllint_json::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 26, - "id" : "FlowView_qmllint_json::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 32, - "id" : "QuickStudioLogicHelper_qmllint_json::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 38, - "id" : "QuickStudioMultiText_qmllint_json::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 44, - "id" : "QuickStudioEventSimulator_qmllint_json::@639cba86296065e16922" - }, - { - "backtrace" : 50, - "id" : "QuickStudioEventSystem_qmllint_json::@c931a55b2364f386d7db" - }, - { - "backtrace" : 56, - "id" : "QuickStudioApplication_qmllint_json::@a324641c06033e250fc2" - }, - { - "backtrace" : 62, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 68, - "id" : "BackendPlugin_qmllint_json::@b539f45bba5ba55bae2a" - }, - { - "backtrace" : 74, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "all_qmllint_json::@b8ea75ca72e9d0096cda", - "name" : "all_qmllint_json", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json deleted file mode 100644 index d79cfa9..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-0c0ad4e6c76d40d3903a.json +++ /dev/null @@ -1,512 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "add_dependencies", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "qmlmodules", - "CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Backend/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1044, - "parent" : 4 - }, - { - "file" : 3 - }, - { - "command" : 6, - "file" : 3, - "line" : 35, - "parent" : 6 - }, - { - "file" : 2, - "parent" : 7 - }, - { - "command" : 4, - "file" : 2, - "line" : 4, - "parent" : 8 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 9 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 10 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 11 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 12 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 4 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 2, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 18 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 24 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 25 - }, - { - "file" : 6 - }, - { - "command" : 4, - "file" : 6, - "line" : 2, - "parent" : 27 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 28 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 29 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 30 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 31 - }, - { - "file" : 7 - }, - { - "command" : 4, - "file" : 7, - "line" : 2, - "parent" : 33 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 34 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 35 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 36 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 37 - }, - { - "file" : 8 - }, - { - "command" : 4, - "file" : 8, - "line" : 6, - "parent" : 39 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 40 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 41 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 42 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 43 - }, - { - "file" : 9 - }, - { - "command" : 4, - "file" : 9, - "line" : 7, - "parent" : 45 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 46 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 47 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 48 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 49 - }, - { - "file" : 10 - }, - { - "command" : 4, - "file" : 10, - "line" : 6, - "parent" : 51 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 52 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 53 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 54 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 55 - }, - { - "file" : 11 - }, - { - "command" : 4, - "file" : 11, - "line" : 5, - "parent" : 57 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 58 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 59 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 60 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 61 - }, - { - "file" : 12 - }, - { - "command" : 4, - "file" : 12, - "line" : 6, - "parent" : 63 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 64 - }, - { - "command" : 2, - "file" : 0, - "line" : 1995, - "parent" : 65 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 66 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 67 - }, - { - "file" : 13 - }, - { - "command" : 4, - "file" : 13, - "line" : 10, - "parent" : 69 - }, - { - "command" : 3, - "file" : 0, - "line" : 633, - "parent" : 70 - }, - { - "command" : 2, - "file" : 0, - "line" : 2242, - "parent" : 71 - }, - { - "command" : 1, - "file" : 0, - "line" : 955, - "parent" : 72 - }, - { - "command" : 5, - "file" : 0, - "line" : 1047, - "parent" : 73 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 13, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "QuickStudioComponents_qmllint_module::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 20, - "id" : "QuickStudioEffects_qmllint_module::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 26, - "id" : "FlowView_qmllint_module::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 32, - "id" : "QuickStudioLogicHelper_qmllint_module::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 38, - "id" : "QuickStudioMultiText_qmllint_module::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 44, - "id" : "QuickStudioEventSimulator_qmllint_module::@639cba86296065e16922" - }, - { - "backtrace" : 50, - "id" : "QuickStudioEventSystem_qmllint_module::@c931a55b2364f386d7db" - }, - { - "backtrace" : 56, - "id" : "QuickStudioApplication_qmllint_module::@a324641c06033e250fc2" - }, - { - "backtrace" : 62, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 68, - "id" : "BackendPlugin_qmllint_module::@b539f45bba5ba55bae2a" - }, - { - "backtrace" : 74, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "all_qmllint_module::@b8ea75ca72e9d0096cda", - "name" : "all_qmllint_module", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json deleted file mode 100644 index ac1e03c..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-cc8b39e42111f0ac0ac2.json +++ /dev/null @@ -1,366 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "qmlmodules", - "CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2725, - "parent" : 2 - }, - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 35, - "parent" : 4 - }, - { - "file" : 2, - "parent" : 5 - }, - { - "command" : 2, - "file" : 2, - "line" : 4, - "parent" : 6 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 7 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 8 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 2 - }, - { - "file" : 4 - }, - { - "command" : 2, - "file" : 4, - "line" : 2, - "parent" : 11 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 12 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 13 - }, - { - "file" : 5 - }, - { - "command" : 2, - "file" : 5, - "line" : 6, - "parent" : 15 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 16 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 17 - }, - { - "file" : 6 - }, - { - "command" : 2, - "file" : 6, - "line" : 2, - "parent" : 19 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 20 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 21 - }, - { - "file" : 7 - }, - { - "command" : 2, - "file" : 7, - "line" : 2, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 24 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 25 - }, - { - "file" : 8 - }, - { - "command" : 2, - "file" : 8, - "line" : 6, - "parent" : 27 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 28 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 29 - }, - { - "file" : 9 - }, - { - "command" : 2, - "file" : 9, - "line" : 7, - "parent" : 31 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 32 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 33 - }, - { - "file" : 10 - }, - { - "command" : 2, - "file" : 10, - "line" : 6, - "parent" : 35 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 36 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 37 - }, - { - "file" : 11 - }, - { - "command" : 2, - "file" : 11, - "line" : 5, - "parent" : 39 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 40 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 41 - }, - { - "file" : 12 - }, - { - "command" : 2, - "file" : 12, - "line" : 10, - "parent" : 43 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 44 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 45 - }, - { - "file" : 13 - }, - { - "command" : 2, - "file" : 13, - "line" : 6, - "parent" : 47 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 48 - }, - { - "command" : 3, - "file" : 0, - "line" : 2728, - "parent" : 49 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 9, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 10, - "id" : "QuickStudioComponents_qmltyperegistration::@b8ea75ca72e9d0096cda" - }, - { - "backtrace" : 14, - "id" : "QuickStudioEffects_qmltyperegistration::@981cd0cfbc19161bec24" - }, - { - "backtrace" : 18, - "id" : "FlowView_qmltyperegistration::@f99fd1e4b9fa497fd232" - }, - { - "backtrace" : 22, - "id" : "QuickStudioLogicHelper_qmltyperegistration::@a133c4daf6f4e56b78b8" - }, - { - "backtrace" : 26, - "id" : "QuickStudioMultiText_qmltyperegistration::@a7b8d61f767e497853c2" - }, - { - "backtrace" : 30, - "id" : "QuickStudioEventSimulator_qmltyperegistration::@639cba86296065e16922" - }, - { - "backtrace" : 34, - "id" : "QuickStudioEventSystem_qmltyperegistration::@c931a55b2364f386d7db" - }, - { - "backtrace" : 38, - "id" : "QuickStudioApplication_qmltyperegistration::@a324641c06033e250fc2" - }, - { - "backtrace" : 42, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 46, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929" - }, - { - "backtrace" : 50, - "id" : "BackendPlugin_qmltyperegistration::@b539f45bba5ba55bae2a" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda", - "name" : "all_qmltyperegistrations", - "paths" : - { - "build" : "_deps/ds-build/src/imports/components", - "source" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json b/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json deleted file mode 100644 index 29418a9..0000000 --- a/build/.cmake/api/v1/reply/target-content-Debug-c060ad8002349d7d4719.json +++ /dev/null @@ -1,612 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "content/libcontent.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:739:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2421, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 633, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2441, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 540, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 2752, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 2777, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2582, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1210, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 2743, - "parent" : 9 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2224, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2377, - "parent" : 6 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 13, - "file" : 3, - "line" : 1, - "parent" : 27 - }, - { - "command" : 12, - "file" : 0, - "line" : 764, - "parent" : 28 - }, - { - "command" : 10, - "file" : 0, - "line" : 1878, - "parent" : 29 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14 - ] - } - ], - "dependencies" : - [ - { - "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 7, - "id" : "content_tooling::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "content_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "content::@73a38b9e525c9c2ae262", - "name" : "content", - "nameOnDisk" : "libcontent.a", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 2, - 4, - 6, - 8, - 10, - 12, - 14 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 3, - 5, - 7, - 9, - 11, - 13, - 15, - 16, - 17, - 18, - 19, - 29, - 30, - 31 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 15, - "path" : "content/App.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 16, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 17, - "path" : "content/Screen01.ui.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 19, - "path" : "content/Speedometer.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 20, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 21, - "path" : "content/BatterySlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "path" : "content/TempSlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 25, - "path" : "content/WarningSymbol.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 30, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "path" : "content/fonts/fonts.txt", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "path" : "content/fonts/nasalization-rg.otf", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json b/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json deleted file mode 100644 index e4ac3d8..0000000 --- a/build/.cmake/api/v1/reply/target-content_autogen-Debug-11f39ff5c1526eb6e4ea.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "content_tooling::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "content_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json b/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json deleted file mode 100644 index a321879..0000000 --- a/build/.cmake/api/v1/reply/target-content_automoc_json_extraction-Debug-fb25e892c14063686b39.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_extract_metatypes", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 540, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2582, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1084, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 1099, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "content_autogen::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262", - "name" : "content_automoc_json_extraction", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json b/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json deleted file mode 100644 index d7fc43b..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmlcache-Debug-25ce992711465a39f5da.json +++ /dev/null @@ -1,295 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" - } - ], - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "_qt_internal_propagate_qmlcache_object_lib", - "_qt_internal_target_enable_qmlcachegen", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 6, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 2328, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 1144, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 972, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 6 - }, - { - "command" : 9, - "file" : 1, - "line" : 1001, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 10, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "content_qmlcache::@73a38b9e525c9c2ae262", - "name" : "content_qmlcache", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 7, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json b/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json deleted file mode 100644 index 9dc6136..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmlcache_autogen-Debug-80d799f57b14979f3281.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_qmlcache_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "content_qmlcache_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json deleted file mode 100644 index d0f906f..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-c0b18f91f25a4a3449ea.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 870, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "content_qmllint::@73a38b9e525c9c2ae262", - "name" : "content_qmllint", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json deleted file mode 100644 index 592b4a8..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-d7deaf355c4ba8b44fcc.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 897, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", - "name" : "content_qmllint_json", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json deleted file mode 100644 index 0b6e3dc..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-2271d96a817e5f6826e3.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2242, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 935, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@b8ea75ca72e9d0096cda" - } - ], - "folder" : - { - "name" : "QmlLinter" - }, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", - "name" : "content_qmllint_module", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json deleted file mode 100644 index f4b9cd0..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-6619c21d07987003e504.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 540, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2718, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "content_automoc_json_extraction::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", - "name" : "content_qmltyperegistration", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json deleted file mode 100644 index 0827749..0000000 --- a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-4f3509f7c6d83ef1bc3e.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 584, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1759, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1787, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1698, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2504, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 11 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "content_resources_1::@73a38b9e525c9c2ae262", - "name" : "content_resources_1", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json deleted file mode 100644 index dc1ebcf..0000000 --- a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-a6b69f41e3b5ca110ed3.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 633, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2460, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2150, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1753, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1759, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1787, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1698, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2504, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "content_resources_2::@73a38b9e525c9c2ae262", - "name" : "content_resources_2", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json b/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json deleted file mode 100644 index 72d907f..0000000 --- a/build/.cmake/api/v1/reply/target-content_tooling-Debug-573ff9ff0f4b830ba1d7.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 633, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2440, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2443, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_tooling::@73a38b9e525c9c2ae262", - "name" : "content_tooling", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json b/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json deleted file mode 100644 index f4c6713..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin-Debug-e8dbacf35574156a146d.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "qml/content/libcontentplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2211, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 1937, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 1933, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2278, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2216, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 1927, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "content::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 6, - "id" : "content_resources_1::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 6, - "id" : "content_qmlcache::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 6, - "id" : "content_resources_2::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "contentplugin::@73a38b9e525c9c2ae262", - "name" : "contentplugin", - "nameOnDisk" : "libcontentplugin.a", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json deleted file mode 100644 index 6ed3131..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-3519fac822a7f673e653.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json deleted file mode 100644 index 2e3595b..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-52add43ca8eedc831dec.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 650, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2324, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2398, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 654, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1698, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2504, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "contentplugin_init::@73a38b9e525c9c2ae262", - "name" : "contentplugin_init", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json deleted file mode 100644 index 2459d96..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-88e21ac6d7d4eece2512.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_init_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json deleted file mode 100644 index 3c48552..0000000 --- a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-a1ab1f9aa73790d1a746.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Backend/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 611, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 1802, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2285, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 2288, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "BackendPluginplugin::@b539f45bba5ba55bae2a" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "qt_internal_plugins::@b539f45bba5ba55bae2a", - "name" : "qt_internal_plugins", - "paths" : - { - "build" : "imports/Backend", - "source" : "imports/Backend" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json deleted file mode 100644 index 936965d..0000000 --- a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "kind" : "toolchains", - "toolchains" : - [ - { - "compiler" : - { - "id" : "AppleClang", - "implicit" : - { - "includeDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "linkDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift" - ], - "linkFrameworkDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks" - ], - "linkLibraries" : - [ - "c++" - ] - }, - "path" : "/Library/Developer/CommandLineTools/usr/bin/c++", - "version" : "15.0.0.15000309" - }, - "language" : "CXX", - "sourceFileExtensions" : - [ - "C", - "M", - "c++", - "cc", - "cpp", - "cxx", - "m", - "mm", - "mpp", - "CPP", - "ixx", - "cppm", - "ccm", - "cxxm", - "c++m" - ] - } - ], - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/build/.qt/QtDeploySupport.cmake b/build/.qt/QtDeploySupport.cmake deleted file mode 100644 index dd66805..0000000 --- a/build/.qt/QtDeploySupport.cmake +++ /dev/null @@ -1,66 +0,0 @@ -cmake_minimum_required(VERSION 3.16...3.21) - -# These are part of the public API. Projects should use them to provide a -# consistent set of prefix-relative destinations. -if(NOT QT_DEPLOY_BIN_DIR) - set(QT_DEPLOY_BIN_DIR "bin") -endif() -if(NOT QT_DEPLOY_LIB_DIR) - set(QT_DEPLOY_LIB_DIR "lib") -endif() -if(NOT QT_DEPLOY_PLUGINS_DIR) - set(QT_DEPLOY_PLUGINS_DIR "plugins") -endif() -if(NOT QT_DEPLOY_QML_DIR) - set(QT_DEPLOY_QML_DIR "qml") -endif() -if(NOT QT_DEPLOY_TRANSLATIONS_DIR) - set(QT_DEPLOY_TRANSLATIONS_DIR "translations") -endif() -if(NOT QT_DEPLOY_PREFIX) - set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") -endif() -if(QT_DEPLOY_PREFIX STREQUAL "") - set(QT_DEPLOY_PREFIX .) -endif() -if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) - set(QT_DEPLOY_IGNORED_LIB_DIRS "") -endif() - -# These are internal implementation details. They may be removed at any time. -set(__QT_DEPLOY_SYSTEM_NAME "Darwin") -set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") -set(__QT_DEPLOY_TOOL "/opt/homebrew/bin/macdeployqt") -set(__QT_DEPLOY_IMPL_DIR "/Users/mason/Documents/Code/dash-cpp/build/.qt") -set(__QT_DEPLOY_VERBOSE "") -set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") -set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") -set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") -set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") -set(__QT_DEFAULT_MAJOR_VERSION "6") -set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") -set(__QT_DEPLOY_QT_INSTALL_PREFIX "/opt/homebrew") -set(__QT_DEPLOY_QT_INSTALL_BINS "bin") -set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt") -set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "share/qt/libexec") -set(__QT_DEPLOY_QT_INSTALL_PLUGINS "share/qt/plugins") -set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt/translations") -set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/opt/homebrew/bin/qtpaths") -set(__QT_DEPLOY_PLUGINS "") -set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "") -set(__QT_DEPLOY_USE_PATCHELF "") -set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") -set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") -set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") - -# Define the CMake commands to be made available during deployment. -set(__qt_deploy_support_files - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" -) -foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) - include("${__qt_deploy_support_file}") -endforeach() - -unset(__qt_deploy_support_file) -unset(__qt_deploy_support_files) diff --git a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake deleted file mode 100644 index 5fe0583..0000000 --- a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# Auto-generated deploy QML imports script for target "Bolt_DashApp". -# Do not edit, all changes will be lost. -# This file should only be included by qt_deploy_qml_imports(). - -set(__qt_opts ) -if(arg_NO_QT_IMPORTS) - list(APPEND __qt_opts NO_QT_IMPORTS) -endif() - -_qt_internal_deploy_qml_imports_for_target( - ${__qt_opts} - IMPORTS_FILE "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - PLUGINS_FOUND __qt_internal_plugins_found - QML_DIR "${arg_QML_DIR}" - PLUGINS_DIR "${arg_PLUGINS_DIR}" -) - -if(arg_PLUGINS_FOUND) - set(${arg_PLUGINS_FOUND} "${__qt_internal_plugins_found}" PARENT_SCOPE) -endif() diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp deleted file mode 100644 index 59b755c..0000000 --- a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp +++ /dev/null @@ -1,15 +0,0 @@ --rootPath -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash --cmake-output --output-file -/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake --importPath -/Users/mason/Documents/Code/dash-cpp/build/qml/Main --importPath -/Users/mason/Documents/Code/dash-cpp/build/qml --importPath -/opt/homebrew/share/qt/qml --qrcFiles -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc \ No newline at end of file diff --git a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc deleted file mode 100644 index e717427..0000000 --- a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - - - diff --git a/build/.rcc/configuration.qrc b/build/.rcc/configuration.qrc deleted file mode 100644 index 1245a55..0000000 --- a/build/.rcc/configuration.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf - - - diff --git a/build/.rcc/qmake_Main.qrc b/build/.rcc/qmake_Main.qrc deleted file mode 100644 index f8cfc96..0000000 --- a/build/.rcc/qmake_Main.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir - - - diff --git a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp deleted file mode 100644 index 88eb50d..0000000 --- a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp +++ /dev/null @@ -1 +0,0 @@ -/Main/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp.rsp b/build/.rcc/qmllint/Bolt_DashApp.rsp deleted file mode 100644 index 6a10dda..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp.rsp +++ /dev/null @@ -1,14 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp_json.rsp b/build/.rcc/qmllint/Bolt_DashApp_json.rsp deleted file mode 100644 index ec584cb..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp_json.rsp +++ /dev/null @@ -1,16 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_qmllint.json diff --git a/build/.rcc/qmllint/Bolt_DashApp_module.rsp b/build/.rcc/qmllint/Bolt_DashApp_module.rsp deleted file mode 100644 index 55167c0..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp_module.rsp +++ /dev/null @@ -1,14 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc ---module -Main diff --git a/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake deleted file mode 100644 index 185317b..0000000 --- a/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,85 +0,0 @@ -set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "AppleClang") -set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000309") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") - -set(CMAKE_CXX_PLATFORM_ID "Darwin") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "") -set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "") -set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") -set(CMAKE_COMPILER_IS_GNUCXX ) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks") diff --git a/build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index e0e2dd919cecc2f462d01cfdf40dd35d1ea3377f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16984 zcmeI4e`s4(6vuCVR9afwI%H1jFoFzcXS>#|%LdM*_H_#j$#h|amT_s4SNpam>5^A% z#>9e5CIwxYqTpYOGK(D(b(Ap1ItmliZS_fn4LUN>?XY2*g;Dt~pqU)cGQ_9e2b>T@TB)R1+hGD+dNfC(@GCcp%k025#WOn?b60Vco%m;e)C z0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W|7!x3x5RwqNl{*C z5#^uj#obDiC@;2*mobxjtoG#>ChLsF;O(YRxz$bolF z&idq)NUS%$t!Nz5^Mf)oVix*02KNaOi^O|V+su;G3wb@$Ux;+e9WgD^6AKG?)tywy z)MdVq(F^_2NFou{q!#Omgk$j2i0~8kmvXN(!%Q>IA*`e{pH31|&*cZrNjD%%v&sY` zAn2-+0G>1xO-kY(M^^LI)^YXIBgHB@p)5YJ@CJ4=J0$fnJw1vphV%inA?mUNMov78 z8WBK3wKw99Ge?g(bY<^%&DoRxsBKgFCJ#+YTXn5gw$(G$8NdYp%GXNuS}FUY9bGht zFI`^)7y6=|*6}iMnKE9LdM;xOYgiL*f7mu-HD-kNbX&4m_=oeVe4Rf6lW;g z;}c##@u3#d&?J-u^W))Az^g{ft&@L#I)6^!NoNx;$C(Sxul(*`|5-4r%%2){dF>bVR3NQe|3KTfH$73sT}_H@S!8u&Q9!n zXTynq^S}RYymfM-`G=YN)AHlrD#vdO{(kh2JI2(O^FI|*H%k}Jr)$3N&CPvyZSR-Q bP2cGKZr8-c%BGpRw_9#~K2`Mma!ULOP3k*2 diff --git a/build/CMakeFiles/3.27.8/CMakeSystem.cmake b/build/CMakeFiles/3.27.8/CMakeSystem.cmake deleted file mode 100644 index ee7545f..0000000 --- a/build/CMakeFiles/3.27.8/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Darwin-23.4.0") -set(CMAKE_HOST_SYSTEM_NAME "Darwin") -set(CMAKE_HOST_SYSTEM_VERSION "23.4.0") -set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") - - - -set(CMAKE_SYSTEM "Darwin-23.4.0") -set(CMAKE_SYSTEM_NAME "Darwin") -set(CMAKE_SYSTEM_VERSION "23.4.0") -set(CMAKE_SYSTEM_PROCESSOR "arm64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 52d56e2..0000000 --- a/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,855 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o deleted file mode 100644 index e061c08c6ce69105ac2b6f4739914165fe59258c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1712 zcmb_cJ#5oZ5PqShqzWV;F@P#TBo?M9Nn5D}MM~6w09kE^41uV6Sc#Kba-7Id!K&&_d2>lvl19;@o<=hs%1JU>teA1H?gh=UITfXuYF5D;H#6H#|AtCilC}FZCwo8|_6t^{Y3{vM<~2L))!LY2-(1-f+J-2jiHF zT6SSMHMZq6au=W~7v;CqH>da>-a7}|!{+v2BhYmy3HhWmP^$SG=|2{q`US&%>eY;lbQ?XVyMg+K**B;m~Yk{~vPHOZ62y|Ep&Yb7B6Sk5lr??bVxW z*XY;Sj^&kd&8B0mIHp_M5J9Htn0~e4)k}HP!*AoL>6JH2?6-W=t(aa#R;;SocKp)v z5@&E;EVpHYMuXhi>c%lY_Sk&#f#p%dQZkU#VnR8|(Y2Px0VLj!p0y z=!_7?uCke@uwaw%MA=Le792AiWi!MfaK|u|%`CvifRoB*hzB;LJCJFaMf~|raCU9dqyf9G-p-`SvPH$>ooBh f661yA*P9F6E&&H{UPCy5X$|23rZj{DNF4bCQt1(% diff --git a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake deleted file mode 100644 index 4f39581..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp" "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp.dir/build.make b/build/CMakeFiles/Bolt_DashApp.dir/build.make deleted file mode 100644 index ce88219..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/build.make +++ /dev/null @@ -1,350 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include CMakeFiles/Bolt_DashApp.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/Bolt_DashApp.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/Bolt_DashApp.dir/flags.make - -.rcc/qrc_configuration.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf -.rcc/qrc_configuration.cpp: .rcc/configuration.qrc -.rcc/qrc_configuration.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource configuration" - /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp --name configuration /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc - -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Running moc --collect-json for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - -bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt -bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Automatic QML type registration for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes - -qml/Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Main/Bolt_DashApp.qmltypes - -.rcc/qrc_qmake_Main.cpp: qml/Main/qmldir -.rcc/qrc_qmake_Main.cpp: .rcc/qmake_Main.qrc -.rcc/qrc_qmake_Main.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running rcc for resource qmake_Main" - /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp --name qmake_Main /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc - -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/configuration.qrc -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/qmake_Main.qrc -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: qml/Main/Bolt_DashApp.qmltypes -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp: qml/Main/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_DashApp_main_qml.cpp" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache - /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Main/main.qml -I /Users/mason/Documents/Code/dash-cpp/build -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Main/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Running rcc for resource Bolt_DashApp_raw_qml_0" - /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp --name Bolt_DashApp_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc - -meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: Bolt_DashApp_autogen/mocs_compilation.cpp -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s - -CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp -CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp - -CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp > CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i - -CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: .rcc/qrc_configuration.cpp -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s - -CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: bolt_dashapp_qmltyperegistrations.cpp -CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp - -CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp > CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i - -CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: .rcc/qrc_qmake_Main.cpp -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i - -CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp > CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i - -CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s - -# Object files for target Bolt_DashApp -Bolt_DashApp_OBJECTS = \ -"CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" \ -"CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" - -# External object files for target Bolt_DashApp -Bolt_DashApp_EXTERNAL_OBJECTS = - -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/build.make -Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -Bolt_DashApp: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -Bolt_DashApp: content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -Bolt_DashApp: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -Bolt_DashApp: /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick -Bolt_DashApp: qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a -Bolt_DashApp: qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a -Bolt_DashApp: qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a -Bolt_DashApp: qml/FlowView/libFlowViewplugin.a -Bolt_DashApp: qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a -Bolt_DashApp: qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a -Bolt_DashApp: qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a -Bolt_DashApp: qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a -Bolt_DashApp: qml/content/libcontentplugin.a -Bolt_DashApp: qml/Bolt_Dash/libBolt_Dashplugin.a -Bolt_DashApp: /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels -Bolt_DashApp: /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL -Bolt_DashApp: _deps/ds-build/src/imports/components/libQuickStudioComponents.a -Bolt_DashApp: _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a -Bolt_DashApp: _deps/ds-build/src/imports/application/libQuickStudioApplication.a -Bolt_DashApp: /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -Bolt_DashApp: _deps/ds-build/src/imports/flowview/libFlowView.a -Bolt_DashApp: _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a -Bolt_DashApp: _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a -Bolt_DashApp: _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a -Bolt_DashApp: content/libcontent.a -Bolt_DashApp: imports/Bolt_Dash/libBolt_Dash.a -Bolt_DashApp: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -Bolt_DashApp: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -Bolt_DashApp: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Linking CXX executable Bolt_DashApp" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_DashApp.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp.dir/build: Bolt_DashApp -.PHONY : CMakeFiles/Bolt_DashApp.dir/build - -CMakeFiles/Bolt_DashApp.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp.dir/clean - -CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp -CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp -CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_configuration.cpp -CMakeFiles/Bolt_DashApp.dir/depend: .rcc/qrc_qmake_Main.cpp -CMakeFiles/Bolt_DashApp.dir/depend: bolt_dashapp_qmltyperegistrations.cpp -CMakeFiles/Bolt_DashApp.dir/depend: meta_types/qt6bolt_dashapp_debug_metatypes.json -CMakeFiles/Bolt_DashApp.dir/depend: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen -CMakeFiles/Bolt_DashApp.dir/depend: qml/Main/Bolt_DashApp.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake deleted file mode 100644 index f5f3d10..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake +++ /dev/null @@ -1,36 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/Bolt_DashApp_main_qml.cpp" - ".rcc/qrc_Bolt_DashApp_raw_qml_0.cpp" - ".rcc/qrc_configuration.cpp" - ".rcc/qrc_qmake_Main.cpp" - "Bolt_DashApp_autogen" - "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt" - "Bolt_DashApp" - "Bolt_DashApp.pdb" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o.d" - "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o.d" - "bolt_dashapp_qmltyperegistrations.cpp" - "meta_types/qt6bolt_dashapp_debug_metatypes.json" - "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" - "qml/Main/Bolt_DashApp.qmltypes" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_DashApp.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make deleted file mode 100644 index f282e55..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_DashApp. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts deleted file mode 100644 index 0057db6..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_DashApp. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/depend.make b/build/CMakeFiles/Bolt_DashApp.dir/depend.make deleted file mode 100644 index 5ef48a7..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_DashApp. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/flags.make b/build/CMakeFiles/Bolt_DashApp.dir/flags.make deleted file mode 100644 index f653f41..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/CMakeFiles/Bolt_DashApp.dir/link.txt b/build/CMakeFiles/Bolt_DashApp.dir/link.txt deleted file mode 100644 index b21614d..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -o Bolt_DashApp -iframework /opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a qml/FlowView/libFlowViewplugin.a qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a qml/content/libcontentplugin.a qml/Bolt_Dash/libBolt_Dashplugin.a /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL _deps/ds-build/src/imports/components/libQuickStudioComponents.a _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a _deps/ds-build/src/imports/application/libQuickStudioApplication.a /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -Xlinker -framework -Xlinker OpenGL -Xlinker -framework -Xlinker AGL -framework AppKit -framework ImageIO -framework Metal _deps/ds-build/src/imports/flowview/libFlowView.a _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a content/libcontent.a imports/Bolt_Dash/libBolt_Dash.a /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/CMakeFiles/Bolt_DashApp.dir/progress.make b/build/CMakeFiles/Bolt_DashApp.dir/progress.make deleted file mode 100644 index 8529815..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/progress.make +++ /dev/null @@ -1,17 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 6 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 7 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = 8 -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json deleted file mode 100644 index d45c361..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,1137 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeSystem.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlcomponents", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "BULD_QDS_COMPONENTS=true", - "QT_CORE_LIB", - "QT_GUI_LIB", - "QT_NETWORK_LIB", - "QT_OPENGL_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QMLMODELS_LIB", - "QT_QML_LIB", - "QT_QUICK_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtGui.framework/Headers", - "/opt/homebrew/lib/QtGui.framework", - "/opt/homebrew/lib/QtQuick.framework/Headers", - "/opt/homebrew/lib/QtQuick.framework", - "/opt/homebrew/lib/QtQmlModels.framework/Headers", - "/opt/homebrew/lib/QtQmlModels.framework", - "/opt/homebrew/lib/QtOpenGL.framework/Headers", - "/opt/homebrew/lib/QtOpenGL.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", - "MU", - null - ], - [ - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make deleted file mode 100644 index 1926962..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make +++ /dev/null @@ -1,97 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_autogen. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_autogen.dir/progress.make - -CMakeFiles/Bolt_DashApp_autogen: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_DashApp" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug - -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/configuration.qrc -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/qmake_Main.qrc -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp: .rcc/Bolt_DashApp_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" - /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_DashApp --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp - -Bolt_DashApp_autogen: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/build.make -.PHONY : Bolt_DashApp_autogen - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_autogen.dir/build: Bolt_DashApp_autogen -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/build - -CMakeFiles/Bolt_DashApp_autogen.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean - -CMakeFiles/Bolt_DashApp_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 00641f1..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp" - "Bolt_DashApp_autogen/mocs_compilation.cpp" - "CMakeFiles/Bolt_DashApp_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make deleted file mode 100644 index 97ffaae..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_autogen. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts deleted file mode 100644 index 2e4b7d7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make deleted file mode 100644 index e810039..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make - -CMakeFiles/Bolt_DashApp_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include - -Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction -Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make -.PHONY : Bolt_DashApp_automoc_json_extraction - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build: Bolt_DashApp_automoc_json_extraction -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build - -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean - -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 7892cc0..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_automoc_json_extraction" - "meta_types/Bolt_DashApp_json_file_list.txt" - "meta_types/Bolt_DashApp_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index b62ec9a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index d842afb..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_automoc_json_extraction. diff --git a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make deleted file mode 100644 index 94cf701..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmlimportscan. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake - -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /opt/homebrew/share/qt/libexec/qmlimportscanner -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/configuration.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/qmake_Main.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/Bolt_DashApp_raw_qml_0.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running qmlimportscanner for Bolt_DashApp" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlimportscanner @/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp - -Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make -.PHONY : Bolt_DashApp_qmlimportscan - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build: Bolt_DashApp_qmlimportscan -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build - -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean - -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake deleted file mode 100644 index a20954a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - "CMakeFiles/Bolt_DashApp_qmlimportscan" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make deleted file mode 100644 index b4c062d..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmlimportscan. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts deleted file mode 100644 index 501af74..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmlimportscan. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make deleted file mode 100644 index ba3859e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint: .rcc/qmllint/Bolt_DashApp.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp.rsp - -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/build.make -.PHONY : Bolt_DashApp_qmllint - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint.dir/build: Bolt_DashApp_qmllint -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/build - -CMakeFiles/Bolt_DashApp_qmllint.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index cb56b10..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make deleted file mode 100644 index ad45339..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts deleted file mode 100644 index d1f1a16..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make deleted file mode 100644 index 7fc2709..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint_json. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint_json: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint_json: .rcc/qmllint/Bolt_DashApp_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_json.rsp - -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make -.PHONY : Bolt_DashApp_qmllint_json - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/build: Bolt_DashApp_qmllint_json -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/build - -CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 0d5b73e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 50770eb..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 3e2382e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_json. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make deleted file mode 100644 index 68727c9..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint_module. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint_module: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint_module: .rcc/qmllint/Bolt_DashApp_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_module.rsp - -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make -.PHONY : Bolt_DashApp_qmllint_module - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/build: Bolt_DashApp_qmllint_module -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/build - -CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b81100e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index ef9a392..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 0f85f5b..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_module. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 4aa02aa..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make deleted file mode 100644 index ecced0f..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,119 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp -CMakeFiles/Bolt_DashApp_qmltyperegistration: qml/Main/Bolt_DashApp.qmltypes - -bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt -bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes - -qml/Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Main/Bolt_DashApp.qmltypes - -meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration -Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp -Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json -Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen -Bolt_DashApp_qmltyperegistration: qml/Main/Bolt_DashApp.qmltypes -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make -.PHONY : Bolt_DashApp_qmltyperegistration - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build: Bolt_DashApp_qmltyperegistration -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build - -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean - -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index c97e389..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmltyperegistration" - "bolt_dashapp_qmltyperegistrations.cpp" - "meta_types/qt6bolt_dashapp_debug_metatypes.json" - "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" - "qml/Main/Bolt_DashApp.qmltypes" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index a2fdb08..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 898276b..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmltyperegistration. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make deleted file mode 100644 index 2ebca8e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 9 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make deleted file mode 100644 index 69b9048..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_tooling. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_tooling.dir/progress.make - -qml/Main/main.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying main.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Main/main.qml - -Bolt_DashApp_tooling: qml/Main/main.qml -Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/build.make -.PHONY : Bolt_DashApp_tooling - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_tooling.dir/build: Bolt_DashApp_tooling -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/build - -CMakeFiles/Bolt_DashApp_tooling.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean - -CMakeFiles/Bolt_DashApp_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake deleted file mode 100644 index cd84704..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "qml/Main/main.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make deleted file mode 100644 index e6b0af0..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_tooling. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts deleted file mode 100644 index 259884a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_tooling. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index d730ccb..0000000 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,295 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineSystem.cmake:211 (message)" - - "CMakeLists.txt:6 (project)" - message: | - The system is: Darwin - 23.4.0 - arm64 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:6 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. - Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - Build flags: - Id flags: - - The output was: - 1 - ld: library 'c++' not found - clang: error: linker command failed with exit code 1 (use -v to see invocation) - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:6 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - Build flags: - Id flags: -c - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" - - The CXX compiler identification is AppleClang, found in: - /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.o - - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_218b5/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_218b5.dir/build.make CMakeFiles/cmTC_218b5.dir/build - Building CXX object CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl,-v -MD -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp - Apple clang version 15.0.0 (clang-1500.3.9.4) - Target: arm64-apple-darwin23.4.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp - clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.4.0 - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include" - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks" - #include "..." search starts here: - #include <...> search starts here: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 - /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory) - End of search list. - Linking CXX executable cmTC_218b5 - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_218b5.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_218b5 - Apple clang version 15.0.0 (clang-1500.3.9.4) - Target: arm64-apple-darwin23.4.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_218b5 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a - @(#)PROGRAM:ld PROJECT:ld-1053.12 - BUILD 15:45:29 Feb 3 2024 - configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em - will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em - LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) - TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) - Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift - Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - add: [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P'] - ignore line: [] - ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_218b5/fast] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_218b5.dir/build.make CMakeFiles/cmTC_218b5.dir/build] - ignore line: [Building CXX object CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl -v -MD -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] - ignore line: [Target: arm64-apple-darwin23.4.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-rHkt0P -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.4.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [Linking CXX executable cmTC_218b5] - ignore line: [/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_218b5.dir/link.txt --verbose=1] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_218b5 ] - ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] - ignore line: [Target: arm64-apple-darwin23.4.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_218b5 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [14.0.0] ==> ignore - arg [14.4] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_218b5] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_218b5.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lc++] ==> lib [c++] - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - implicit libs: [c++] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - - - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake:24 (_qt_internal_find_third_party_dependencies)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:119 (include)" - - "CMakeLists.txt:10 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/kwin" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_0936a/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_0936a.dir/build.make CMakeFiles/cmTC_0936a.dir/build - Building CXX object CMakeFiles/cmTC_0936a.dir/src.cxx.o - /Library/Developer/CommandLineTools/usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_0936a.dir/src.cxx.o -MF CMakeFiles/cmTC_0936a.dir/src.cxx.o.d -o CMakeFiles/cmTC_0936a.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-j0H4LA/src.cxx - Linking CXX executable cmTC_0936a - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0936a.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_0936a.dir/src.cxx.o -o cmTC_0936a - - exitCode: 0 - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:30 (_qt_internal_find_third_party_dependencies)" - - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:41 (include)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:164 (find_package)" - - "CMakeLists.txt:10 (find_package)" - checks: - - "Performing Test HAVE_STDATOMIC" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/3rdparty/kwin" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "HAVE_STDATOMIC" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_64da6/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_64da6.dir/build.make CMakeFiles/cmTC_64da6.dir/build - Building CXX object CMakeFiles/cmTC_64da6.dir/src.cxx.o - /Library/Developer/CommandLineTools/usr/bin/c++ -DHAVE_STDATOMIC -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_64da6.dir/src.cxx.o -MF CMakeFiles/cmTC_64da6.dir/src.cxx.o.d -o CMakeFiles/cmTC_64da6.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-v09FZ1/src.cxx - Linking CXX executable cmTC_64da6 - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64da6.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_64da6.dir/src.cxx.o -o cmTC_64da6 - - exitCode: 0 -... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 5819b47..0000000 --- a/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index bd69f6b..0000000 --- a/build/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,389 +0,0 @@ -# Hashes of file build rules. -704fe75316b31e8832e2a1ae46edf113 .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake -5af708844a5263b9d802d2730a0ee954 .rcc/qmlcache/Bolt_DashApp_main_qml.cpp -7afee9b93018edc85d8500e289a097f9 .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp -c1d87c47fbc426d1e04566525358b46b .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp -699e1158c6248fb30bb23e96d216445b .rcc/qrc_configuration.cpp -2df0d8766b837a36213dec0ee75acc05 .rcc/qrc_qmake_Main.cpp -7051c2ba92889f51bc211a0615334971 CMakeFiles/Bolt_DashApp_autogen -f94c5a4b6b0d9e1f39badebfd5cd2b4d CMakeFiles/Bolt_DashApp_automoc_json_extraction -1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmlimportscan -3653f848231646653d797c90daf6e861 CMakeFiles/Bolt_DashApp_qmllint -530f209369bf8951464fc5ba15e07c38 CMakeFiles/Bolt_DashApp_qmllint_json -c5bcb51a79f362b4dca117214c8c8283 CMakeFiles/Bolt_DashApp_qmllint_module -1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmltyperegistration -e33a47e62e2ff38833e8d33d4b53a6ce _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp -3f3a9ddc670a0b3467fb9f7b9d7e3526 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen -0fd55916dc23816b2a9bda4782de46c2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction -46cda58841cbc72226c4f93ca8831e1d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint -eea8870a2ec8f78baa5812e362b4c88e _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json -79b531e4fcebbad1f152d72c40ab349d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module -4a5359ce800c968fe9fa707049198d29 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration -ff1b21b4f8ffacebd03140d86781642d _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen -b56891e9a61208c4d605f5ab78434187 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen -76434b35e0f70f6619bd6ee5d86ee2d0 _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json -4fe01703f5f746c17b70e08bdac90bee _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen -729175d11b59e919236038e483c5a9a8 _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -b423826fc5ea7e9d0c5cbadeb4fc54e8 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp -a4909f16ffafa3aa4c3fc6a7ebbed6fb _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp -3c282f48884cd0445fcddb17b439990a _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp -394e68d7e368937f78fce57be4e3d16b _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp -420c28a02bd5a4aa0cc2fbb870280bed _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp -9a40115a9b88d297bc1f17adac7fb87c _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp -aeffe3425edf09ab5fc2520751f9238f _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp -6cf32ca5723fe67aee4542c908940820 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp -fd60323884f536b365856846822e90cb _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp -329ad9afaadf458649f66ebc8ea33385 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp -ea64609f2e0e7a8996c0014244541fdd _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp -11318300f88b9b1031fb43a79a1584d2 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp -79197deb3b379c34984276ae7c28ede7 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp -58fa766e0361b33278923103b28c2b05 _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp -8bbeaf6402d115aa676ff87ea97e9a04 _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp -fe1b2b480f425ad4591c3a223753a09a _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp -739fe1b15b6d85d980734864a5ddd742 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen -c741c440b92230dbb642b65d6591c6a5 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction -f7fad748003ea1b2f5587ed20e62f33c _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen -d85300ebb8c8ca40dc22978fa4768b3c _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint -1263ace7a709a48f930e6baf508986c4 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json -1ffec68c227afea6b1af0ecb475f1315 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module -e10769067945e8946619ef9f59f83a45 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration -a6f13629d0f8618c9badf4478649edbf _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen -2576fd224d14de16fe94e18bdade546a _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen -bf539450c4b52a277c204555d2785d18 _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json -8c374a2258dfb854cfd51f86d11e99e1 _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen -40435f79bec05330a744c780acf16cc1 _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -4f78a8afba634f2d30c5e925eb6e0433 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp -94615605ba9dfa4045963627dba732be _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp -e4e22fceba977575a2c5f4a255148418 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp -be4f10cd1e957f141c66e5fc7165a622 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp -07fa55631e976cfb765353ecb93d38d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp -9e750be9641edd429ba0cfd5c492cb1a _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp -7365a52f128e1f40e27ca2ce59b002ab _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp -51f1368b76244451bcb1db2c98c25e50 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp -6fb5bd5414de12a767632750e6bef4aa _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp -245685e097ef0612394669037f9ff8ff _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp -8e5064cf3feccae3961f3417a84e2860 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp -a0bc337b32e174e535ec9afd6e7a43cc _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp -f8f5807115997e9baeeda63efd9bbd91 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp -f6306bb342a82f4e59b5ac20de12bf3c _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp -36a2b709f51e1fd35277b200c7cf4b74 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp -30d9648d758fdf597fc35975f9377030 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp -17ce96d8b8fce690aa2f66356528049e _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp -3e216c5fdeae7437449c4d0b5560660b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp -898c9e728eef0f7bfca3ff0dd553874b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp -93eb860d3e4eaed4951468018786d2a5 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp -7e199d6b404c2acfe1d6763b191734d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp -6870481ea68ce7a4060e741ae690a0f2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp -3b9832c74e1535f7c7af840da14fb79e _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp -3e53c7578597d4e7bd28d0c2a5161ec2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp -62941bf8fa05cf91169a9120b1aca11b _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp -d357a178bf785b00754a8567a0c79cac _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp -e6ae9514d36ce7e64ec163f7b4d63fd0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp -939b922998f3a2bf8825fe842122d9d7 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp -53b742ea0a1c206703ee3635a31309c0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp -6745f2825cdcd504568a87e693ca7c85 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp -3f72f285355485f5b25a2d00124a48a2 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp -ba3a08ff28f1babf103cd0c7cff80392 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp -7281da69c278a4290687f4d033623700 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp -52e6855ffa47bbd62201979faecbecdb _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp -cd731ca00742da29a7b0449e449087d9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp -dc2bddded40d318fffd2877a711018e5 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp -3b55a24604f98e6ef232d4898660aaf6 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp -b2116b3fafad4690550e3b00c1582b63 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp -f09b576d72eb78c9b4f8215dff38f807 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp -b6c84bc31c1fe5bc6c6fdf0e57805ef0 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp -d6387c519a650e3fb152fbe9e9cf2de9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp -867e8b920a75f3ed3080730513fd0ac9 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp -23e54aa93f377694e2dfa5f7f14bb929 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp -632bc5310c078354f6e9390f5c2855f3 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp -0c9fa0a11969f876f1767afee62a2a18 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp -07fc232b269f189fd99fcbd2b956c224 _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp -b92aef378a9c619c8a1cc051e4bb12d3 _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp -0fe502d0c189e5bad0aea611ee5c6fae _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp -f86a34fb5bcd2c2e22c383d766f0d1df _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen -7fa796559da51948e9f71713ba207d2e _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction -48d06ca1c9e03b53a01d2efd2a508a1b _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen -cc637f3129faa64bd27aceb4803bac9c _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint -009be53fc5ab94becd3629076b00c86a _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json -679b82df58b69f9bd30ac1bb88a1e640 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module -8729e53e1f88b926842befa22b795326 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration -2ec691ab609aac4b0b9e12a613ba2dc1 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen -8823df254e61e67c8ee6c3597283f85a _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen -a59d9fbbbc0c1688a71d3a3ebbba8fbe _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json -4c912a305be45ad8ea4ca19fd76f89cc _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen -865d1ec6b6b67f7ac2c21a4869de00ac _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -4f91edfb01f693b4846fb26452caf3bd _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp -1e7fb2691b3717e699d39c7b701ba9ab _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp -5c9f634fbe92a5d864bb877eec29b064 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp -411ec62b0d8087f9cf39a92ce3311b33 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp -bfbf0c83f68dcbc130c37bd388f35c26 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp -4d6d0280372bca9918814159947ad0ae _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp -1e28a2d2f32d93a5a1a508a52e6407e5 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp -787caec0ad2cd2bf87cac64108fd5200 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp -4896c06bdfc316c45cf2fa425c11973e _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp -c28a27187f874629f99430c7a2b0f636 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp -bb27b09e33a2265814f8cfb66dd508c3 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp -fa1bafeffb6ed923f9ab5cbcc3a20e62 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp -4f30a1d757386e0176cb72f4c34c10f6 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp -a5054db3ffc37f28ad50f2036006041a _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp -22568c8a52526b413d5403b62ae61f67 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp -51ea344c5047be16a8ea5213668e519c _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp -01185abf18d79adb579193a3b07fff56 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp -68b985f4cd43015b8d906753e18d9d21 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp -f452b1157a8b322b9dba1443b71df0de _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp -3b2effb53ca970621159af9123aca31a _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp -ead341fa6efec860278e15f2ec3f67dc _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp -5d9300e14677e0894f2446676f182500 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp -7346e269c8c0ea9309eb4e54ce5bbff7 _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp -1e33576ec9692cdd15bcb32204ae6ece _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp -fb3fb564e429e52fa027dfba3ac99d78 _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp -3638a2594659c642279bcfc494734e5f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen -980b386157cc4eccf939952822960d78 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction -4c574c266d772115b28e14b9cc24f5f1 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen -697427c4fb9b30ad5746c330bbda9f49 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint -6d88777fff35a7e2d829e739c255cee4 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json -d6ba7a41fa01752a95286a3384077a4b _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module -302dcbb8dfd6f27c4cdb05aed5a78d8b _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration -9fa6fa58bba742aef588c0a41e1653ab _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen -3186addca9cc0b6caa92c2d46bec9ff2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen -e69976171b7a18c2afa702c14fb63c27 _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -45acfa90c49c37d2a93e7369a440f3aa _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json -5d3fa89e5ceff98a50c055fe209ff3d4 _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen -f10bfd6edcc4033fa9340a1e0a976330 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp -2e472f81014c721995b5708c0e17b3f2 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp -2cd66d93e966679ea8ec11e318b62182 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp -c05be832cac7b79ebd6a36f207266d9e _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp -3bb6376cefc5cb1c27c25ae792cfdf75 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp -2cfbec7289eeb726d13a1a445c42e926 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp -f25346997ba3a42729b265977de8be72 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp -ad06ec46e1642c8cae15e50ceedf61d3 _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp -7ca493dca757db1b2a16000ca55cfaf9 _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp -d6f6674f679fa414c53219595faf5729 _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp -d8971f575aa1455f8b1986db8402732d _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen -f4d02774e8f92bbbf2ecbc062e12952a _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction -70cbd8703b9e905b31c9c21fa1637ea4 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen -7a98b2a5b2d15437d4ec45c5bad4091b _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint -c9c095f3a9425cb40337a65811b7ac08 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json -fda6a77fb203ec52727750446c019aad _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module -2c311f5bbedd746942d802f8a388bc91 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration -2aae8ed6122c545ce6e03832401203f9 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen -5c88a9be31a82e4ef25a1eb77ec58720 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen -ffa21f117f24972668d1bbf230f17a9f _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json -aad8657b86ff55f6ae867c32a1c5254c _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen -3146b58f4222e193fb5a942b5998f718 _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -5731599be657b3fa9a7a9e6bc173c9d6 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp -880190fd48256e91263cb5267954d731 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp -16ee99118d89298e644c29dae21ebe4c _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp -ae5698b8c161e7e408c66e400d9b0b88 _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp -1a007f4f002144484de4b48be1e576d3 _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp -d3c9511254fa0fb10a573e74ad12fa85 _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp -363a948b6dacfc77151a8656c7afb430 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen -bf202def1a18faa4ace2baf05dc9c41b _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction -eb3dcb6a87776ea66b157cba0771d9df _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen -8c8086e022fc0290fd8ff12d09b52450 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint -e2118e98cd36466733fc33c74af1adb1 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json -9f8b7c03672b2a6c66bff260048bc7f5 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module -ad28b7c6186fd267acbb2c316ee61642 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration -b04b5f8a3ef725de5ff035be2093db8d _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen -7e8fa2d6aed0e14626a73ffa899f2b4f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen -834a9ace712f458e2f76ef833afb09a7 _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json -87c7573ebc20145526ad488e862198db _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen -fee2389582fd7b3f772cd0d07e0f4677 _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -32a5fa967ece4c2786fb3b67a97c37fb _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp -be6396058053bbb26aa8d5a90f327224 _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp -d53d15c5c6ff7883c96dcc743023b9f8 _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp -6ad712bf6fc86d5669cad6e6ffcd352d _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp -7d361571ab260acea3ba4edbf0e335ae _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp -d0702e1633be643c4afb2c339c484296 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen -2a8eafd8008a39b1f3a0aa8a01a5253a _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction -77114910f6d680e369e70d3c9af4fb39 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen -c22c4e9c6bb23d9ed1cf1841771d402c _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint -dbe90a333578132c5702afea2606528b _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json -7b59f796e9023ff80528287ac14e27e3 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module -1c98976e44fa7f9ad209f844caeaaa79 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration -69e9db37ae99c7066ee3b3e912ceb5d4 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen -f65f8be04ef9648656d87acc0df91463 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen -f26f941f754153ea5f9060bd8ad041c7 _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json -bab438aa85031517e4e76add5c9bcf8c _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen -221b57b1e282ebb439c55967bbfb8e12 _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -970e8fd24cbb04c6639dddb318e43f56 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp -3cbe48c5b2c2b68e96fb906ebf91c352 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp -ab507fa1bf860a4f7e39afef34a84757 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp -a94894c2cdb3f163ad874c63c459d494 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp -2373e9bace83dd8948fe05b441557fc6 _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp -8646239860f38a5cdb66644dc2d96b6e _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen -1d3edb9073c31303d715ed4b8c835f39 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction -55dd15d712c7a705e9d42961f281744c _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen -fa47f9fede50efdee7332dd64ddc0706 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint -16777f3fbb97dd3604199e340c4f0575 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json -0b1588c998d6b6551f4adea7dac2146c _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module -56f4aff1fe69c041c0e0d88db61ce5db _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration -34ba409d9ecc0905b8f1e9dc99fa3c89 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen -7a70d117b64b74b36dd7d8ed0be0fd4d _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen -87974ab2cb335b45eef0e9439c6e744d _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json -f473d9ec26e92f1b88dd710de5d97fe8 _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen -2a659ba21d1687b254137dbe573c9cee _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -8cde5a9c1c98788001285e7848ab0b32 bolt_dashapp_qmltyperegistrations.cpp -94a4e6b591493ded13eacf9684aebf9f content/.rcc/qmlcache/content_App_qml.cpp -6916e5ea167d713c61e4907560710523 content/.rcc/qmlcache/content_BatterySlider_qml.cpp -971d839ce86c3b964d77f01dd2bb0173 content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -b0e59d24eeb48a3b76920ce2e362b63c content/.rcc/qmlcache/content_Speedometer_qml.cpp -2e0fc47ff5d64b88f6c11547132a5f94 content/.rcc/qmlcache/content_TempSlider_qml.cpp -fe3c77c85aaf2e4dfa13e0ab90f695a7 content/.rcc/qmlcache/content_WarningSymbol_qml.cpp -ee132720e03ec070c53618d12a2ff8b1 content/.rcc/qmlcache/content_qmlcache_loader.cpp -d0615d8a132e74f7d67dc3af3a3509ec content/.rcc/qrc_content_raw_qml_0.cpp -2130f002b849a41f58fe7e1dead40cba content/.rcc/qrc_qmake_content.cpp -e11df896c22ff11c20c86342252c5716 content/CMakeFiles/content_autogen -470e775060afaf0d3f0d4fea58897772 content/CMakeFiles/content_automoc_json_extraction -17382c3745ea1cb541fe494f6765d42c content/CMakeFiles/content_qmlcache_autogen -850b411bbd6f11304211bd065349ac4e content/CMakeFiles/content_qmllint -ccab716c0cb6327a73e949c98a1ec4b4 content/CMakeFiles/content_qmllint_json -831e4ec481c5698f2fa4ef3ecb438d03 content/CMakeFiles/content_qmllint_module -6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_qmltyperegistration -3cfa6921b7df271291ca506240a51263 content/CMakeFiles/contentplugin_autogen -63b06c8d2e09d55dbd54a138f37a26f5 content/CMakeFiles/contentplugin_init_autogen -e8cab1260aab3ddc96cc0b4654399366 content/content_qmltyperegistrations.cpp -593d7333b5b598f9e3eeb97e6deba2a2 content/meta_types/qt6content_debug_metatypes.json -e9c30d3a0a376d4c2d133ec6f60f05ea content/meta_types/qt6content_debug_metatypes.json.gen -70c07a3e809ebd4aa0769f762d3758ce imports/Backend/.rcc/qrc_qmake_Backend.cpp -381584ec12462e5de91719c7ade6b6f2 imports/Backend/CMakeFiles/BackendPlugin_autogen -3897ab0c764cd1f161495fd0380b2705 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction -d9badf69205c0dba6a244f3c28131e47 imports/Backend/CMakeFiles/BackendPlugin_qmllint -3d4d8d4bc8e7db81040ffb659ea75994 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json -c2fc7eaf0f94cd0d5a6b2a9838a6b750 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module -62133c5fbc6b4dc1fd435201bfe9f236 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration -7520d8a53bfe47ea1300f361fd0dbd5d imports/Backend/CMakeFiles/BackendPluginplugin_autogen -6af724c36ba4dfd3364af0fba0b3705e imports/Backend/CMakeFiles/Backend_autogen -235b2ec4c326ac0611753e4ab1040d24 imports/Backend/backendplugin_qmltyperegistrations.cpp -d9e12e27f833aefa638a2704fad16f49 imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json -f89a3fecba6e07c5cb42983db73863eb imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen -d522844888927813f024f67fba86cb3f imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -6d1d21ce33f9fdf6b2aea0e58d115383 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -2c36a5f294669862134eb38ea7f39f2a imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -43251e6cf8eae1af7d5de19e2616d2ed imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -0042322a0795f5cb96c0c8da63fc149d imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -adbb375648730d47bb1ba5b91b8158e0 imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -e13326feff4b181fa0f6f811aa2af1e9 imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -76741caf9f263c9f788ecac7cf4ee419 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen -b55179fdf2d49ef82e2837c92bee5ae0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction -96044054a3797ea92ae86c024712e536 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen -589b4d6dcf10118dc596cbafe032e759 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint -1817681b06f59c78b1dc8f2ebefa90f0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json -870c838975dd4644c9eb992ec0d92ed9 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration -302bcd68a79c72776966b196494bf655 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen -9c988f765a1e1fee8717a40316f34d09 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen -7611f5b1fced6f9d6f3c8a7c3bd2a597 imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -e83ce49ec7c69a400d3d277c6a09cbf9 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -8a03e76905f6da237d5b505b797bd50e imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen -9688256dd1705ce0d7e0038c869afac0 meta_types/qt6bolt_dashapp_debug_metatypes.json -8832df052b51625e22780f9a867929fa meta_types/qt6bolt_dashapp_debug_metatypes.json.gen -c8ee9bdcb0452ba2da5f41cccaf65374 qml/Bolt_Dash/Constants.qml -7cc209aa92e91232b2a4be5b6e612612 qml/Bolt_Dash/DirectoryFontLoader.qml -742d3a4aa3b4f960602872709a1567ea qml/Bolt_Dash/EventListModel.qml -7606eb47dabc7847739cebf75622a9ee qml/Bolt_Dash/EventListSimulator.qml -73a31ea83a64c910f8b4c214e4cb5bf3 qml/FlowView/+DesignMode/FlowItem.qml -379e2055baf114c6a24f32bb5eb386ba qml/FlowView/+DesignMode/FlowView.qml -202754debe627d7f2547b0b39830c6fc qml/FlowView/DefaultFlowEffect.qml -74e268563d260c1af87e82bd9d6a13f4 qml/FlowView/FlowActionArea.qml -75fe0b6b9e6c75ec6d816b24a5de4f58 qml/FlowView/FlowDecision.qml -35505dd280a3a92d3c0c45b0726b1118 qml/FlowView/FlowEffect.qml -437dee2023dbbebba752f255a10cd0ad qml/FlowView/FlowFadeEffect.qml -1f2906273ce48208c5e79e6ec49ed265 qml/FlowView/FlowItem.qml -ba56a3dac2a5ed46c34c830c45f7266c qml/FlowView/FlowMoveEffect.qml -b95a4adc036ed6d362af62aaa433e3e0 qml/FlowView/FlowPushEffect.qml -9cd7a68de70a1ab085154c41fdbb1f16 qml/FlowView/FlowPushLeftEffect.qml -49f64d2883937a51f339e0ded73735e4 qml/FlowView/FlowPushRightEffect.qml -490a6bbbc7c9c7f7e56f492187d83b3b qml/FlowView/FlowPushUpEffect.qml -f09a1a87819340d5f33095e64b257b6f qml/FlowView/FlowSlideDownEffect.qml -2133073357e91a19df1936f16d27c54e qml/FlowView/FlowSlideLeftEffect.qml -7e73eee8dcd1809f7734e39765ea2367 qml/FlowView/FlowSlideRightEffect.qml -4e5af204df891d62f9a63825c056b14c qml/FlowView/FlowSlideUpEffect.qml -fbec16918b1c1b8dde3a8cb000ccc6af qml/FlowView/FlowState.qml -c6bd5144ea82fc66d1aa0546e63207d2 qml/FlowView/FlowTransition.qml -c6e6ffa6e42c0f051c4cc5cdf7bda7af qml/FlowView/FlowTransitionList.qml -ddf1b428bcc2fcb8a572847fecfc0e5d qml/FlowView/FlowView.qml -10cad70c70da1e09cdfe987261090967 qml/FlowView/FlowWildcard.qml -12ef003b1e36c6c9d1bafc8ac61df1cc qml/FlowView/SwipeInteraction.qml -2d7b62bc82f222e3d979ad82b36a03d9 qml/FlowView/qmldir -d321fba34ae80da542c72be1b6da1b5f qml/Main/main.qml -a91975d78ac69f877c938a82fbdeb880 qml/QtQuick/Studio/Components/ArcArrow.qml -d5e5087f3b0d02ec60cb6d78d0915643 qml/QtQuick/Studio/Components/ArcItem.qml -66682dfb5a37f683dc5255a3c710d197 qml/QtQuick/Studio/Components/BorderItem.qml -1c7e5b2e50a11afb31c5dfb219049b59 qml/QtQuick/Studio/Components/EllipseItem.qml -fda8a4f806f8ed027da9265813bcb219 qml/QtQuick/Studio/Components/FlipableItem.qml -5a70d38e7f1d925e32098ea415eb4f54 qml/QtQuick/Studio/Components/GroupItem.qml -dd90bb3d4c602093a6ca35cbbcccd9b4 qml/QtQuick/Studio/Components/IsoItem.qml -b5d776e9156570b4c565bc272ceafebc qml/QtQuick/Studio/Components/PieItem.qml -33c0059509c89e3c5c4b8ca7a8f66068 qml/QtQuick/Studio/Components/RectangleItem.qml -c5579744b584a90e61ec174a40b6d63b qml/QtQuick/Studio/Components/RegularPolygonItem.qml -b5f9cd6c596060a27b27bf7934feee79 qml/QtQuick/Studio/Components/StraightArrow.qml -689c02f366edb7634bd360b089c763dd qml/QtQuick/Studio/Components/SvgPathItem.qml -7d427150886ddf8c45c59694240ba57d qml/QtQuick/Studio/Components/TriangleItem.qml -5748802361de2077398aab0e3b981359 qml/QtQuick/Studio/Effects/BlendEffect.qml -36be8294cec18fc6632556b833fb0952 qml/QtQuick/Studio/Effects/BlendItem.qml -07053debb15f28b5402a786df269e67f qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml -f6134ee929e01cf6f71789f0e5af239b qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml -c0156f67c3fa2cb3072101eb2bc5dd04 qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml -5af009ff988d8cb9d323edb73c3bfc7b qml/QtQuick/Studio/Effects/ColorOverlayItem.qml -ab49a361dc382c8e9d603dd028573abe qml/QtQuick/Studio/Effects/ColorizeEffect.qml -8138b7aeec7b750a0f49d111d7e73da8 qml/QtQuick/Studio/Effects/ColorizeItem.qml -4ff2db206fe61be113c6651d8e2bc7e5 qml/QtQuick/Studio/Effects/DesaturationEffect.qml -5e622e77058e047ba7402d0ff627c6b2 qml/QtQuick/Studio/Effects/DesaturationItem.qml -73c512aa55524ecf51f3e344c5683a6e qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml -32e6fe20103ec48efc1740e02dd3a6e5 qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml -8382211282915a99743ceb25791c10ee qml/QtQuick/Studio/Effects/DisplaceEffect.qml -ac6570b826034cf86a2f03bb0dc5ecde qml/QtQuick/Studio/Effects/DisplaceItem.qml -c385943474a5bc9d33c19306d583ed09 qml/QtQuick/Studio/Effects/DropShadowEffect.qml -5a601dd67d002b8b92a67c647558c44c qml/QtQuick/Studio/Effects/DropShadowItem.qml -6080ecd2edc576bb27ab2b598cc243eb qml/QtQuick/Studio/Effects/FastBlurEffect.qml -7c8c37ae64cd62eeeafce2f24c4b350c qml/QtQuick/Studio/Effects/FastBlurItem.qml -ae51797cb45a76f50e747e4c72f3f440 qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml -8eb8836495e4e8e90b21b8a9718f8604 qml/QtQuick/Studio/Effects/GammaAdjustItem.qml -7e565ec6e6fee5b8795f19ee9bf472a6 qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml -540792719ee0051c351c0dfd8beaece3 qml/QtQuick/Studio/Effects/GaussianBlurItem.qml -e19174f31d677244acfd8b5cc6948dde qml/QtQuick/Studio/Effects/GlowEffect.qml -69d2fab228d782bded53f287bcd919e0 qml/QtQuick/Studio/Effects/GlowItem.qml -3ea802070619e4abd0c40586f4b33423 qml/QtQuick/Studio/Effects/HueSaturationEffect.qml -83dd8a4896f6f8770184f9d94d398aac qml/QtQuick/Studio/Effects/HueSaturationItem.qml -5f082d8847e8ae322d41f5bbabee42ef qml/QtQuick/Studio/Effects/InnerShadowEffect.qml -981078cac010c12a6f9850e8d025ba9a qml/QtQuick/Studio/Effects/InnerShadowItem.qml -8c5fe5ccc505145d478d3194016d72f4 qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml -e6ecbf6490b525c4935841b7dbef256b qml/QtQuick/Studio/Effects/LevelAdjustItem.qml -8570128c85989fe165c8065d79451bb4 qml/QtQuick/Studio/Effects/MaskItem.qml -3827a653f3abf79d81483842e41975b9 qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml -53415ebeedb011449ffba0e12f84e74b qml/QtQuick/Studio/Effects/MaskedBlurItem.qml -f3b90e289f0e7fb9ea4e47825c2623ce qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml -ad616cf528f5355814c7de0dd32eb32a qml/QtQuick/Studio/Effects/OpacityMaskItem.qml -f256aa33342c808c0511ce227414e3b3 qml/QtQuick/Studio/Effects/RadialBlurEffect.qml -ed38962ee0a46278cf25be32da8aaf23 qml/QtQuick/Studio/Effects/RadialBlurItem.qml -8e4b4f5f2ebbcdcfde45e1eda56be0f4 qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml -bf6c5d8765c319a45aab8d13f4cd1533 qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml -60bf9be5eba44e7bba4024167f78115f qml/QtQuick/Studio/Effects/RotationItem.qml -c8e78ccfd180db3ab94ff1f9b707988e qml/QtQuick/Studio/Effects/SaturationItem.qml -06eb52879697fbf0f08c023d4998edc3 qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml -3de39e41eacc059a113828f5fa53bcf7 qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml -35e4573987e359695c5442881de2a6e5 qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml -0b884512e9783c52a57d8c951d05a13d qml/QtQuick/Studio/Effects/ZoomBlurItem.qml -23784f34620da812a20e6e423da509b0 qml/QtQuick/Studio/EventSimulator/EventSimulator.qml -4f1144f33341b9a3a6e016b9ffb7e2ee qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml -10d0a9b062fc2137a607fdddf440ca3a qml/QtQuick/Studio/EventSystem/EventListener.qml -92ffb6314cf1f9fc33fd8099481112a6 qml/QtQuick/Studio/EventSystem/EventSystem.qml -3f8f98cdd72702265045537da15cd398 qml/QtQuick/Studio/LogicHelper/AndOperator.qml -6fafcbc41e67765914c0ef39d3967117 qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml -b0c7f5932cdf9274d0ad31a2031dd789 qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml -c1e8c144619528d3799034c1e4fe1246 qml/QtQuick/Studio/LogicHelper/NotOperator.qml -9ebd31d6da29fa34f1652f51a1f8968b qml/QtQuick/Studio/LogicHelper/OrOperator.qml -7f93fad6692bd9c1c215645968761a7e qml/QtQuick/Studio/LogicHelper/RangeMapper.qml -f7b99d9eb6cb5c977e2d197135a68075 qml/QtQuick/Studio/LogicHelper/StringMapper.qml -001ef4e2ebfa0fa773d366b2adf6936f qml/QtQuick/Studio/MultiText/MultiTextElement.qml -523eacfa03d7f11d56cdb1107988c8c6 qml/QtQuick/Studio/MultiText/MultiTextException.qml -5d3609c1519c891f55f1cdc1440841be qml/QtQuick/Studio/MultiText/MultiTextItem.qml -1d2a3059ff97ec8d55d81c1a71604f48 qml/content/App.qml -1bd8f9ba3d34aad9fd4cca555fc321ba qml/content/BatterySlider.qml -4714ff78e98ca6813c445063b85a98b2 qml/content/Screen01.ui.qml -6d6a18da20768a44f1df0fa3b2aef5a7 qml/content/Speedometer.qml -6a458631fa923fd58ffd9cb8c02ab1a1 qml/content/TempSlider.qml -b74ee1a3d9ac5939c265bacdae1f87ee qml/content/WarningSymbol.qml -86f920ea72f490e171b2b7ff5883e5b7 qml/content/fonts/fonts.txt -575f8ddf60415e110dafcd0b6ab69666 qml/content/fonts/nasalization-rg.otf diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index 8aec778..0000000 --- a/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,1222 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlcomponents" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules" - "CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" - "CMakeFiles/3.27.8/CMakeSystem.cmake" - "_deps/ds-src/CMakeLists.txt" - "_deps/ds-src/src/CMakeLists.txt" - "_deps/ds-src/src/imports/CMakeLists.txt" - "_deps/ds-src/src/imports/application/CMakeLists.txt" - "_deps/ds-src/src/imports/components/CMakeLists.txt" - "_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt" - "_deps/ds-src/src/imports/flowview/CMakeLists.txt" - "_deps/ds-src/src/imports/logichelper/CMakeLists.txt" - "_deps/ds-src/src/imports/multitext/CMakeLists.txt" - "_deps/ds-src/src/imports/tools/CMakeLists.txt" - "_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt" - "_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindBinUtils.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePackageConfigHelpers.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakePrintHelpers.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckIncludeFileCXX.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CheckLibraryExists.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/Clang.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Compiler/GNU.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FeatureSummary.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FetchContent/CMakeLists.cmake.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindGit.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindOpenGL.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPackageMessage.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindPkgConfig.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindThreads.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/FindVulkan.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/GNUInstallDirs.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/MacroAddFileDependencies.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Apple-Clang.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapAtomic.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeature.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtFeatureCommon.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.6.2_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtAndroidHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtAppHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtAutoDetectHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtAutogenHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildInformation.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildOptionsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildPathsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoExamplesHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtBuildRepoHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtCMakeHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtCMakeVersionHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtDbusHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtDocsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtExecutableHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtFeature.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtFeatureCommon.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtFindPackageHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtFlagHandlingHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtFrameworkHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtGlobalStateHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtHeadersClean.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtInstallHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtJavaHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtLalrHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtMkspecHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtModuleHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPkgConfigHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPlatformSupport.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPlatformTargetHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPluginHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPostProcessHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPriHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPrlHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtQmakeHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtResourceHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtRpathHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtSanitizerHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtSeparateDebugInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtSimdHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtSyncQtHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtTargetHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtTestHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtToolHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtToolchainHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtUnityBuildHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtWasmHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtWrapperScriptHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - ".rcc/configuration.qrc" - "_deps/ds-subbuild/CMakeLists.txt" - ".rcc/qmake_Main.qrc" - "qml/Main/Bolt_DashApp_qml_module_dir_map.qrc" - ".rcc/Bolt_DashApp_raw_qml_0.qrc" - "qml/Main/qmldir" - "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json" - ".qt/QtDeploySupport.cmake" - "qmltypes/Bolt_DashApp_foreign_types.txt" - ".rcc/qmllint/Bolt_DashApp.rsp" - ".rcc/qmllint/Bolt_DashApp_json.rsp" - ".rcc/qmllint/Bolt_DashApp_module.rsp" - ".rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp" - ".qt/deploy_qml_imports/Bolt_DashApp.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc" - "_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp" - "qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc" - "qml/QtQuick/Studio/Components/qmldir" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt" - "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp" - "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp" - "_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp" - "_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp" - "_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc" - "_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp" - "qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc" - "qml/QtQuick/Studio/Effects/qmldir" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt" - "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp" - "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp" - "_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp" - "_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp" - "qml/FlowView/FlowView_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt" - "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp" - "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp" - "_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp" - "_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp" - "_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc" - "_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp" - "qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc" - "qml/QtQuick/Studio/LogicHelper/qmldir" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt" - "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp" - "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp" - "_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp" - "_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc" - "_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp" - "qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc" - "qml/QtQuick/Studio/MultiText/qmldir" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt" - "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp" - "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp" - "_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp" - "_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp" - "_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc" - "_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp" - "qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc" - "qml/QtQuick/Studio/EventSimulator/qmldir" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp" - "_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc" - "_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp" - "qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc" - "qml/QtQuick/Studio/EventSystem/qmldir" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp" - "_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp" - "_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake" - "_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc" - "_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp" - "qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc" - "qml/QtQuick/Studio/Application/qmldir" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json" - "_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt" - "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp" - "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp" - "_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp" - "_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp" - "_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake" - "content/.rcc/qmake_content.qrc" - "content/contentplugin_contentPlugin.cpp" - "qml/content/content_qml_module_dir_map.qrc" - "content/.rcc/content_raw_qml_0.qrc" - "qml/content/qmldir" - "content/CMakeFiles/content_autogen.dir/AutogenInfo.json" - "content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json" - "content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json" - "content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json" - "content/qmltypes/content_foreign_types.txt" - "content/.rcc/qmllint/content.rsp" - "content/.rcc/qmllint/content_json.rsp" - "content/.rcc/qmllint/content_module.rsp" - "content/.rcc/qmlcache/content_qml_loader_file_list.rsp" - "content/contentplugin_init.cpp" - "content/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc" - "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" - "qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc" - "imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc" - "qml/Bolt_Dash/qmldir" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp" - "imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp" - "imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" - "imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/Backend/.rcc/qmake_Backend.qrc" - "imports/Backend/BackendPluginplugin_BackendPlugin.cpp" - "qml/Backend/BackendPlugin_qml_module_dir_map.qrc" - "qml/Backend/qmldir" - "imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json" - "imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json" - "imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json" - "imports/Backend/qmltypes/BackendPlugin_foreign_types.txt" - "imports/Backend/.rcc/qmllint/BackendPlugin.rsp" - "imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp" - "imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp" - "imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake" - "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/content.dir/DependInfo.cmake" - "content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake" - "content/CMakeFiles/content_resources_1.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake" - "content/CMakeFiles/content_tooling.dir/DependInfo.cmake" - "content/CMakeFiles/content_resources_2.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake" - "content/CMakeFiles/content_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake" - "imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake" - ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 deleted file mode 100644 index 33d118e..0000000 --- a/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,5438 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/Bolt_DashApp.dir/all -all: CMakeFiles/Bolt_DashApp_tooling.dir/all -all: _deps/ds-build/all -all: content/all -all: imports/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: _deps/ds-build/preinstall -preinstall: content/preinstall -preinstall: imports/preinstall -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/Bolt_DashApp.dir/clean -clean: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean -clean: CMakeFiles/Bolt_DashApp_tooling.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean -clean: CMakeFiles/Bolt_DashApp_autogen.dir/clean -clean: _deps/ds-build/clean -clean: content/clean -clean: imports/clean -.PHONY : clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build - -# Recursive "all" directory target. -_deps/ds-build/all: _deps/ds-build/src/all -.PHONY : _deps/ds-build/all - -# Recursive "preinstall" directory target. -_deps/ds-build/preinstall: _deps/ds-build/src/preinstall -.PHONY : _deps/ds-build/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/clean: _deps/ds-build/src/clean -.PHONY : _deps/ds-build/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src - -# Recursive "all" directory target. -_deps/ds-build/src/all: _deps/ds-build/src/imports/all -.PHONY : _deps/ds-build/src/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/preinstall: _deps/ds-build/src/imports/preinstall -.PHONY : _deps/ds-build/src/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/clean: _deps/ds-build/src/imports/clean -.PHONY : _deps/ds-build/src/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports - -# Recursive "all" directory target. -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/components/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/effects_qt6/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/flowview/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/logichelper/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/multitext/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/tools/all -_deps/ds-build/src/imports/all: _deps/ds-build/src/imports/application/all -.PHONY : _deps/ds-build/src/imports/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/components/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/effects_qt6/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/flowview/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/logichelper/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/multitext/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/tools/preinstall -_deps/ds-build/src/imports/preinstall: _deps/ds-build/src/imports/application/preinstall -.PHONY : _deps/ds-build/src/imports/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/components/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/effects_qt6/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/flowview/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/logichelper/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/multitext/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/tools/clean -_deps/ds-build/src/imports/clean: _deps/ds-build/src/imports/application/clean -.PHONY : _deps/ds-build/src/imports/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/application - -# Recursive "all" directory target. -_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all -_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all -_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all -_deps/ds-build/src/imports/application/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/application/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/application/preinstall: -.PHONY : _deps/ds-build/src/imports/application/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean -_deps/ds-build/src/imports/application/clean: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/application/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/components - -# Recursive "all" directory target. -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all -_deps/ds-build/src/imports/components/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/components/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/components/preinstall: -.PHONY : _deps/ds-build/src/imports/components/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/components/clean: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/components/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/effects_qt6 - -# Recursive "all" directory target. -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all -_deps/ds-build/src/imports/effects_qt6/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/effects_qt6/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/effects_qt6/preinstall: -.PHONY : _deps/ds-build/src/imports/effects_qt6/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/effects_qt6/clean: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/flowview - -# Recursive "all" directory target. -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all -_deps/ds-build/src/imports/flowview/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/flowview/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/flowview/preinstall: -.PHONY : _deps/ds-build/src/imports/flowview/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/flowview/clean: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/logichelper - -# Recursive "all" directory target. -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all -_deps/ds-build/src/imports/logichelper/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/logichelper/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/logichelper/preinstall: -.PHONY : _deps/ds-build/src/imports/logichelper/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/logichelper/clean: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/multitext - -# Recursive "all" directory target. -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all -_deps/ds-build/src/imports/multitext/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/multitext/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/multitext/preinstall: -.PHONY : _deps/ds-build/src/imports/multitext/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/multitext/clean: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/tools - -# Recursive "all" directory target. -_deps/ds-build/src/imports/tools/all: _deps/ds-build/src/imports/tools/eventsimulator/all -_deps/ds-build/src/imports/tools/all: _deps/ds-build/src/imports/tools/eventsystem/all -.PHONY : _deps/ds-build/src/imports/tools/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/tools/preinstall: _deps/ds-build/src/imports/tools/eventsimulator/preinstall -_deps/ds-build/src/imports/tools/preinstall: _deps/ds-build/src/imports/tools/eventsystem/preinstall -.PHONY : _deps/ds-build/src/imports/tools/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/tools/clean: _deps/ds-build/src/imports/tools/eventsimulator/clean -_deps/ds-build/src/imports/tools/clean: _deps/ds-build/src/imports/tools/eventsystem/clean -.PHONY : _deps/ds-build/src/imports/tools/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/tools/eventsimulator - -# Recursive "all" directory target. -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/tools/eventsimulator/preinstall: -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsimulator/clean: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/clean - -#============================================================================= -# Directory level rules for directory _deps/ds-build/src/imports/tools/eventsystem - -# Recursive "all" directory target. -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all -_deps/ds-build/src/imports/tools/eventsystem/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/all - -# Recursive "preinstall" directory target. -_deps/ds-build/src/imports/tools/eventsystem/preinstall: -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/preinstall - -# Recursive "clean" directory target. -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean -_deps/ds-build/src/imports/tools/eventsystem/clean: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/clean - -#============================================================================= -# Directory level rules for directory content - -# Recursive "all" directory target. -content/all: content/CMakeFiles/content.dir/all -content/all: content/CMakeFiles/content_resources_1.dir/all -content/all: content/CMakeFiles/contentplugin.dir/all -content/all: content/CMakeFiles/content_qmlcache.dir/all -content/all: content/CMakeFiles/content_tooling.dir/all -content/all: content/CMakeFiles/content_resources_2.dir/all -content/all: content/CMakeFiles/contentplugin_init.dir/all -.PHONY : content/all - -# Recursive "preinstall" directory target. -content/preinstall: -.PHONY : content/preinstall - -# Recursive "clean" directory target. -content/clean: content/CMakeFiles/content.dir/clean -content/clean: content/CMakeFiles/content_automoc_json_extraction.dir/clean -content/clean: content/CMakeFiles/content_qmltyperegistration.dir/clean -content/clean: content/CMakeFiles/content_resources_1.dir/clean -content/clean: content/CMakeFiles/contentplugin.dir/clean -content/clean: content/CMakeFiles/content_qmllint.dir/clean -content/clean: content/CMakeFiles/content_qmllint_json.dir/clean -content/clean: content/CMakeFiles/content_qmllint_module.dir/clean -content/clean: content/CMakeFiles/content_qmlcache.dir/clean -content/clean: content/CMakeFiles/content_tooling.dir/clean -content/clean: content/CMakeFiles/content_resources_2.dir/clean -content/clean: content/CMakeFiles/contentplugin_init.dir/clean -content/clean: content/CMakeFiles/content_autogen.dir/clean -content/clean: content/CMakeFiles/contentplugin_autogen.dir/clean -content/clean: content/CMakeFiles/content_qmlcache_autogen.dir/clean -content/clean: content/CMakeFiles/contentplugin_init_autogen.dir/clean -.PHONY : content/clean - -#============================================================================= -# Directory level rules for directory imports - -# Recursive "all" directory target. -imports/all: imports/Bolt_Dash/all -imports/all: imports/Backend/all -.PHONY : imports/all - -# Recursive "preinstall" directory target. -imports/preinstall: imports/Bolt_Dash/preinstall -imports/preinstall: imports/Backend/preinstall -.PHONY : imports/preinstall - -# Recursive "clean" directory target. -imports/clean: imports/Bolt_Dash/clean -imports/clean: imports/Backend/clean -.PHONY : imports/clean - -#============================================================================= -# Directory level rules for directory imports/Backend - -# Recursive "all" directory target. -imports/Backend/all: imports/Backend/CMakeFiles/Backend.dir/all -imports/Backend/all: imports/Backend/CMakeFiles/BackendPlugin.dir/all -imports/Backend/all: imports/Backend/CMakeFiles/BackendPluginplugin.dir/all -.PHONY : imports/Backend/all - -# Recursive "preinstall" directory target. -imports/Backend/preinstall: -.PHONY : imports/Backend/preinstall - -# Recursive "clean" directory target. -imports/Backend/clean: imports/Backend/CMakeFiles/Backend.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/Backend_autogen.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean -imports/Backend/clean: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean -.PHONY : imports/Backend/clean - -#============================================================================= -# Directory level rules for directory imports/Bolt_Dash - -# Recursive "all" directory target. -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all -.PHONY : imports/Bolt_Dash/all - -# Recursive "preinstall" directory target. -imports/Bolt_Dash/preinstall: -.PHONY : imports/Bolt_Dash/preinstall - -# Recursive "clean" directory target. -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean -.PHONY : imports/Bolt_Dash/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=6,7,8 "Built target Bolt_DashApp" -.PHONY : CMakeFiles/Bolt_DashApp.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 92 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp.dir/rule - -# Convenience name for target. -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/rule -.PHONY : Bolt_DashApp - -# clean rule for target. -CMakeFiles/Bolt_DashApp.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_automoc_json_extraction" -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule - -# Convenience name for target. -Bolt_DashApp_automoc_json_extraction: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/rule -.PHONY : Bolt_DashApp_automoc_json_extraction - -# clean rule for target. -CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmltyperegistration.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all: CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=9 "Built target Bolt_DashApp_qmltyperegistration" -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 86 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule -.PHONY : Bolt_DashApp_qmltyperegistration - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/rule -.PHONY : Bolt_DashApp_qmllint - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_json.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_json" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule -.PHONY : Bolt_DashApp_qmllint_json - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_module.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_module" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule -.PHONY : Bolt_DashApp_qmllint_module - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_tooling.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_tooling" -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/rule - -# Convenience name for target. -Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/rule -.PHONY : Bolt_DashApp_tooling - -# clean rule for target. -CMakeFiles/Bolt_DashApp_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmlimportscan.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmlimportscan" -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule -.PHONY : Bolt_DashApp_qmlimportscan - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_autogen.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: content/CMakeFiles/contentplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen" -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/rule - -# Convenience name for target. -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/rule -.PHONY : Bolt_DashApp_autogen - -# clean rule for target. -CMakeFiles/Bolt_DashApp_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=33,34,35,36,37 "Built target QuickStudioComponents" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule - -# Convenience name for target. -QuickStudioComponents: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule -.PHONY : QuickStudioComponents - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule -.PHONY : QuickStudioComponents_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule -.PHONY : QuickStudioComponents_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: content/CMakeFiles/content_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmltyperegistrations" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule - -# Convenience name for target. -all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule -.PHONY : all_qmltyperegistrations - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=39 "Built target QuickStudioComponents_resources_1" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule - -# Convenience name for target. -QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule -.PHONY : QuickStudioComponents_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule -.PHONY : QuickStudioComponentsplugin - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule -.PHONY : QuickStudioComponents_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint_json" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule -.PHONY : QuickStudioComponents_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmllint_module" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule -.PHONY : QuickStudioComponents_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: CMakeFiles/Bolt_DashApp_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: content/CMakeFiles/content_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule - -# Convenience name for target. -all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule -.PHONY : all_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: CMakeFiles/Bolt_DashApp_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: content/CMakeFiles/content_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_json" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule - -# Convenience name for target. -all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule -.PHONY : all_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: CMakeFiles/Bolt_DashApp_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: content/CMakeFiles/content_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_module" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule - -# Convenience name for target. -all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule -.PHONY : all_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_qmlcache" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule -.PHONY : QuickStudioComponents_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=40,41 "Built target QuickStudioComponents_tooling" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule - -# Convenience name for target. -QuickStudioComponents_tooling: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/rule -.PHONY : QuickStudioComponents_tooling - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_resources_2" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule - -# Convenience name for target. -QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule -.PHONY : QuickStudioComponents_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin_init" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule -.PHONY : QuickStudioComponentsplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponents_autogen" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule -.PHONY : QuickStudioComponents_autogen - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=42 "Built target QuickStudioComponentsplugin_autogen" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule -.PHONY : QuickStudioComponentsplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=38 "Built target QuickStudioComponents_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule -.PHONY : QuickStudioComponents_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioComponentsplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule -.PHONY : QuickStudioComponentsplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 "Built target QuickStudioEffects" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 23 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule - -# Convenience name for target. -QuickStudioEffects: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule -.PHONY : QuickStudioEffects - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEffects_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule -.PHONY : QuickStudioEffects_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_resources_1" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule -.PHONY : QuickStudioEffects_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule -.PHONY : QuickStudioEffectsplugin - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule -.PHONY : QuickStudioEffects_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint_json" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule -.PHONY : QuickStudioEffects_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmllint_module" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule -.PHONY : QuickStudioEffects_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_qmlcache" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule -.PHONY : QuickStudioEffects_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=61,62,63,64,65,66,67 "Built target QuickStudioEffects_tooling" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule - -# Convenience name for target. -QuickStudioEffects_tooling: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/rule -.PHONY : QuickStudioEffects_tooling - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=60 "Built target QuickStudioEffects_resources_2" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule -.PHONY : QuickStudioEffects_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin_init" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule -.PHONY : QuickStudioEffectsplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffects_autogen" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule -.PHONY : QuickStudioEffects_autogen - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=68 "Built target QuickStudioEffectsplugin_autogen" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule -.PHONY : QuickStudioEffectsplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=59 "Built target QuickStudioEffects_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEffects_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEffectsplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule -.PHONY : QuickStudioEffectsplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=14,15,16,17,18,19,20,21 "Built target FlowView" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 13 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule - -# Convenience name for target. -FlowView: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule -.PHONY : FlowView - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=22 "Built target FlowView_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule - -# Convenience name for target. -FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule -.PHONY : FlowView_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=23 "Built target FlowView_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 6 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule - -# Convenience name for target. -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule -.PHONY : FlowView_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/all -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=28 "Built target FlowViewplugin" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 14 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule - -# Convenience name for target. -FlowViewplugin: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule -.PHONY : FlowViewplugin - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule - -# Convenience name for target. -FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule -.PHONY : FlowView_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint_json" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule - -# Convenience name for target. -FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule -.PHONY : FlowView_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmllint_module" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule - -# Convenience name for target. -FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule -.PHONY : FlowView_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmlcache" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule - -# Convenience name for target. -FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule -.PHONY : FlowView_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=24,25,26,27 "Built target FlowView_tooling" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule - -# Convenience name for target. -FlowView_tooling: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/rule -.PHONY : FlowView_tooling - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_resources_1" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule - -# Convenience name for target. -FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule -.PHONY : FlowView_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_init" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule - -# Convenience name for target. -FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule -.PHONY : FlowViewplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_autogen" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule - -# Convenience name for target. -FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule -.PHONY : FlowView_autogen - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_autogen" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule - -# Convenience name for target. -FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule -.PHONY : FlowViewplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowView_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule - -# Convenience name for target. -FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule -.PHONY : FlowView_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target FlowViewplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule - -# Convenience name for target. -FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule -.PHONY : FlowViewplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=80,81,82 "Built target QuickStudioLogicHelper" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule -.PHONY : QuickStudioLogicHelper - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule -.PHONY : QuickStudioLogicHelper_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule -.PHONY : QuickStudioLogicHelper_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=84 "Built target QuickStudioLogicHelper_resources_1" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule -.PHONY : QuickStudioLogicHelper_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=86 "Built target QuickStudioLogicHelperplugin" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule -.PHONY : QuickStudioLogicHelperplugin - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint_json" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmllint_module" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=83 "Built target QuickStudioLogicHelper_qmlcache" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule -.PHONY : QuickStudioLogicHelper_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=85 "Built target QuickStudioLogicHelper_tooling" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_tooling: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/rule -.PHONY : QuickStudioLogicHelper_tooling - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_resources_2" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule -.PHONY : QuickStudioLogicHelper_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_init" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule -.PHONY : QuickStudioLogicHelperplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_autogen" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule -.PHONY : QuickStudioLogicHelper_autogen - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_autogen" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule -.PHONY : QuickStudioLogicHelperplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelper_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule -.PHONY : QuickStudioLogicHelper_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioLogicHelperplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule -.PHONY : QuickStudioLogicHelperplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=87,88 "Built target QuickStudioMultiText" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule - -# Convenience name for target. -QuickStudioMultiText: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule -.PHONY : QuickStudioMultiText - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=89 "Built target QuickStudioMultiText_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule -.PHONY : QuickStudioMultiText_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=90 "Built target QuickStudioMultiText_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule -.PHONY : QuickStudioMultiText_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_resources_1" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule - -# Convenience name for target. -QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule -.PHONY : QuickStudioMultiText_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule -.PHONY : QuickStudioMultiTextplugin - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule -.PHONY : QuickStudioMultiText_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint_json" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule -.PHONY : QuickStudioMultiText_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmllint_module" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule -.PHONY : QuickStudioMultiText_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmlcache" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule -.PHONY : QuickStudioMultiText_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_tooling" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule - -# Convenience name for target. -QuickStudioMultiText_tooling: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/rule -.PHONY : QuickStudioMultiText_tooling - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=91 "Built target QuickStudioMultiText_resources_2" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule - -# Convenience name for target. -QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule -.PHONY : QuickStudioMultiText_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin_init" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule -.PHONY : QuickStudioMultiTextplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_autogen" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule -.PHONY : QuickStudioMultiText_autogen - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=92 "Built target QuickStudioMultiTextplugin_autogen" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule -.PHONY : QuickStudioMultiTextplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiText_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule -.PHONY : QuickStudioMultiText_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioMultiTextplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule -.PHONY : QuickStudioMultiTextplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=69,70 "Built target QuickStudioEventSimulator" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule -.PHONY : QuickStudioEventSimulator - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEventSimulator_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule -.PHONY : QuickStudioEventSimulator_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=72 "Built target QuickStudioEventSimulator_resources_1" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule -.PHONY : QuickStudioEventSimulator_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=73 "Built target QuickStudioEventSimulatorplugin" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule -.PHONY : QuickStudioEventSimulatorplugin - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint_json" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmllint_module" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_qmlcache" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule -.PHONY : QuickStudioEventSimulator_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_tooling" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_tooling: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/rule -.PHONY : QuickStudioEventSimulator_tooling - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_resources_2" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule -.PHONY : QuickStudioEventSimulator_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_init" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulator_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule -.PHONY : QuickStudioEventSimulator_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=71 "Built target QuickStudioEventSimulator_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEventSimulator_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSimulatorplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=74,75 "Built target QuickStudioEventSystem" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule - -# Convenience name for target. -QuickStudioEventSystem: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule -.PHONY : QuickStudioEventSystem - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEventSystem_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=77 "Built target QuickStudioEventSystem_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule -.PHONY : QuickStudioEventSystem_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_resources_1" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule -.PHONY : QuickStudioEventSystem_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule -.PHONY : QuickStudioEventSystemplugin - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule -.PHONY : QuickStudioEventSystem_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint_json" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule -.PHONY : QuickStudioEventSystem_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmllint_module" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule -.PHONY : QuickStudioEventSystem_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=76 "Built target QuickStudioEventSystem_qmlcache" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule -.PHONY : QuickStudioEventSystem_qmlcache - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=78 "Built target QuickStudioEventSystem_tooling" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_tooling: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/rule -.PHONY : QuickStudioEventSystem_tooling - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_resources_2" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule -.PHONY : QuickStudioEventSystem_resources_2 - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=79 "Built target QuickStudioEventSystemplugin_init" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule -.PHONY : QuickStudioEventSystemplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule -.PHONY : QuickStudioEventSystem_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule -.PHONY : QuickStudioEventSystemplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystem_qmlcache_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEventSystem_qmlcache_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioEventSystemplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule -.PHONY : QuickStudioEventSystemplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=29 "Built target QuickStudioApplication" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule - -# Convenience name for target. -QuickStudioApplication: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule -.PHONY : QuickStudioApplication - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=30 "Built target QuickStudioApplication_automoc_json_extraction" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule -.PHONY : QuickStudioApplication_automoc_json_extraction - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmltyperegistration" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule -.PHONY : QuickStudioApplication_qmltyperegistration - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_resources_1" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule - -# Convenience name for target. -QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule -.PHONY : QuickStudioApplication_resources_1 - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/all -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/all -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=31 "Built target QuickStudioApplicationplugin" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule -.PHONY : QuickStudioApplicationplugin - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule -.PHONY : QuickStudioApplication_qmllint - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint_json" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule -.PHONY : QuickStudioApplication_qmllint_json - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_qmllint_module" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule -.PHONY : QuickStudioApplication_qmllint_module - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplicationplugin_init" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule -.PHONY : QuickStudioApplicationplugin_init - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplication_autogen" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule -.PHONY : QuickStudioApplication_autogen - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target QuickStudioApplicationplugin_autogen" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule -.PHONY : QuickStudioApplicationplugin_autogen - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir - -# All Build rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=32 "Built target QuickStudioApplicationplugin_init_autogen" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule -.PHONY : QuickStudioApplicationplugin_init_autogen - -# clean rule for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content.dir - -# All Build rule for target. -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_automoc_json_extraction.dir/all -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_tooling.dir/all -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=93,94,95 "Built target content" -.PHONY : content/CMakeFiles/content.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content.dir/rule - -# Convenience name for target. -content: content/CMakeFiles/content.dir/rule -.PHONY : content - -# clean rule for target. -content/CMakeFiles/content.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/clean -.PHONY : content/CMakeFiles/content.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_automoc_json_extraction.dir - -# All Build rule for target. -content/CMakeFiles/content_automoc_json_extraction.dir/all: content/CMakeFiles/content_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_automoc_json_extraction" -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/rule - -# Convenience name for target. -content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/rule -.PHONY : content_automoc_json_extraction - -# clean rule for target. -content/CMakeFiles/content_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/clean -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmltyperegistration.dir - -# All Build rule for target. -content/CMakeFiles/content_qmltyperegistration.dir/all: content/CMakeFiles/content_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmltyperegistration" -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule - -# Convenience name for target. -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content_qmltyperegistration - -# clean rule for target. -content/CMakeFiles/content_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/clean -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_resources_1.dir - -# All Build rule for target. -content/CMakeFiles/content_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=97 "Built target content_resources_1" -.PHONY : content/CMakeFiles/content_resources_1.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_resources_1.dir/rule - -# Convenience name for target. -content_resources_1: content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content_resources_1 - -# clean rule for target. -content/CMakeFiles/content_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/clean -.PHONY : content/CMakeFiles/content_resources_1.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_1.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_qmlcache.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_2.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=99 "Built target contentplugin" -.PHONY : content/CMakeFiles/contentplugin.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin.dir/rule - -# Convenience name for target. -contentplugin: content/CMakeFiles/contentplugin.dir/rule -.PHONY : contentplugin - -# clean rule for target. -content/CMakeFiles/contentplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/clean -.PHONY : content/CMakeFiles/contentplugin.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint" -.PHONY : content/CMakeFiles/content_qmllint.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint.dir/rule - -# Convenience name for target. -content_qmllint: content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content_qmllint - -# clean rule for target. -content/CMakeFiles/content_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/clean -.PHONY : content/CMakeFiles/content_qmllint.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint_json.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_json" -.PHONY : content/CMakeFiles/content_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule - -# Convenience name for target. -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content_qmllint_json - -# clean rule for target. -content/CMakeFiles/content_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/clean -.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint_module.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_module" -.PHONY : content/CMakeFiles/content_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule - -# Convenience name for target. -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content_qmllint_module - -# clean rule for target. -content/CMakeFiles/content_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/clean -.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmlcache.dir - -# All Build rule for target. -content/CMakeFiles/content_qmlcache.dir/all: content/CMakeFiles/content_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=96 "Built target content_qmlcache" -.PHONY : content/CMakeFiles/content_qmlcache.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmlcache.dir/rule - -# Convenience name for target. -content_qmlcache: content/CMakeFiles/content_qmlcache.dir/rule -.PHONY : content_qmlcache - -# clean rule for target. -content/CMakeFiles/content_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/clean -.PHONY : content/CMakeFiles/content_qmlcache.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_tooling.dir - -# All Build rule for target. -content/CMakeFiles/content_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=98 "Built target content_tooling" -.PHONY : content/CMakeFiles/content_tooling.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_tooling.dir/rule - -# Convenience name for target. -content_tooling: content/CMakeFiles/content_tooling.dir/rule -.PHONY : content_tooling - -# clean rule for target. -content/CMakeFiles/content_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/clean -.PHONY : content/CMakeFiles/content_tooling.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_resources_2.dir - -# All Build rule for target. -content/CMakeFiles/content_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_resources_2" -.PHONY : content/CMakeFiles/content_resources_2.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_resources_2.dir/rule - -# Convenience name for target. -content_resources_2: content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content_resources_2 - -# clean rule for target. -content/CMakeFiles/content_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/clean -.PHONY : content/CMakeFiles/content_resources_2.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_init.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_init" -.PHONY : content/CMakeFiles/contentplugin_init.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_init.dir/rule - -# Convenience name for target. -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : contentplugin_init - -# clean rule for target. -content/CMakeFiles/contentplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/clean -.PHONY : content/CMakeFiles/contentplugin_init.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_autogen.dir - -# All Build rule for target. -content/CMakeFiles/content_autogen.dir/all: content/CMakeFiles/content_tooling.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen" -.PHONY : content/CMakeFiles/content_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_autogen.dir/rule - -# Convenience name for target. -content_autogen: content/CMakeFiles/content_autogen.dir/rule -.PHONY : content_autogen - -# clean rule for target. -content/CMakeFiles/content_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/clean -.PHONY : content/CMakeFiles/content_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_autogen.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_autogen" -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule - -# Convenience name for target. -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : contentplugin_autogen - -# clean rule for target. -content/CMakeFiles/contentplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/clean -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmlcache_autogen.dir - -# All Build rule for target. -content/CMakeFiles/content_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmlcache_autogen" -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/rule - -# Convenience name for target. -content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/rule -.PHONY : content_qmlcache_autogen - -# clean rule for target. -content/CMakeFiles/content_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/clean -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_init_autogen.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=100 "Built target contentplugin_init_autogen" -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule - -# Convenience name for target. -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : contentplugin_init_autogen - -# clean rule for target. -content/CMakeFiles/contentplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/clean -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=4,5 "Built target Bolt_Dash" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule - -# Convenience name for target. -Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : Bolt_Dash - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_automoc_json_extraction" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule - -# Convenience name for target. -Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule -.PHONY : Bolt_Dash_automoc_json_extraction - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=11 "Built target Bolt_Dash_qmltyperegistration" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : Bolt_Dash_qmltyperegistration - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_1" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : Bolt_Dash_resources_1 - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule - -# Convenience name for target. -Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : Bolt_Dashplugin - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : Bolt_Dash_qmllint - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_json" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : Bolt_Dash_qmllint_json - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_module" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : Bolt_Dash_qmllint_module - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=10 "Built target Bolt_Dash_qmlcache" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule - -# Convenience name for target. -Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule -.PHONY : Bolt_Dash_qmlcache - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=12 "Built target Bolt_Dash_tooling" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule - -# Convenience name for target. -Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule -.PHONY : Bolt_Dash_tooling - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_2" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : Bolt_Dash_resources_2 - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=13 "Built target Bolt_Dashplugin_init" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : Bolt_Dashplugin_init - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : Bolt_Dash_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : Bolt_Dashplugin_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmlcache_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule -.PHONY : Bolt_Dash_qmlcache_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/Backend.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/Backend.dir/all: imports/Backend/CMakeFiles/Backend_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Backend" -.PHONY : imports/Backend/CMakeFiles/Backend.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/Backend.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/Backend.dir/rule - -# Convenience name for target. -Backend: imports/Backend/CMakeFiles/Backend.dir/rule -.PHONY : Backend - -# clean rule for target. -imports/Backend/CMakeFiles/Backend.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/clean -.PHONY : imports/Backend/CMakeFiles/Backend.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all -imports/Backend/CMakeFiles/BackendPlugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=1 "Built target BackendPlugin" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/rule - -# Convenience name for target. -BackendPlugin: imports/Backend/CMakeFiles/BackendPlugin.dir/rule -.PHONY : BackendPlugin - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_automoc_json_extraction" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule - -# Convenience name for target. -BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule -.PHONY : BackendPlugin_automoc_json_extraction - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmltyperegistration" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule - -# Convenience name for target. -BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule -.PHONY : BackendPlugin_qmltyperegistration - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPluginplugin.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPluginplugin.dir/all: imports/Backend/CMakeFiles/BackendPlugin.dir/all -imports/Backend/CMakeFiles/BackendPluginplugin.dir/all: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=3 "Built target BackendPluginplugin" -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule - -# Convenience name for target. -BackendPluginplugin: imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule -.PHONY : BackendPluginplugin - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/qt_internal_plugins.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/qt_internal_plugins.dir/all: imports/Backend/CMakeFiles/BackendPluginplugin.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target qt_internal_plugins" -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/qt_internal_plugins.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule - -# Convenience name for target. -qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : qt_internal_plugins - -# clean rule for target. -imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule -.PHONY : BackendPlugin_qmllint - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint_json" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule -.PHONY : BackendPlugin_qmllint_json - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPlugin_qmllint_module" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 91 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule -.PHONY : BackendPlugin_qmllint_module - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/Backend_autogen.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/Backend_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Backend_autogen" -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/Backend_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/rule - -# Convenience name for target. -Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/rule -.PHONY : Backend_autogen - -# clean rule for target. -imports/Backend/CMakeFiles/Backend_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/clean -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPlugin_autogen.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=2 "Built target BackendPlugin_autogen" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule - -# Convenience name for target. -BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule -.PHONY : BackendPlugin_autogen - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir - -# All Build rule for target. -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target BackendPluginplugin_autogen" -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule - -# Convenience name for target. -BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule -.PHONY : BackendPluginplugin_autogen - -# clean rule for target. -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 480aa38..0000000 --- a/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,282 +0,0 @@ -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks deleted file mode 100644 index 5595fa4..0000000 --- a/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -95 diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index 40ef3be..0000000 --- a/build/Makefile +++ /dev/null @@ -1,2925 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named Bolt_DashApp - -# Build rule for target. -Bolt_DashApp: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp -.PHONY : Bolt_DashApp - -# fast build rule for target. -Bolt_DashApp/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build -.PHONY : Bolt_DashApp/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_automoc_json_extraction - -# Build rule for target. -Bolt_DashApp_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_automoc_json_extraction -.PHONY : Bolt_DashApp_automoc_json_extraction - -# fast build rule for target. -Bolt_DashApp_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build.make CMakeFiles/Bolt_DashApp_automoc_json_extraction.dir/build -.PHONY : Bolt_DashApp_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmltyperegistration - -# Build rule for target. -Bolt_DashApp_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmltyperegistration -.PHONY : Bolt_DashApp_qmltyperegistration - -# fast build rule for target. -Bolt_DashApp_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build -.PHONY : Bolt_DashApp_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint - -# Build rule for target. -Bolt_DashApp_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint -.PHONY : Bolt_DashApp_qmllint - -# fast build rule for target. -Bolt_DashApp_qmllint/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build -.PHONY : Bolt_DashApp_qmllint/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint_json - -# Build rule for target. -Bolt_DashApp_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_json -.PHONY : Bolt_DashApp_qmllint_json - -# fast build rule for target. -Bolt_DashApp_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build -.PHONY : Bolt_DashApp_qmllint_json/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint_module - -# Build rule for target. -Bolt_DashApp_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_module -.PHONY : Bolt_DashApp_qmllint_module - -# fast build rule for target. -Bolt_DashApp_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build -.PHONY : Bolt_DashApp_qmllint_module/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_tooling - -# Build rule for target. -Bolt_DashApp_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_tooling -.PHONY : Bolt_DashApp_tooling - -# fast build rule for target. -Bolt_DashApp_tooling/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build -.PHONY : Bolt_DashApp_tooling/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmlimportscan - -# Build rule for target. -Bolt_DashApp_qmlimportscan: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmlimportscan -.PHONY : Bolt_DashApp_qmlimportscan - -# fast build rule for target. -Bolt_DashApp_qmlimportscan/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build -.PHONY : Bolt_DashApp_qmlimportscan/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_autogen - -# Build rule for target. -Bolt_DashApp_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen -.PHONY : Bolt_DashApp_autogen - -# fast build rule for target. -Bolt_DashApp_autogen/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build -.PHONY : Bolt_DashApp_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents - -# Build rule for target. -QuickStudioComponents: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents -.PHONY : QuickStudioComponents - -# fast build rule for target. -QuickStudioComponents/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build -.PHONY : QuickStudioComponents/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_automoc_json_extraction - -# Build rule for target. -QuickStudioComponents_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_automoc_json_extraction -.PHONY : QuickStudioComponents_automoc_json_extraction - -# fast build rule for target. -QuickStudioComponents_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build -.PHONY : QuickStudioComponents_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmltyperegistration - -# Build rule for target. -QuickStudioComponents_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmltyperegistration -.PHONY : QuickStudioComponents_qmltyperegistration - -# fast build rule for target. -QuickStudioComponents_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build -.PHONY : QuickStudioComponents_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named all_qmltyperegistrations - -# Build rule for target. -all_qmltyperegistrations: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmltyperegistrations -.PHONY : all_qmltyperegistrations - -# fast build rule for target. -all_qmltyperegistrations/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build -.PHONY : all_qmltyperegistrations/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_resources_1 - -# Build rule for target. -QuickStudioComponents_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_resources_1 -.PHONY : QuickStudioComponents_resources_1 - -# fast build rule for target. -QuickStudioComponents_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build -.PHONY : QuickStudioComponents_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponentsplugin - -# Build rule for target. -QuickStudioComponentsplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin -.PHONY : QuickStudioComponentsplugin - -# fast build rule for target. -QuickStudioComponentsplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build -.PHONY : QuickStudioComponentsplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmllint - -# Build rule for target. -QuickStudioComponents_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint -.PHONY : QuickStudioComponents_qmllint - -# fast build rule for target. -QuickStudioComponents_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build -.PHONY : QuickStudioComponents_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmllint_json - -# Build rule for target. -QuickStudioComponents_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint_json -.PHONY : QuickStudioComponents_qmllint_json - -# fast build rule for target. -QuickStudioComponents_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build -.PHONY : QuickStudioComponents_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmllint_module - -# Build rule for target. -QuickStudioComponents_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmllint_module -.PHONY : QuickStudioComponents_qmllint_module - -# fast build rule for target. -QuickStudioComponents_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build -.PHONY : QuickStudioComponents_qmllint_module/fast - -#============================================================================= -# Target rules for targets named all_qmllint - -# Build rule for target. -all_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint -.PHONY : all_qmllint - -# fast build rule for target. -all_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build -.PHONY : all_qmllint/fast - -#============================================================================= -# Target rules for targets named all_qmllint_json - -# Build rule for target. -all_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_json -.PHONY : all_qmllint_json - -# fast build rule for target. -all_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build -.PHONY : all_qmllint_json/fast - -#============================================================================= -# Target rules for targets named all_qmllint_module - -# Build rule for target. -all_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_module -.PHONY : all_qmllint_module - -# fast build rule for target. -all_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build -.PHONY : all_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmlcache - -# Build rule for target. -QuickStudioComponents_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmlcache -.PHONY : QuickStudioComponents_qmlcache - -# fast build rule for target. -QuickStudioComponents_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build -.PHONY : QuickStudioComponents_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_tooling - -# Build rule for target. -QuickStudioComponents_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_tooling -.PHONY : QuickStudioComponents_tooling - -# fast build rule for target. -QuickStudioComponents_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build -.PHONY : QuickStudioComponents_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_resources_2 - -# Build rule for target. -QuickStudioComponents_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_resources_2 -.PHONY : QuickStudioComponents_resources_2 - -# fast build rule for target. -QuickStudioComponents_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build -.PHONY : QuickStudioComponents_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponentsplugin_init - -# Build rule for target. -QuickStudioComponentsplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_init -.PHONY : QuickStudioComponentsplugin_init - -# fast build rule for target. -QuickStudioComponentsplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build -.PHONY : QuickStudioComponentsplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_autogen - -# Build rule for target. -QuickStudioComponents_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_autogen -.PHONY : QuickStudioComponents_autogen - -# fast build rule for target. -QuickStudioComponents_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build -.PHONY : QuickStudioComponents_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponentsplugin_autogen - -# Build rule for target. -QuickStudioComponentsplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_autogen -.PHONY : QuickStudioComponentsplugin_autogen - -# fast build rule for target. -QuickStudioComponentsplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build -.PHONY : QuickStudioComponentsplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponents_qmlcache_autogen - -# Build rule for target. -QuickStudioComponents_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponents_qmlcache_autogen -.PHONY : QuickStudioComponents_qmlcache_autogen - -# fast build rule for target. -QuickStudioComponents_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build -.PHONY : QuickStudioComponents_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioComponentsplugin_init_autogen - -# Build rule for target. -QuickStudioComponentsplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioComponentsplugin_init_autogen -.PHONY : QuickStudioComponentsplugin_init_autogen - -# fast build rule for target. -QuickStudioComponentsplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build -.PHONY : QuickStudioComponentsplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects - -# Build rule for target. -QuickStudioEffects: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects -.PHONY : QuickStudioEffects - -# fast build rule for target. -QuickStudioEffects/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build -.PHONY : QuickStudioEffects/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_automoc_json_extraction - -# Build rule for target. -QuickStudioEffects_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_automoc_json_extraction -.PHONY : QuickStudioEffects_automoc_json_extraction - -# fast build rule for target. -QuickStudioEffects_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build -.PHONY : QuickStudioEffects_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmltyperegistration - -# Build rule for target. -QuickStudioEffects_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmltyperegistration -.PHONY : QuickStudioEffects_qmltyperegistration - -# fast build rule for target. -QuickStudioEffects_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build -.PHONY : QuickStudioEffects_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_resources_1 - -# Build rule for target. -QuickStudioEffects_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_resources_1 -.PHONY : QuickStudioEffects_resources_1 - -# fast build rule for target. -QuickStudioEffects_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build -.PHONY : QuickStudioEffects_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffectsplugin - -# Build rule for target. -QuickStudioEffectsplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin -.PHONY : QuickStudioEffectsplugin - -# fast build rule for target. -QuickStudioEffectsplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build -.PHONY : QuickStudioEffectsplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmllint - -# Build rule for target. -QuickStudioEffects_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint -.PHONY : QuickStudioEffects_qmllint - -# fast build rule for target. -QuickStudioEffects_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build -.PHONY : QuickStudioEffects_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmllint_json - -# Build rule for target. -QuickStudioEffects_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint_json -.PHONY : QuickStudioEffects_qmllint_json - -# fast build rule for target. -QuickStudioEffects_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build -.PHONY : QuickStudioEffects_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmllint_module - -# Build rule for target. -QuickStudioEffects_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmllint_module -.PHONY : QuickStudioEffects_qmllint_module - -# fast build rule for target. -QuickStudioEffects_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build -.PHONY : QuickStudioEffects_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmlcache - -# Build rule for target. -QuickStudioEffects_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmlcache -.PHONY : QuickStudioEffects_qmlcache - -# fast build rule for target. -QuickStudioEffects_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build -.PHONY : QuickStudioEffects_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_tooling - -# Build rule for target. -QuickStudioEffects_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_tooling -.PHONY : QuickStudioEffects_tooling - -# fast build rule for target. -QuickStudioEffects_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build -.PHONY : QuickStudioEffects_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_resources_2 - -# Build rule for target. -QuickStudioEffects_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_resources_2 -.PHONY : QuickStudioEffects_resources_2 - -# fast build rule for target. -QuickStudioEffects_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build -.PHONY : QuickStudioEffects_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffectsplugin_init - -# Build rule for target. -QuickStudioEffectsplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_init -.PHONY : QuickStudioEffectsplugin_init - -# fast build rule for target. -QuickStudioEffectsplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build -.PHONY : QuickStudioEffectsplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_autogen - -# Build rule for target. -QuickStudioEffects_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_autogen -.PHONY : QuickStudioEffects_autogen - -# fast build rule for target. -QuickStudioEffects_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build -.PHONY : QuickStudioEffects_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffectsplugin_autogen - -# Build rule for target. -QuickStudioEffectsplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_autogen -.PHONY : QuickStudioEffectsplugin_autogen - -# fast build rule for target. -QuickStudioEffectsplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build -.PHONY : QuickStudioEffectsplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffects_qmlcache_autogen - -# Build rule for target. -QuickStudioEffects_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffects_qmlcache_autogen -.PHONY : QuickStudioEffects_qmlcache_autogen - -# fast build rule for target. -QuickStudioEffects_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build -.PHONY : QuickStudioEffects_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEffectsplugin_init_autogen - -# Build rule for target. -QuickStudioEffectsplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEffectsplugin_init_autogen -.PHONY : QuickStudioEffectsplugin_init_autogen - -# fast build rule for target. -QuickStudioEffectsplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build -.PHONY : QuickStudioEffectsplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named FlowView - -# Build rule for target. -FlowView: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView -.PHONY : FlowView - -# fast build rule for target. -FlowView/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build -.PHONY : FlowView/fast - -#============================================================================= -# Target rules for targets named FlowView_automoc_json_extraction - -# Build rule for target. -FlowView_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_automoc_json_extraction -.PHONY : FlowView_automoc_json_extraction - -# fast build rule for target. -FlowView_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build -.PHONY : FlowView_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named FlowView_qmltyperegistration - -# Build rule for target. -FlowView_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmltyperegistration -.PHONY : FlowView_qmltyperegistration - -# fast build rule for target. -FlowView_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build -.PHONY : FlowView_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named FlowViewplugin - -# Build rule for target. -FlowViewplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin -.PHONY : FlowViewplugin - -# fast build rule for target. -FlowViewplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build -.PHONY : FlowViewplugin/fast - -#============================================================================= -# Target rules for targets named FlowView_qmllint - -# Build rule for target. -FlowView_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint -.PHONY : FlowView_qmllint - -# fast build rule for target. -FlowView_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build -.PHONY : FlowView_qmllint/fast - -#============================================================================= -# Target rules for targets named FlowView_qmllint_json - -# Build rule for target. -FlowView_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint_json -.PHONY : FlowView_qmllint_json - -# fast build rule for target. -FlowView_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build -.PHONY : FlowView_qmllint_json/fast - -#============================================================================= -# Target rules for targets named FlowView_qmllint_module - -# Build rule for target. -FlowView_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmllint_module -.PHONY : FlowView_qmllint_module - -# fast build rule for target. -FlowView_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build -.PHONY : FlowView_qmllint_module/fast - -#============================================================================= -# Target rules for targets named FlowView_qmlcache - -# Build rule for target. -FlowView_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmlcache -.PHONY : FlowView_qmlcache - -# fast build rule for target. -FlowView_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build -.PHONY : FlowView_qmlcache/fast - -#============================================================================= -# Target rules for targets named FlowView_tooling - -# Build rule for target. -FlowView_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_tooling -.PHONY : FlowView_tooling - -# fast build rule for target. -FlowView_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build -.PHONY : FlowView_tooling/fast - -#============================================================================= -# Target rules for targets named FlowView_resources_1 - -# Build rule for target. -FlowView_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_resources_1 -.PHONY : FlowView_resources_1 - -# fast build rule for target. -FlowView_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build -.PHONY : FlowView_resources_1/fast - -#============================================================================= -# Target rules for targets named FlowViewplugin_init - -# Build rule for target. -FlowViewplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_init -.PHONY : FlowViewplugin_init - -# fast build rule for target. -FlowViewplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build -.PHONY : FlowViewplugin_init/fast - -#============================================================================= -# Target rules for targets named FlowView_autogen - -# Build rule for target. -FlowView_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_autogen -.PHONY : FlowView_autogen - -# fast build rule for target. -FlowView_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build -.PHONY : FlowView_autogen/fast - -#============================================================================= -# Target rules for targets named FlowViewplugin_autogen - -# Build rule for target. -FlowViewplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_autogen -.PHONY : FlowViewplugin_autogen - -# fast build rule for target. -FlowViewplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build -.PHONY : FlowViewplugin_autogen/fast - -#============================================================================= -# Target rules for targets named FlowView_qmlcache_autogen - -# Build rule for target. -FlowView_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowView_qmlcache_autogen -.PHONY : FlowView_qmlcache_autogen - -# fast build rule for target. -FlowView_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build -.PHONY : FlowView_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named FlowViewplugin_init_autogen - -# Build rule for target. -FlowViewplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FlowViewplugin_init_autogen -.PHONY : FlowViewplugin_init_autogen - -# fast build rule for target. -FlowViewplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build -.PHONY : FlowViewplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper - -# Build rule for target. -QuickStudioLogicHelper: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper -.PHONY : QuickStudioLogicHelper - -# fast build rule for target. -QuickStudioLogicHelper/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build -.PHONY : QuickStudioLogicHelper/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_automoc_json_extraction - -# Build rule for target. -QuickStudioLogicHelper_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_automoc_json_extraction -.PHONY : QuickStudioLogicHelper_automoc_json_extraction - -# fast build rule for target. -QuickStudioLogicHelper_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build -.PHONY : QuickStudioLogicHelper_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmltyperegistration - -# Build rule for target. -QuickStudioLogicHelper_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmltyperegistration -.PHONY : QuickStudioLogicHelper_qmltyperegistration - -# fast build rule for target. -QuickStudioLogicHelper_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build -.PHONY : QuickStudioLogicHelper_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_resources_1 - -# Build rule for target. -QuickStudioLogicHelper_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_resources_1 -.PHONY : QuickStudioLogicHelper_resources_1 - -# fast build rule for target. -QuickStudioLogicHelper_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build -.PHONY : QuickStudioLogicHelper_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelperplugin - -# Build rule for target. -QuickStudioLogicHelperplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin -.PHONY : QuickStudioLogicHelperplugin - -# fast build rule for target. -QuickStudioLogicHelperplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build -.PHONY : QuickStudioLogicHelperplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmllint - -# Build rule for target. -QuickStudioLogicHelper_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint -.PHONY : QuickStudioLogicHelper_qmllint - -# fast build rule for target. -QuickStudioLogicHelper_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build -.PHONY : QuickStudioLogicHelper_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmllint_json - -# Build rule for target. -QuickStudioLogicHelper_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint_json -.PHONY : QuickStudioLogicHelper_qmllint_json - -# fast build rule for target. -QuickStudioLogicHelper_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build -.PHONY : QuickStudioLogicHelper_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmllint_module - -# Build rule for target. -QuickStudioLogicHelper_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmllint_module -.PHONY : QuickStudioLogicHelper_qmllint_module - -# fast build rule for target. -QuickStudioLogicHelper_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build -.PHONY : QuickStudioLogicHelper_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmlcache - -# Build rule for target. -QuickStudioLogicHelper_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmlcache -.PHONY : QuickStudioLogicHelper_qmlcache - -# fast build rule for target. -QuickStudioLogicHelper_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build -.PHONY : QuickStudioLogicHelper_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_tooling - -# Build rule for target. -QuickStudioLogicHelper_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_tooling -.PHONY : QuickStudioLogicHelper_tooling - -# fast build rule for target. -QuickStudioLogicHelper_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build -.PHONY : QuickStudioLogicHelper_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_resources_2 - -# Build rule for target. -QuickStudioLogicHelper_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_resources_2 -.PHONY : QuickStudioLogicHelper_resources_2 - -# fast build rule for target. -QuickStudioLogicHelper_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build -.PHONY : QuickStudioLogicHelper_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelperplugin_init - -# Build rule for target. -QuickStudioLogicHelperplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_init -.PHONY : QuickStudioLogicHelperplugin_init - -# fast build rule for target. -QuickStudioLogicHelperplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build -.PHONY : QuickStudioLogicHelperplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_autogen - -# Build rule for target. -QuickStudioLogicHelper_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_autogen -.PHONY : QuickStudioLogicHelper_autogen - -# fast build rule for target. -QuickStudioLogicHelper_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build -.PHONY : QuickStudioLogicHelper_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelperplugin_autogen - -# Build rule for target. -QuickStudioLogicHelperplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_autogen -.PHONY : QuickStudioLogicHelperplugin_autogen - -# fast build rule for target. -QuickStudioLogicHelperplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build -.PHONY : QuickStudioLogicHelperplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelper_qmlcache_autogen - -# Build rule for target. -QuickStudioLogicHelper_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelper_qmlcache_autogen -.PHONY : QuickStudioLogicHelper_qmlcache_autogen - -# fast build rule for target. -QuickStudioLogicHelper_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioLogicHelperplugin_init_autogen - -# Build rule for target. -QuickStudioLogicHelperplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioLogicHelperplugin_init_autogen -.PHONY : QuickStudioLogicHelperplugin_init_autogen - -# fast build rule for target. -QuickStudioLogicHelperplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build -.PHONY : QuickStudioLogicHelperplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText - -# Build rule for target. -QuickStudioMultiText: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText -.PHONY : QuickStudioMultiText - -# fast build rule for target. -QuickStudioMultiText/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build -.PHONY : QuickStudioMultiText/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_automoc_json_extraction - -# Build rule for target. -QuickStudioMultiText_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_automoc_json_extraction -.PHONY : QuickStudioMultiText_automoc_json_extraction - -# fast build rule for target. -QuickStudioMultiText_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build -.PHONY : QuickStudioMultiText_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmltyperegistration - -# Build rule for target. -QuickStudioMultiText_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmltyperegistration -.PHONY : QuickStudioMultiText_qmltyperegistration - -# fast build rule for target. -QuickStudioMultiText_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build -.PHONY : QuickStudioMultiText_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_resources_1 - -# Build rule for target. -QuickStudioMultiText_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_resources_1 -.PHONY : QuickStudioMultiText_resources_1 - -# fast build rule for target. -QuickStudioMultiText_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build -.PHONY : QuickStudioMultiText_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiTextplugin - -# Build rule for target. -QuickStudioMultiTextplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin -.PHONY : QuickStudioMultiTextplugin - -# fast build rule for target. -QuickStudioMultiTextplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build -.PHONY : QuickStudioMultiTextplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmllint - -# Build rule for target. -QuickStudioMultiText_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint -.PHONY : QuickStudioMultiText_qmllint - -# fast build rule for target. -QuickStudioMultiText_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build -.PHONY : QuickStudioMultiText_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmllint_json - -# Build rule for target. -QuickStudioMultiText_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint_json -.PHONY : QuickStudioMultiText_qmllint_json - -# fast build rule for target. -QuickStudioMultiText_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build -.PHONY : QuickStudioMultiText_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmllint_module - -# Build rule for target. -QuickStudioMultiText_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmllint_module -.PHONY : QuickStudioMultiText_qmllint_module - -# fast build rule for target. -QuickStudioMultiText_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build -.PHONY : QuickStudioMultiText_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmlcache - -# Build rule for target. -QuickStudioMultiText_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmlcache -.PHONY : QuickStudioMultiText_qmlcache - -# fast build rule for target. -QuickStudioMultiText_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build -.PHONY : QuickStudioMultiText_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_tooling - -# Build rule for target. -QuickStudioMultiText_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_tooling -.PHONY : QuickStudioMultiText_tooling - -# fast build rule for target. -QuickStudioMultiText_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build -.PHONY : QuickStudioMultiText_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_resources_2 - -# Build rule for target. -QuickStudioMultiText_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_resources_2 -.PHONY : QuickStudioMultiText_resources_2 - -# fast build rule for target. -QuickStudioMultiText_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build -.PHONY : QuickStudioMultiText_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiTextplugin_init - -# Build rule for target. -QuickStudioMultiTextplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_init -.PHONY : QuickStudioMultiTextplugin_init - -# fast build rule for target. -QuickStudioMultiTextplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build -.PHONY : QuickStudioMultiTextplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_autogen - -# Build rule for target. -QuickStudioMultiText_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_autogen -.PHONY : QuickStudioMultiText_autogen - -# fast build rule for target. -QuickStudioMultiText_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build -.PHONY : QuickStudioMultiText_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiTextplugin_autogen - -# Build rule for target. -QuickStudioMultiTextplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_autogen -.PHONY : QuickStudioMultiTextplugin_autogen - -# fast build rule for target. -QuickStudioMultiTextplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build -.PHONY : QuickStudioMultiTextplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiText_qmlcache_autogen - -# Build rule for target. -QuickStudioMultiText_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiText_qmlcache_autogen -.PHONY : QuickStudioMultiText_qmlcache_autogen - -# fast build rule for target. -QuickStudioMultiText_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build -.PHONY : QuickStudioMultiText_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioMultiTextplugin_init_autogen - -# Build rule for target. -QuickStudioMultiTextplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioMultiTextplugin_init_autogen -.PHONY : QuickStudioMultiTextplugin_init_autogen - -# fast build rule for target. -QuickStudioMultiTextplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build -.PHONY : QuickStudioMultiTextplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator - -# Build rule for target. -QuickStudioEventSimulator: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator -.PHONY : QuickStudioEventSimulator - -# fast build rule for target. -QuickStudioEventSimulator/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build -.PHONY : QuickStudioEventSimulator/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_automoc_json_extraction - -# Build rule for target. -QuickStudioEventSimulator_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_automoc_json_extraction -.PHONY : QuickStudioEventSimulator_automoc_json_extraction - -# fast build rule for target. -QuickStudioEventSimulator_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build -.PHONY : QuickStudioEventSimulator_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmltyperegistration - -# Build rule for target. -QuickStudioEventSimulator_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmltyperegistration -.PHONY : QuickStudioEventSimulator_qmltyperegistration - -# fast build rule for target. -QuickStudioEventSimulator_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build -.PHONY : QuickStudioEventSimulator_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_resources_1 - -# Build rule for target. -QuickStudioEventSimulator_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_resources_1 -.PHONY : QuickStudioEventSimulator_resources_1 - -# fast build rule for target. -QuickStudioEventSimulator_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build -.PHONY : QuickStudioEventSimulator_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulatorplugin - -# Build rule for target. -QuickStudioEventSimulatorplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin -.PHONY : QuickStudioEventSimulatorplugin - -# fast build rule for target. -QuickStudioEventSimulatorplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build -.PHONY : QuickStudioEventSimulatorplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmllint - -# Build rule for target. -QuickStudioEventSimulator_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint -.PHONY : QuickStudioEventSimulator_qmllint - -# fast build rule for target. -QuickStudioEventSimulator_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build -.PHONY : QuickStudioEventSimulator_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmllint_json - -# Build rule for target. -QuickStudioEventSimulator_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint_json -.PHONY : QuickStudioEventSimulator_qmllint_json - -# fast build rule for target. -QuickStudioEventSimulator_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build -.PHONY : QuickStudioEventSimulator_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmllint_module - -# Build rule for target. -QuickStudioEventSimulator_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmllint_module -.PHONY : QuickStudioEventSimulator_qmllint_module - -# fast build rule for target. -QuickStudioEventSimulator_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build -.PHONY : QuickStudioEventSimulator_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmlcache - -# Build rule for target. -QuickStudioEventSimulator_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmlcache -.PHONY : QuickStudioEventSimulator_qmlcache - -# fast build rule for target. -QuickStudioEventSimulator_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build -.PHONY : QuickStudioEventSimulator_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_tooling - -# Build rule for target. -QuickStudioEventSimulator_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_tooling -.PHONY : QuickStudioEventSimulator_tooling - -# fast build rule for target. -QuickStudioEventSimulator_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build -.PHONY : QuickStudioEventSimulator_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_resources_2 - -# Build rule for target. -QuickStudioEventSimulator_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_resources_2 -.PHONY : QuickStudioEventSimulator_resources_2 - -# fast build rule for target. -QuickStudioEventSimulator_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build -.PHONY : QuickStudioEventSimulator_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulatorplugin_init - -# Build rule for target. -QuickStudioEventSimulatorplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_init -.PHONY : QuickStudioEventSimulatorplugin_init - -# fast build rule for target. -QuickStudioEventSimulatorplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build -.PHONY : QuickStudioEventSimulatorplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_autogen - -# Build rule for target. -QuickStudioEventSimulator_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_autogen -.PHONY : QuickStudioEventSimulator_autogen - -# fast build rule for target. -QuickStudioEventSimulator_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build -.PHONY : QuickStudioEventSimulator_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulatorplugin_autogen - -# Build rule for target. -QuickStudioEventSimulatorplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_autogen -.PHONY : QuickStudioEventSimulatorplugin_autogen - -# fast build rule for target. -QuickStudioEventSimulatorplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build -.PHONY : QuickStudioEventSimulatorplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulator_qmlcache_autogen - -# Build rule for target. -QuickStudioEventSimulator_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulator_qmlcache_autogen -.PHONY : QuickStudioEventSimulator_qmlcache_autogen - -# fast build rule for target. -QuickStudioEventSimulator_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSimulatorplugin_init_autogen - -# Build rule for target. -QuickStudioEventSimulatorplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSimulatorplugin_init_autogen -.PHONY : QuickStudioEventSimulatorplugin_init_autogen - -# fast build rule for target. -QuickStudioEventSimulatorplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem - -# Build rule for target. -QuickStudioEventSystem: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem -.PHONY : QuickStudioEventSystem - -# fast build rule for target. -QuickStudioEventSystem/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build -.PHONY : QuickStudioEventSystem/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_automoc_json_extraction - -# Build rule for target. -QuickStudioEventSystem_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_automoc_json_extraction -.PHONY : QuickStudioEventSystem_automoc_json_extraction - -# fast build rule for target. -QuickStudioEventSystem_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build -.PHONY : QuickStudioEventSystem_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmltyperegistration - -# Build rule for target. -QuickStudioEventSystem_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmltyperegistration -.PHONY : QuickStudioEventSystem_qmltyperegistration - -# fast build rule for target. -QuickStudioEventSystem_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build -.PHONY : QuickStudioEventSystem_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_resources_1 - -# Build rule for target. -QuickStudioEventSystem_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_resources_1 -.PHONY : QuickStudioEventSystem_resources_1 - -# fast build rule for target. -QuickStudioEventSystem_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build -.PHONY : QuickStudioEventSystem_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystemplugin - -# Build rule for target. -QuickStudioEventSystemplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin -.PHONY : QuickStudioEventSystemplugin - -# fast build rule for target. -QuickStudioEventSystemplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build -.PHONY : QuickStudioEventSystemplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmllint - -# Build rule for target. -QuickStudioEventSystem_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint -.PHONY : QuickStudioEventSystem_qmllint - -# fast build rule for target. -QuickStudioEventSystem_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build -.PHONY : QuickStudioEventSystem_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmllint_json - -# Build rule for target. -QuickStudioEventSystem_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint_json -.PHONY : QuickStudioEventSystem_qmllint_json - -# fast build rule for target. -QuickStudioEventSystem_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build -.PHONY : QuickStudioEventSystem_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmllint_module - -# Build rule for target. -QuickStudioEventSystem_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmllint_module -.PHONY : QuickStudioEventSystem_qmllint_module - -# fast build rule for target. -QuickStudioEventSystem_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build -.PHONY : QuickStudioEventSystem_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmlcache - -# Build rule for target. -QuickStudioEventSystem_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmlcache -.PHONY : QuickStudioEventSystem_qmlcache - -# fast build rule for target. -QuickStudioEventSystem_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build -.PHONY : QuickStudioEventSystem_qmlcache/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_tooling - -# Build rule for target. -QuickStudioEventSystem_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_tooling -.PHONY : QuickStudioEventSystem_tooling - -# fast build rule for target. -QuickStudioEventSystem_tooling/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build -.PHONY : QuickStudioEventSystem_tooling/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_resources_2 - -# Build rule for target. -QuickStudioEventSystem_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_resources_2 -.PHONY : QuickStudioEventSystem_resources_2 - -# fast build rule for target. -QuickStudioEventSystem_resources_2/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build -.PHONY : QuickStudioEventSystem_resources_2/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystemplugin_init - -# Build rule for target. -QuickStudioEventSystemplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_init -.PHONY : QuickStudioEventSystemplugin_init - -# fast build rule for target. -QuickStudioEventSystemplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build -.PHONY : QuickStudioEventSystemplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_autogen - -# Build rule for target. -QuickStudioEventSystem_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_autogen -.PHONY : QuickStudioEventSystem_autogen - -# fast build rule for target. -QuickStudioEventSystem_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build -.PHONY : QuickStudioEventSystem_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystemplugin_autogen - -# Build rule for target. -QuickStudioEventSystemplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_autogen -.PHONY : QuickStudioEventSystemplugin_autogen - -# fast build rule for target. -QuickStudioEventSystemplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build -.PHONY : QuickStudioEventSystemplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystem_qmlcache_autogen - -# Build rule for target. -QuickStudioEventSystem_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystem_qmlcache_autogen -.PHONY : QuickStudioEventSystem_qmlcache_autogen - -# fast build rule for target. -QuickStudioEventSystem_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build -.PHONY : QuickStudioEventSystem_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioEventSystemplugin_init_autogen - -# Build rule for target. -QuickStudioEventSystemplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioEventSystemplugin_init_autogen -.PHONY : QuickStudioEventSystemplugin_init_autogen - -# fast build rule for target. -QuickStudioEventSystemplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build -.PHONY : QuickStudioEventSystemplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication - -# Build rule for target. -QuickStudioApplication: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication -.PHONY : QuickStudioApplication - -# fast build rule for target. -QuickStudioApplication/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build -.PHONY : QuickStudioApplication/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_automoc_json_extraction - -# Build rule for target. -QuickStudioApplication_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_automoc_json_extraction -.PHONY : QuickStudioApplication_automoc_json_extraction - -# fast build rule for target. -QuickStudioApplication_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build -.PHONY : QuickStudioApplication_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_qmltyperegistration - -# Build rule for target. -QuickStudioApplication_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmltyperegistration -.PHONY : QuickStudioApplication_qmltyperegistration - -# fast build rule for target. -QuickStudioApplication_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build -.PHONY : QuickStudioApplication_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_resources_1 - -# Build rule for target. -QuickStudioApplication_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_resources_1 -.PHONY : QuickStudioApplication_resources_1 - -# fast build rule for target. -QuickStudioApplication_resources_1/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build -.PHONY : QuickStudioApplication_resources_1/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplicationplugin - -# Build rule for target. -QuickStudioApplicationplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin -.PHONY : QuickStudioApplicationplugin - -# fast build rule for target. -QuickStudioApplicationplugin/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build -.PHONY : QuickStudioApplicationplugin/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_qmllint - -# Build rule for target. -QuickStudioApplication_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint -.PHONY : QuickStudioApplication_qmllint - -# fast build rule for target. -QuickStudioApplication_qmllint/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build -.PHONY : QuickStudioApplication_qmllint/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_qmllint_json - -# Build rule for target. -QuickStudioApplication_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint_json -.PHONY : QuickStudioApplication_qmllint_json - -# fast build rule for target. -QuickStudioApplication_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build -.PHONY : QuickStudioApplication_qmllint_json/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_qmllint_module - -# Build rule for target. -QuickStudioApplication_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_qmllint_module -.PHONY : QuickStudioApplication_qmllint_module - -# fast build rule for target. -QuickStudioApplication_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build -.PHONY : QuickStudioApplication_qmllint_module/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplicationplugin_init - -# Build rule for target. -QuickStudioApplicationplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_init -.PHONY : QuickStudioApplicationplugin_init - -# fast build rule for target. -QuickStudioApplicationplugin_init/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build -.PHONY : QuickStudioApplicationplugin_init/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplication_autogen - -# Build rule for target. -QuickStudioApplication_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplication_autogen -.PHONY : QuickStudioApplication_autogen - -# fast build rule for target. -QuickStudioApplication_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build -.PHONY : QuickStudioApplication_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplicationplugin_autogen - -# Build rule for target. -QuickStudioApplicationplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_autogen -.PHONY : QuickStudioApplicationplugin_autogen - -# fast build rule for target. -QuickStudioApplicationplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build -.PHONY : QuickStudioApplicationplugin_autogen/fast - -#============================================================================= -# Target rules for targets named QuickStudioApplicationplugin_init_autogen - -# Build rule for target. -QuickStudioApplicationplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QuickStudioApplicationplugin_init_autogen -.PHONY : QuickStudioApplicationplugin_init_autogen - -# fast build rule for target. -QuickStudioApplicationplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build -.PHONY : QuickStudioApplicationplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named content - -# Build rule for target. -content: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content -.PHONY : content - -# fast build rule for target. -content/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build -.PHONY : content/fast - -#============================================================================= -# Target rules for targets named content_automoc_json_extraction - -# Build rule for target. -content_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_automoc_json_extraction -.PHONY : content_automoc_json_extraction - -# fast build rule for target. -content_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build -.PHONY : content_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named content_qmltyperegistration - -# Build rule for target. -content_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmltyperegistration -.PHONY : content_qmltyperegistration - -# fast build rule for target. -content_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build -.PHONY : content_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named content_resources_1 - -# Build rule for target. -content_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_1 -.PHONY : content_resources_1 - -# fast build rule for target. -content_resources_1/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build -.PHONY : content_resources_1/fast - -#============================================================================= -# Target rules for targets named contentplugin - -# Build rule for target. -contentplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin -.PHONY : contentplugin - -# fast build rule for target. -contentplugin/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build -.PHONY : contentplugin/fast - -#============================================================================= -# Target rules for targets named content_qmllint - -# Build rule for target. -content_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint -.PHONY : content_qmllint - -# fast build rule for target. -content_qmllint/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build -.PHONY : content_qmllint/fast - -#============================================================================= -# Target rules for targets named content_qmllint_json - -# Build rule for target. -content_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_json -.PHONY : content_qmllint_json - -# fast build rule for target. -content_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build -.PHONY : content_qmllint_json/fast - -#============================================================================= -# Target rules for targets named content_qmllint_module - -# Build rule for target. -content_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_module -.PHONY : content_qmllint_module - -# fast build rule for target. -content_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build -.PHONY : content_qmllint_module/fast - -#============================================================================= -# Target rules for targets named content_qmlcache - -# Build rule for target. -content_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmlcache -.PHONY : content_qmlcache - -# fast build rule for target. -content_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build -.PHONY : content_qmlcache/fast - -#============================================================================= -# Target rules for targets named content_tooling - -# Build rule for target. -content_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_tooling -.PHONY : content_tooling - -# fast build rule for target. -content_tooling/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build -.PHONY : content_tooling/fast - -#============================================================================= -# Target rules for targets named content_resources_2 - -# Build rule for target. -content_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_2 -.PHONY : content_resources_2 - -# fast build rule for target. -content_resources_2/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build -.PHONY : content_resources_2/fast - -#============================================================================= -# Target rules for targets named contentplugin_init - -# Build rule for target. -contentplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init -.PHONY : contentplugin_init - -# fast build rule for target. -contentplugin_init/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build -.PHONY : contentplugin_init/fast - -#============================================================================= -# Target rules for targets named content_autogen - -# Build rule for target. -content_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen -.PHONY : content_autogen - -# fast build rule for target. -content_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build -.PHONY : content_autogen/fast - -#============================================================================= -# Target rules for targets named contentplugin_autogen - -# Build rule for target. -contentplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen -.PHONY : contentplugin_autogen - -# fast build rule for target. -contentplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build -.PHONY : contentplugin_autogen/fast - -#============================================================================= -# Target rules for targets named content_qmlcache_autogen - -# Build rule for target. -content_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmlcache_autogen -.PHONY : content_qmlcache_autogen - -# fast build rule for target. -content_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build -.PHONY : content_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named contentplugin_init_autogen - -# Build rule for target. -contentplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen -.PHONY : contentplugin_init_autogen - -# fast build rule for target. -contentplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build -.PHONY : contentplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash - -# Build rule for target. -Bolt_Dash: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash -.PHONY : Bolt_Dash - -# fast build rule for target. -Bolt_Dash/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build -.PHONY : Bolt_Dash/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_automoc_json_extraction - -# Build rule for target. -Bolt_Dash_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_automoc_json_extraction -.PHONY : Bolt_Dash_automoc_json_extraction - -# fast build rule for target. -Bolt_Dash_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build -.PHONY : Bolt_Dash_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmltyperegistration - -# Build rule for target. -Bolt_Dash_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmltyperegistration -.PHONY : Bolt_Dash_qmltyperegistration - -# fast build rule for target. -Bolt_Dash_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build -.PHONY : Bolt_Dash_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_resources_1 - -# Build rule for target. -Bolt_Dash_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_1 -.PHONY : Bolt_Dash_resources_1 - -# fast build rule for target. -Bolt_Dash_resources_1/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build -.PHONY : Bolt_Dash_resources_1/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin - -# Build rule for target. -Bolt_Dashplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin -.PHONY : Bolt_Dashplugin - -# fast build rule for target. -Bolt_Dashplugin/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build -.PHONY : Bolt_Dashplugin/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint - -# Build rule for target. -Bolt_Dash_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint -.PHONY : Bolt_Dash_qmllint - -# fast build rule for target. -Bolt_Dash_qmllint/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build -.PHONY : Bolt_Dash_qmllint/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint_json - -# Build rule for target. -Bolt_Dash_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_json -.PHONY : Bolt_Dash_qmllint_json - -# fast build rule for target. -Bolt_Dash_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build -.PHONY : Bolt_Dash_qmllint_json/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint_module - -# Build rule for target. -Bolt_Dash_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_module -.PHONY : Bolt_Dash_qmllint_module - -# fast build rule for target. -Bolt_Dash_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build -.PHONY : Bolt_Dash_qmllint_module/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmlcache - -# Build rule for target. -Bolt_Dash_qmlcache: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmlcache -.PHONY : Bolt_Dash_qmlcache - -# fast build rule for target. -Bolt_Dash_qmlcache/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build -.PHONY : Bolt_Dash_qmlcache/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_tooling - -# Build rule for target. -Bolt_Dash_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_tooling -.PHONY : Bolt_Dash_tooling - -# fast build rule for target. -Bolt_Dash_tooling/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build -.PHONY : Bolt_Dash_tooling/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_resources_2 - -# Build rule for target. -Bolt_Dash_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_2 -.PHONY : Bolt_Dash_resources_2 - -# fast build rule for target. -Bolt_Dash_resources_2/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build -.PHONY : Bolt_Dash_resources_2/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_init - -# Build rule for target. -Bolt_Dashplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init -.PHONY : Bolt_Dashplugin_init - -# fast build rule for target. -Bolt_Dashplugin_init/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build -.PHONY : Bolt_Dashplugin_init/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_autogen - -# Build rule for target. -Bolt_Dash_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen -.PHONY : Bolt_Dash_autogen - -# fast build rule for target. -Bolt_Dash_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build -.PHONY : Bolt_Dash_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_autogen - -# Build rule for target. -Bolt_Dashplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen -.PHONY : Bolt_Dashplugin_autogen - -# fast build rule for target. -Bolt_Dashplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build -.PHONY : Bolt_Dashplugin_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmlcache_autogen - -# Build rule for target. -Bolt_Dash_qmlcache_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmlcache_autogen -.PHONY : Bolt_Dash_qmlcache_autogen - -# fast build rule for target. -Bolt_Dash_qmlcache_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build -.PHONY : Bolt_Dash_qmlcache_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_init_autogen - -# Build rule for target. -Bolt_Dashplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen -.PHONY : Bolt_Dashplugin_init_autogen - -# fast build rule for target. -Bolt_Dashplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build -.PHONY : Bolt_Dashplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named Backend - -# Build rule for target. -Backend: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Backend -.PHONY : Backend - -# fast build rule for target. -Backend/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build -.PHONY : Backend/fast - -#============================================================================= -# Target rules for targets named BackendPlugin - -# Build rule for target. -BackendPlugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin -.PHONY : BackendPlugin - -# fast build rule for target. -BackendPlugin/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build -.PHONY : BackendPlugin/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_automoc_json_extraction - -# Build rule for target. -BackendPlugin_automoc_json_extraction: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_automoc_json_extraction -.PHONY : BackendPlugin_automoc_json_extraction - -# fast build rule for target. -BackendPlugin_automoc_json_extraction/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build -.PHONY : BackendPlugin_automoc_json_extraction/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_qmltyperegistration - -# Build rule for target. -BackendPlugin_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmltyperegistration -.PHONY : BackendPlugin_qmltyperegistration - -# fast build rule for target. -BackendPlugin_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build -.PHONY : BackendPlugin_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named BackendPluginplugin - -# Build rule for target. -BackendPluginplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPluginplugin -.PHONY : BackendPluginplugin - -# fast build rule for target. -BackendPluginplugin/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build -.PHONY : BackendPluginplugin/fast - -#============================================================================= -# Target rules for targets named qt_internal_plugins - -# Build rule for target. -qt_internal_plugins: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qt_internal_plugins -.PHONY : qt_internal_plugins - -# fast build rule for target. -qt_internal_plugins/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build -.PHONY : qt_internal_plugins/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_qmllint - -# Build rule for target. -BackendPlugin_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint -.PHONY : BackendPlugin_qmllint - -# fast build rule for target. -BackendPlugin_qmllint/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build -.PHONY : BackendPlugin_qmllint/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_qmllint_json - -# Build rule for target. -BackendPlugin_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint_json -.PHONY : BackendPlugin_qmllint_json - -# fast build rule for target. -BackendPlugin_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build -.PHONY : BackendPlugin_qmllint_json/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_qmllint_module - -# Build rule for target. -BackendPlugin_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_qmllint_module -.PHONY : BackendPlugin_qmllint_module - -# fast build rule for target. -BackendPlugin_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build -.PHONY : BackendPlugin_qmllint_module/fast - -#============================================================================= -# Target rules for targets named Backend_autogen - -# Build rule for target. -Backend_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Backend_autogen -.PHONY : Backend_autogen - -# fast build rule for target. -Backend_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build -.PHONY : Backend_autogen/fast - -#============================================================================= -# Target rules for targets named BackendPlugin_autogen - -# Build rule for target. -BackendPlugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPlugin_autogen -.PHONY : BackendPlugin_autogen - -# fast build rule for target. -BackendPlugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build -.PHONY : BackendPlugin_autogen/fast - -#============================================================================= -# Target rules for targets named BackendPluginplugin_autogen - -# Build rule for target. -BackendPluginplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 BackendPluginplugin_autogen -.PHONY : BackendPluginplugin_autogen - -# fast build rule for target. -BackendPluginplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build -.PHONY : BackendPluginplugin_autogen/fast - -.rcc/qmlcache/Bolt_DashApp_main_qml.o: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o - -.rcc/qmlcache/Bolt_DashApp_main_qml.i: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.i - -.rcc/qmlcache/Bolt_DashApp_main_qml.s: .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_DashApp_main_qml.cpp.s - -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o - -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.i - -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s: .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.s - -.rcc/qrc_Bolt_DashApp_raw_qml_0.o: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.o - -# target to build an object file -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o - -.rcc/qrc_Bolt_DashApp_raw_qml_0.i: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.i - -.rcc/qrc_Bolt_DashApp_raw_qml_0.s: .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.s - -.rcc/qrc_configuration.o: .rcc/qrc_configuration.cpp.o -.PHONY : .rcc/qrc_configuration.o - -# target to build an object file -.rcc/qrc_configuration.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -.PHONY : .rcc/qrc_configuration.cpp.o - -.rcc/qrc_configuration.i: .rcc/qrc_configuration.cpp.i -.PHONY : .rcc/qrc_configuration.i - -# target to preprocess a source file -.rcc/qrc_configuration.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.i -.PHONY : .rcc/qrc_configuration.cpp.i - -.rcc/qrc_configuration.s: .rcc/qrc_configuration.cpp.s -.PHONY : .rcc/qrc_configuration.s - -# target to generate assembly for a file -.rcc/qrc_configuration.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.s -.PHONY : .rcc/qrc_configuration.cpp.s - -.rcc/qrc_qmake_Main.o: .rcc/qrc_qmake_Main.cpp.o -.PHONY : .rcc/qrc_qmake_Main.o - -# target to build an object file -.rcc/qrc_qmake_Main.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -.PHONY : .rcc/qrc_qmake_Main.cpp.o - -.rcc/qrc_qmake_Main.i: .rcc/qrc_qmake_Main.cpp.i -.PHONY : .rcc/qrc_qmake_Main.i - -# target to preprocess a source file -.rcc/qrc_qmake_Main.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.i -.PHONY : .rcc/qrc_qmake_Main.cpp.i - -.rcc/qrc_qmake_Main.s: .rcc/qrc_qmake_Main.cpp.s -.PHONY : .rcc/qrc_qmake_Main.s - -# target to generate assembly for a file -.rcc/qrc_qmake_Main.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.s -.PHONY : .rcc/qrc_qmake_Main.cpp.s - -Bolt_DashApp_autogen/mocs_compilation.o: Bolt_DashApp_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_DashApp_autogen/mocs_compilation.o - -# target to build an object file -Bolt_DashApp_autogen/mocs_compilation.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.o - -Bolt_DashApp_autogen/mocs_compilation.i: Bolt_DashApp_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_DashApp_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_DashApp_autogen/mocs_compilation.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.i - -Bolt_DashApp_autogen/mocs_compilation.s: Bolt_DashApp_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_DashApp_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_DashApp_autogen/mocs_compilation.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.s - -bolt_dashapp_qmltyperegistrations.o: bolt_dashapp_qmltyperegistrations.cpp.o -.PHONY : bolt_dashapp_qmltyperegistrations.o - -# target to build an object file -bolt_dashapp_qmltyperegistrations.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -.PHONY : bolt_dashapp_qmltyperegistrations.cpp.o - -bolt_dashapp_qmltyperegistrations.i: bolt_dashapp_qmltyperegistrations.cpp.i -.PHONY : bolt_dashapp_qmltyperegistrations.i - -# target to preprocess a source file -bolt_dashapp_qmltyperegistrations.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.i -.PHONY : bolt_dashapp_qmltyperegistrations.cpp.i - -bolt_dashapp_qmltyperegistrations.s: bolt_dashapp_qmltyperegistrations.cpp.s -.PHONY : bolt_dashapp_qmltyperegistrations.s - -# target to generate assembly for a file -bolt_dashapp_qmltyperegistrations.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.s -.PHONY : bolt_dashapp_qmltyperegistrations.cpp.s - -src/main.o: src/main.cpp.o -.PHONY : src/main.o - -# target to build an object file -src/main.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -.PHONY : src/main.cpp.o - -src/main.i: src/main.cpp.i -.PHONY : src/main.i - -# target to preprocess a source file -src/main.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.i -.PHONY : src/main.cpp.i - -src/main.s: src/main.cpp.s -.PHONY : src/main.s - -# target to generate assembly for a file -src/main.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/src/main.cpp.s -.PHONY : src/main.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... BackendPlugin_autogen" - @echo "... BackendPlugin_automoc_json_extraction" - @echo "... BackendPlugin_qmllint" - @echo "... BackendPlugin_qmllint_json" - @echo "... BackendPlugin_qmllint_module" - @echo "... BackendPlugin_qmltyperegistration" - @echo "... BackendPluginplugin_autogen" - @echo "... Backend_autogen" - @echo "... Bolt_DashApp_autogen" - @echo "... Bolt_DashApp_automoc_json_extraction" - @echo "... Bolt_DashApp_qmlimportscan" - @echo "... Bolt_DashApp_qmllint" - @echo "... Bolt_DashApp_qmllint_json" - @echo "... Bolt_DashApp_qmllint_module" - @echo "... Bolt_DashApp_qmltyperegistration" - @echo "... Bolt_Dash_autogen" - @echo "... Bolt_Dash_automoc_json_extraction" - @echo "... Bolt_Dash_qmlcache_autogen" - @echo "... Bolt_Dash_qmllint" - @echo "... Bolt_Dash_qmllint_json" - @echo "... Bolt_Dash_qmllint_module" - @echo "... Bolt_Dash_qmltyperegistration" - @echo "... Bolt_Dashplugin_autogen" - @echo "... Bolt_Dashplugin_init_autogen" - @echo "... FlowView_autogen" - @echo "... FlowView_automoc_json_extraction" - @echo "... FlowView_qmlcache_autogen" - @echo "... FlowView_qmllint" - @echo "... FlowView_qmllint_json" - @echo "... FlowView_qmllint_module" - @echo "... FlowView_qmltyperegistration" - @echo "... FlowViewplugin_autogen" - @echo "... FlowViewplugin_init_autogen" - @echo "... QuickStudioApplication_autogen" - @echo "... QuickStudioApplication_automoc_json_extraction" - @echo "... QuickStudioApplication_qmllint" - @echo "... QuickStudioApplication_qmllint_json" - @echo "... QuickStudioApplication_qmllint_module" - @echo "... QuickStudioApplication_qmltyperegistration" - @echo "... QuickStudioApplicationplugin_autogen" - @echo "... QuickStudioApplicationplugin_init_autogen" - @echo "... QuickStudioComponents_autogen" - @echo "... QuickStudioComponents_automoc_json_extraction" - @echo "... QuickStudioComponents_qmlcache_autogen" - @echo "... QuickStudioComponents_qmllint" - @echo "... QuickStudioComponents_qmllint_json" - @echo "... QuickStudioComponents_qmllint_module" - @echo "... QuickStudioComponents_qmltyperegistration" - @echo "... QuickStudioComponentsplugin_autogen" - @echo "... QuickStudioComponentsplugin_init_autogen" - @echo "... QuickStudioEffects_autogen" - @echo "... QuickStudioEffects_automoc_json_extraction" - @echo "... QuickStudioEffects_qmlcache_autogen" - @echo "... QuickStudioEffects_qmllint" - @echo "... QuickStudioEffects_qmllint_json" - @echo "... QuickStudioEffects_qmllint_module" - @echo "... QuickStudioEffects_qmltyperegistration" - @echo "... QuickStudioEffectsplugin_autogen" - @echo "... QuickStudioEffectsplugin_init_autogen" - @echo "... QuickStudioEventSimulator_autogen" - @echo "... QuickStudioEventSimulator_automoc_json_extraction" - @echo "... QuickStudioEventSimulator_qmlcache_autogen" - @echo "... QuickStudioEventSimulator_qmllint" - @echo "... QuickStudioEventSimulator_qmllint_json" - @echo "... QuickStudioEventSimulator_qmllint_module" - @echo "... QuickStudioEventSimulator_qmltyperegistration" - @echo "... QuickStudioEventSimulatorplugin_autogen" - @echo "... QuickStudioEventSimulatorplugin_init_autogen" - @echo "... QuickStudioEventSystem_autogen" - @echo "... QuickStudioEventSystem_automoc_json_extraction" - @echo "... QuickStudioEventSystem_qmlcache_autogen" - @echo "... QuickStudioEventSystem_qmllint" - @echo "... QuickStudioEventSystem_qmllint_json" - @echo "... QuickStudioEventSystem_qmllint_module" - @echo "... QuickStudioEventSystem_qmltyperegistration" - @echo "... QuickStudioEventSystemplugin_autogen" - @echo "... QuickStudioEventSystemplugin_init_autogen" - @echo "... QuickStudioLogicHelper_autogen" - @echo "... QuickStudioLogicHelper_automoc_json_extraction" - @echo "... QuickStudioLogicHelper_qmlcache_autogen" - @echo "... QuickStudioLogicHelper_qmllint" - @echo "... QuickStudioLogicHelper_qmllint_json" - @echo "... QuickStudioLogicHelper_qmllint_module" - @echo "... QuickStudioLogicHelper_qmltyperegistration" - @echo "... QuickStudioLogicHelperplugin_autogen" - @echo "... QuickStudioLogicHelperplugin_init_autogen" - @echo "... QuickStudioMultiText_autogen" - @echo "... QuickStudioMultiText_automoc_json_extraction" - @echo "... QuickStudioMultiText_qmlcache_autogen" - @echo "... QuickStudioMultiText_qmllint" - @echo "... QuickStudioMultiText_qmllint_json" - @echo "... QuickStudioMultiText_qmllint_module" - @echo "... QuickStudioMultiText_qmltyperegistration" - @echo "... QuickStudioMultiTextplugin_autogen" - @echo "... QuickStudioMultiTextplugin_init_autogen" - @echo "... all_qmllint" - @echo "... all_qmllint_json" - @echo "... all_qmllint_module" - @echo "... all_qmltyperegistrations" - @echo "... content_autogen" - @echo "... content_automoc_json_extraction" - @echo "... content_qmlcache_autogen" - @echo "... content_qmllint" - @echo "... content_qmllint_json" - @echo "... content_qmllint_module" - @echo "... content_qmltyperegistration" - @echo "... contentplugin_autogen" - @echo "... contentplugin_init_autogen" - @echo "... qt_internal_plugins" - @echo "... Backend" - @echo "... BackendPlugin" - @echo "... BackendPluginplugin" - @echo "... Bolt_Dash" - @echo "... Bolt_DashApp" - @echo "... Bolt_DashApp_tooling" - @echo "... Bolt_Dash_qmlcache" - @echo "... Bolt_Dash_resources_1" - @echo "... Bolt_Dash_resources_2" - @echo "... Bolt_Dash_tooling" - @echo "... Bolt_Dashplugin" - @echo "... Bolt_Dashplugin_init" - @echo "... FlowView" - @echo "... FlowView_qmlcache" - @echo "... FlowView_resources_1" - @echo "... FlowView_tooling" - @echo "... FlowViewplugin" - @echo "... FlowViewplugin_init" - @echo "... QuickStudioApplication" - @echo "... QuickStudioApplication_resources_1" - @echo "... QuickStudioApplicationplugin" - @echo "... QuickStudioApplicationplugin_init" - @echo "... QuickStudioComponents" - @echo "... QuickStudioComponents_qmlcache" - @echo "... QuickStudioComponents_resources_1" - @echo "... QuickStudioComponents_resources_2" - @echo "... QuickStudioComponents_tooling" - @echo "... QuickStudioComponentsplugin" - @echo "... QuickStudioComponentsplugin_init" - @echo "... QuickStudioEffects" - @echo "... QuickStudioEffects_qmlcache" - @echo "... QuickStudioEffects_resources_1" - @echo "... QuickStudioEffects_resources_2" - @echo "... QuickStudioEffects_tooling" - @echo "... QuickStudioEffectsplugin" - @echo "... QuickStudioEffectsplugin_init" - @echo "... QuickStudioEventSimulator" - @echo "... QuickStudioEventSimulator_qmlcache" - @echo "... QuickStudioEventSimulator_resources_1" - @echo "... QuickStudioEventSimulator_resources_2" - @echo "... QuickStudioEventSimulator_tooling" - @echo "... QuickStudioEventSimulatorplugin" - @echo "... QuickStudioEventSimulatorplugin_init" - @echo "... QuickStudioEventSystem" - @echo "... QuickStudioEventSystem_qmlcache" - @echo "... QuickStudioEventSystem_resources_1" - @echo "... QuickStudioEventSystem_resources_2" - @echo "... QuickStudioEventSystem_tooling" - @echo "... QuickStudioEventSystemplugin" - @echo "... QuickStudioEventSystemplugin_init" - @echo "... QuickStudioLogicHelper" - @echo "... QuickStudioLogicHelper_qmlcache" - @echo "... QuickStudioLogicHelper_resources_1" - @echo "... QuickStudioLogicHelper_resources_2" - @echo "... QuickStudioLogicHelper_tooling" - @echo "... QuickStudioLogicHelperplugin" - @echo "... QuickStudioLogicHelperplugin_init" - @echo "... QuickStudioMultiText" - @echo "... QuickStudioMultiText_qmlcache" - @echo "... QuickStudioMultiText_resources_1" - @echo "... QuickStudioMultiText_resources_2" - @echo "... QuickStudioMultiText_tooling" - @echo "... QuickStudioMultiTextplugin" - @echo "... QuickStudioMultiTextplugin_init" - @echo "... content" - @echo "... content_qmlcache" - @echo "... content_resources_1" - @echo "... content_resources_2" - @echo "... content_tooling" - @echo "... contentplugin" - @echo "... contentplugin_init" - @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.o" - @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.i" - @echo "... .rcc/qmlcache/Bolt_DashApp_main_qml.s" - @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.o" - @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.i" - @echo "... .rcc/qmlcache/Bolt_DashApp_qmlcache_loader.s" - @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.o" - @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.i" - @echo "... .rcc/qrc_Bolt_DashApp_raw_qml_0.s" - @echo "... .rcc/qrc_configuration.o" - @echo "... .rcc/qrc_configuration.i" - @echo "... .rcc/qrc_configuration.s" - @echo "... .rcc/qrc_qmake_Main.o" - @echo "... .rcc/qrc_qmake_Main.i" - @echo "... .rcc/qrc_qmake_Main.s" - @echo "... Bolt_DashApp_autogen/mocs_compilation.o" - @echo "... Bolt_DashApp_autogen/mocs_compilation.i" - @echo "... Bolt_DashApp_autogen/mocs_compilation.s" - @echo "... bolt_dashapp_qmltyperegistrations.o" - @echo "... bolt_dashapp_qmltyperegistrations.i" - @echo "... bolt_dashapp_qmltyperegistrations.s" - @echo "... src/main.o" - @echo "... src/main.i" - @echo "... src/main.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/CMakeFiles/progress.marks b/build/_deps/ds-build/CMakeFiles/progress.marks deleted file mode 100644 index dd47563..0000000 --- a/build/_deps/ds-build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -76 diff --git a/build/_deps/ds-build/Makefile b/build/_deps/ds-build/Makefile deleted file mode 100644 index df3f375..0000000 --- a/build/_deps/ds-build/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/cmake_install.cmake b/build/_deps/ds-build/cmake_install.cmake deleted file mode 100644 index 513afab..0000000 --- a/build/_deps/ds-build/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/cmake_install.cmake") -endif() - diff --git a/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/CMakeFiles/progress.marks b/build/_deps/ds-build/src/CMakeFiles/progress.marks deleted file mode 100644 index dd47563..0000000 --- a/build/_deps/ds-build/src/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -76 diff --git a/build/_deps/ds-build/src/Makefile b/build/_deps/ds-build/src/Makefile deleted file mode 100644 index 9e7975d..0000000 --- a/build/_deps/ds-build/src/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/cmake_install.cmake b/build/_deps/ds-build/src/cmake_install.cmake deleted file mode 100644 index 56aff6b..0000000 --- a/build/_deps/ds-build/src/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/cmake_install.cmake") -endif() - diff --git a/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks deleted file mode 100644 index dd47563..0000000 --- a/build/_deps/ds-build/src/imports/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -76 diff --git a/build/_deps/ds-build/src/imports/Makefile b/build/_deps/ds-build/src/imports/Makefile deleted file mode 100644 index c76f18d..0000000 --- a/build/_deps/ds-build/src/imports/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc b/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc deleted file mode 100644 index b3c26ac..0000000 --- a/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp deleted file mode 100644 index 0cc4e21..0000000 --- a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp +++ /dev/null @@ -1,9 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp deleted file mode 100644 index c726b00..0000000 --- a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp +++ /dev/null @@ -1,11 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioApplication_qmllint.json diff --git a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp b/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp deleted file mode 100644 index 7e1a8e4..0000000 --- a/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp +++ /dev/null @@ -1,10 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc ---module -QtQuick.Studio.Application diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake deleted file mode 100644 index d948eef..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake +++ /dev/null @@ -1,27 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make deleted file mode 100644 index 37dd35a..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make +++ /dev/null @@ -1,171 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make - -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: _deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json - -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes --import-name=QtQuick.Studio.Application --major-version=6 --minor-version=4 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated/QuickStudioApplication.qmltypes - -qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes - -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating meta_types/qt6quickstudioapplication_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp > CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -MF CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp > CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s - -# Object files for target QuickStudioApplication -QuickStudioApplication_OBJECTS = \ -"CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" - -# External object files for target QuickStudioApplication -QuickStudioApplication_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make -_deps/ds-build/src/imports/application/libQuickStudioApplication.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX static library libQuickStudioApplication.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioApplication.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build: _deps/ds-build/src/imports/application/libQuickStudioApplication.a -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake deleted file mode 100644 index 5442d15..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean.cmake +++ /dev/null @@ -1,22 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" - "CMakeFiles/QuickStudioApplication_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt" - "QuickStudioApplication_autogen" - "CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" - "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o.d" - "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o.d" - "libQuickStudioApplication.a" - "libQuickStudioApplication.pdb" - "meta_types/qt6quickstudioapplication_debug_metatypes.json" - "meta_types/qt6quickstudioapplication_debug_metatypes.json.gen" - "quickstudioapplication_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioApplication.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake deleted file mode 100644 index 8e5ad8f..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioApplication.a" -) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make deleted file mode 100644 index 4cea382..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioApplication. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts deleted file mode 100644 index 64b9808..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioApplication. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make deleted file mode 100644 index 4e2d4f9..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioApplication. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make deleted file mode 100644 index 37e12bc..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt deleted file mode 100644 index 0c5c163..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioApplication.a CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioApplication.a diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make deleted file mode 100644 index 2f240cb..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/progress.make +++ /dev/null @@ -1,8 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 29 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json deleted file mode 100644 index a6cc64d..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication_p.h", - "MU", - "EWIEGA46WW/moc_quickstudioapplication_p.cpp", - null - ] - ], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_GUI_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtGui.framework/Headers", - "/opt/homebrew/lib/QtGui.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make deleted file mode 100644 index 472ca73..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json Debug - -QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen -QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make -.PHONY : QuickStudioApplication_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build: QuickStudioApplication_autogen -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake deleted file mode 100644 index d62ef1b..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplication_autogen" - "QuickStudioApplication_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make deleted file mode 100644 index 0c61c95..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts deleted file mode 100644 index e0d23c9..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make deleted file mode 100644 index c07b76e..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include - -QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction -QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioApplication_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build: QuickStudioApplication_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index b80997a..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplication_automoc_json_extraction" - "meta_types/QuickStudioApplication_json_file_list.txt" - "meta_types/QuickStudioApplication_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 1306b88..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 4930e36..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 3040898..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 30 - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make deleted file mode 100644 index 68bf4e0..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo Nothing\ to\ do\ for\ target\ QuickStudioApplication_qmllint. - -QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint -QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make -.PHONY : QuickStudioApplication_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build: QuickStudioApplication_qmllint -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index f01fc77..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplication_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make deleted file mode 100644 index dc59f98..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 986cd48..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make deleted file mode 100644 index 7dd10f9..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make +++ /dev/null @@ -1,87 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_json.rsp - -QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json -QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make -.PHONY : QuickStudioApplication_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build: QuickStudioApplication_qmllint_json -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index c0d2dff..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplication_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index a6252ee..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 9cc17ed..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make deleted file mode 100644 index c3d7aee..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmllint/QuickStudioApplication_module.rsp - -QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module -QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make -.PHONY : QuickStudioApplication_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build: QuickStudioApplication_qmllint_module -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 1e21180..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplication_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 6a60b96..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 466f972..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index dacfa35..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make deleted file mode 100644 index ee8d4cd..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplication_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes - -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json -_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes --import-name=QtQuick.Studio.Application --major-version=6 --minor-version=4 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.generated/QuickStudioApplication.qmltypes - -qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes - -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioapplication_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen: _deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioApplication" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/QuickStudioApplication_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json - -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json.gen -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp -QuickStudioApplication_qmltyperegistration: qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make -.PHONY : QuickStudioApplication_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build: QuickStudioApplication_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index d57767e..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Application/QuickStudioApplication.qmltypes" - "CMakeFiles/QuickStudioApplication_qmltyperegistration" - "meta_types/qt6quickstudioapplication_debug_metatypes.json" - "meta_types/qt6quickstudioapplication_debug_metatypes.json.gen" - "quickstudioapplication_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index af14d21..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplication_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 06fc9d7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplication_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 93baac3..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make deleted file mode 100644 index 82fcd43..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make - -_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: qml/QtQuick/Studio/Application/qmldir -_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: _deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc -_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Application" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp --name qmake_QtQuick_Studio_Application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qmake_QtQuick_Studio_Application.qrc - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -MF CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp > CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s - -QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make -.PHONY : QuickStudioApplication_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build: QuickStudioApplication_resources_1 -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend: _deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index ec70a32..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_Application.cpp" - "CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" - "CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioApplication_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make deleted file mode 100644 index f792618..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioApplication_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 8d83d7a..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioApplication_resources_1. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make deleted file mode 100644 index 3f4ffed..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioApplication_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make deleted file mode 100644 index 5331b70..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -I/opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake deleted file mode 100644 index 4bb83d4..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make deleted file mode 100644 index d898ce5..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp > CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s - -# Object files for target QuickStudioApplicationplugin -QuickStudioApplicationplugin_OBJECTS = \ -"CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" - -# External object files for target QuickStudioApplicationplugin -QuickStudioApplicationplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make -qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioApplicationplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build: qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake deleted file mode 100644 index 82885b6..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" - "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.pdb" - "CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioApplicationplugin_autogen.dir/ParseCache.txt" - "QuickStudioApplicationplugin_autogen" - "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" - "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o.d" - "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 8a99c2e..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make deleted file mode 100644 index e4af676..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioApplicationplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts deleted file mode 100644 index 9f9072e..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioApplicationplugin. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make deleted file mode 100644 index 81c5b71..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioApplicationplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make deleted file mode 100644 index 1f19683..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt deleted file mode 100644 index 19d9a7d..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Application/libQuickStudioApplicationplugin.a diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make deleted file mode 100644 index 32d0eb7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 31 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index cec6be5..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Application" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make deleted file mode 100644 index 7401bc8..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplicationplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplicationplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen -QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make -.PHONY : QuickStudioApplicationplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build: QuickStudioApplicationplugin_autogen -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index f99b6bd..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplicationplugin_autogen" - "QuickStudioApplicationplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplicationplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 1556147..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplicationplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 49e9c0b..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplicationplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 64be776..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make deleted file mode 100644 index 891d999..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -MF CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp > CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s - -QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make -.PHONY : QuickStudioApplicationplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build: QuickStudioApplicationplugin_init -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 9dc94e4..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioApplicationplugin_init_autogen" - "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" - "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioApplicationplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make deleted file mode 100644 index e3688ee..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioApplicationplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 9e933ba..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioApplicationplugin_init. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make deleted file mode 100644 index b668d91..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioApplicationplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make deleted file mode 100644 index 786f298..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 32b6871..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make deleted file mode 100644 index 60f56f0..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioApplicationplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioApplicationplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen -QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make -.PHONY : QuickStudioApplicationplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build: QuickStudioApplicationplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 5cf1957..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioApplicationplugin_init_autogen" - "QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index bfa2297..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioApplicationplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index b185d2f..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioApplicationplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make deleted file mode 100644 index 044b5ab..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 32 - diff --git a/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks deleted file mode 100644 index b8626c4..0000000 --- a/build/_deps/ds-build/src/imports/application/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/build/_deps/ds-build/src/imports/application/Makefile b/build/_deps/ds-build/src/imports/application/Makefile deleted file mode 100644 index 2aa3bc0..0000000 --- a/build/_deps/ds-build/src/imports/application/Makefile +++ /dev/null @@ -1,585 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule - -# Convenience name for target. -QuickStudioApplication: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/rule -.PHONY : QuickStudioApplication - -# fast build rule for target. -QuickStudioApplication/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build -.PHONY : QuickStudioApplication/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioApplication_automoc_json_extraction: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/rule -.PHONY : QuickStudioApplication_automoc_json_extraction - -# fast build rule for target. -QuickStudioApplication_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_automoc_json_extraction.dir/build -.PHONY : QuickStudioApplication_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmltyperegistration: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/rule -.PHONY : QuickStudioApplication_qmltyperegistration - -# fast build rule for target. -QuickStudioApplication_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmltyperegistration.dir/build -.PHONY : QuickStudioApplication_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule - -# Convenience name for target. -QuickStudioApplication_resources_1: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/rule -.PHONY : QuickStudioApplication_resources_1 - -# fast build rule for target. -QuickStudioApplication_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build -.PHONY : QuickStudioApplication_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/rule -.PHONY : QuickStudioApplicationplugin - -# fast build rule for target. -QuickStudioApplicationplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build -.PHONY : QuickStudioApplicationplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/rule -.PHONY : QuickStudioApplication_qmllint - -# fast build rule for target. -QuickStudioApplication_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint.dir/build -.PHONY : QuickStudioApplication_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint_json: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/rule -.PHONY : QuickStudioApplication_qmllint_json - -# fast build rule for target. -QuickStudioApplication_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_json.dir/build -.PHONY : QuickStudioApplication_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioApplication_qmllint_module: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/rule -.PHONY : QuickStudioApplication_qmllint_module - -# fast build rule for target. -QuickStudioApplication_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_qmllint_module.dir/build -.PHONY : QuickStudioApplication_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_init: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/rule -.PHONY : QuickStudioApplicationplugin_init - -# fast build rule for target. -QuickStudioApplicationplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build -.PHONY : QuickStudioApplicationplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplication_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/rule -.PHONY : QuickStudioApplication_autogen - -# fast build rule for target. -QuickStudioApplication_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_autogen.dir/build -.PHONY : QuickStudioApplication_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/rule -.PHONY : QuickStudioApplicationplugin_autogen - -# fast build rule for target. -QuickStudioApplicationplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_autogen.dir/build -.PHONY : QuickStudioApplicationplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioApplicationplugin_init_autogen: _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/rule -.PHONY : QuickStudioApplicationplugin_init_autogen - -# fast build rule for target. -QuickStudioApplicationplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init_autogen.dir/build -.PHONY : QuickStudioApplicationplugin_init_autogen/fast - -.rcc/qrc_qmake_QtQuick_Studio_Application.o: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_Application.i: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_Application.s: .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Application.cpp.s - -QuickStudioApplication_autogen/mocs_compilation.o: QuickStudioApplication_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplication_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioApplication_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.o - -QuickStudioApplication_autogen/mocs_compilation.i: QuickStudioApplication_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplication_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioApplication_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.i - -QuickStudioApplication_autogen/mocs_compilation.s: QuickStudioApplication_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplication_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioApplication_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplication_autogen/mocs_compilation.cpp.s - -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o - -# target to build an object file -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o - -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i - -# target to preprocess a source file -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.i - -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s: QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s - -# target to generate assembly for a file -QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s -.PHONY : QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.s - -QuickStudioApplicationplugin_autogen/mocs_compilation.o: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o - -QuickStudioApplicationplugin_autogen/mocs_compilation.i: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.i - -QuickStudioApplicationplugin_autogen/mocs_compilation.s: QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.s - -QuickStudioApplicationplugin_init.o: QuickStudioApplicationplugin_init.cpp.o -.PHONY : QuickStudioApplicationplugin_init.o - -# target to build an object file -QuickStudioApplicationplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -.PHONY : QuickStudioApplicationplugin_init.cpp.o - -QuickStudioApplicationplugin_init.i: QuickStudioApplicationplugin_init.cpp.i -.PHONY : QuickStudioApplicationplugin_init.i - -# target to preprocess a source file -QuickStudioApplicationplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.i -.PHONY : QuickStudioApplicationplugin_init.cpp.i - -QuickStudioApplicationplugin_init.s: QuickStudioApplicationplugin_init.cpp.s -.PHONY : QuickStudioApplicationplugin_init.s - -# target to generate assembly for a file -QuickStudioApplicationplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.s -.PHONY : QuickStudioApplicationplugin_init.cpp.s - -QuickStudioApplicationplugin_init_autogen/mocs_compilation.o: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioApplicationplugin_init_autogen/mocs_compilation.i: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioApplicationplugin_init_autogen/mocs_compilation.s: QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.s - -quickstudioapplication.o: quickstudioapplication.cpp.o -.PHONY : quickstudioapplication.o - -# target to build an object file -quickstudioapplication.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -.PHONY : quickstudioapplication.cpp.o - -quickstudioapplication.i: quickstudioapplication.cpp.i -.PHONY : quickstudioapplication.i - -# target to preprocess a source file -quickstudioapplication.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.i -.PHONY : quickstudioapplication.cpp.i - -quickstudioapplication.s: quickstudioapplication.cpp.s -.PHONY : quickstudioapplication.s - -# target to generate assembly for a file -quickstudioapplication.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.s -.PHONY : quickstudioapplication.cpp.s - -quickstudioapplication_qmltyperegistrations.o: quickstudioapplication_qmltyperegistrations.cpp.o -.PHONY : quickstudioapplication_qmltyperegistrations.o - -# target to build an object file -quickstudioapplication_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -.PHONY : quickstudioapplication_qmltyperegistrations.cpp.o - -quickstudioapplication_qmltyperegistrations.i: quickstudioapplication_qmltyperegistrations.cpp.i -.PHONY : quickstudioapplication_qmltyperegistrations.i - -# target to preprocess a source file -quickstudioapplication_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.i -.PHONY : quickstudioapplication_qmltyperegistrations.cpp.i - -quickstudioapplication_qmltyperegistrations.s: quickstudioapplication_qmltyperegistrations.cpp.s -.PHONY : quickstudioapplication_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudioapplication_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/build.make _deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.s -.PHONY : quickstudioapplication_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioApplication_autogen" - @echo "... QuickStudioApplication_automoc_json_extraction" - @echo "... QuickStudioApplication_qmllint" - @echo "... QuickStudioApplication_qmllint_json" - @echo "... QuickStudioApplication_qmllint_module" - @echo "... QuickStudioApplication_qmltyperegistration" - @echo "... QuickStudioApplicationplugin_autogen" - @echo "... QuickStudioApplicationplugin_init_autogen" - @echo "... QuickStudioApplication" - @echo "... QuickStudioApplication_resources_1" - @echo "... QuickStudioApplicationplugin" - @echo "... QuickStudioApplicationplugin_init" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Application.s" - @echo "... QuickStudioApplication_autogen/mocs_compilation.o" - @echo "... QuickStudioApplication_autogen/mocs_compilation.i" - @echo "... QuickStudioApplication_autogen/mocs_compilation.s" - @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.o" - @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.i" - @echo "... QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.s" - @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioApplicationplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioApplicationplugin_init.o" - @echo "... QuickStudioApplicationplugin_init.i" - @echo "... QuickStudioApplicationplugin_init.s" - @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioApplicationplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudioapplication.o" - @echo "... quickstudioapplication.i" - @echo "... quickstudioapplication.s" - @echo "... quickstudioapplication_qmltyperegistrations.o" - @echo "... quickstudioapplication_qmltyperegistrations.i" - @echo "... quickstudioapplication_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp deleted file mode 100644 index d483c58..0000000 --- a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_Application(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Application) - -class QtQuick_Studio_ApplicationPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_ApplicationPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_Application; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp b/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp deleted file mode 100644 index 1e361d0..0000000 --- a/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_ApplicationPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/application/cmake_install.cmake b/build/_deps/ds-build/src/imports/application/cmake_install.cmake deleted file mode 100644 index aacce4c..0000000 --- a/build/_deps/ds-build/src/imports/application/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json b/build/_deps/ds-build/src/imports/application/meta_types/qt6quickstudioapplication_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt b/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt deleted file mode 100644 index 81c7db2..0000000 --- a/build/_deps/ds-build/src/imports/application/qmltypes/QuickStudioApplication_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/cmake_install.cmake b/build/_deps/ds-build/src/imports/cmake_install.cmake deleted file mode 100644 index 6da43d5..0000000 --- a/build/_deps/ds-build/src/imports/cmake_install.cmake +++ /dev/null @@ -1,74 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/cmake_install.cmake") -endif() - diff --git a/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc deleted file mode 100644 index fe8cb85..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc +++ /dev/null @@ -1,18 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml - - - diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc b/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc deleted file mode 100644 index ffd3681..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp deleted file mode 100644 index 559fc54..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp +++ /dev/null @@ -1,13 +0,0 @@ -/QtQuick/Studio/Components/ArcItem.qml -/QtQuick/Studio/Components/PieItem.qml -/QtQuick/Studio/Components/TriangleItem.qml -/QtQuick/Studio/Components/SvgPathItem.qml -/QtQuick/Studio/Components/EllipseItem.qml -/QtQuick/Studio/Components/FlipableItem.qml -/QtQuick/Studio/Components/RectangleItem.qml -/QtQuick/Studio/Components/RegularPolygonItem.qml -/QtQuick/Studio/Components/BorderItem.qml -/QtQuick/Studio/Components/IsoItem.qml -/QtQuick/Studio/Components/GroupItem.qml -/QtQuick/Studio/Components/ArcArrow.qml -/QtQuick/Studio/Components/StraightArrow.qml diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp deleted file mode 100644 index 793193d..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp +++ /dev/null @@ -1,24 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp deleted file mode 100644 index 940ea57..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp +++ /dev/null @@ -1,26 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioComponents_qmllint.json diff --git a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp b/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp deleted file mode 100644 index e6c046b..0000000 --- a/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc ---module -QtQuick.Studio.Components diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake deleted file mode 100644 index ea97d68..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake +++ /dev/null @@ -1,39 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make deleted file mode 100644 index b298615..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make +++ /dev/null @@ -1,505 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make - -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: _deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json - -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes --import-name=QtQuick.Studio.Components --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated/QuickStudioComponents.qmltypes - -qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/ArcItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/PieItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/TriangleItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/SvgPathItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/EllipseItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/FlipableItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/RectangleItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/RegularPolygonItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/BorderItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/IsoItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/GroupItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/ArcArrow.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp: qml/QtQuick/Studio/Components/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Components/StraightArrow.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml - -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating meta_types/qt6quickstudiocomponents_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp > CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -MF CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp > CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s - -# Object files for target QuickStudioComponents -QuickStudioComponents_OBJECTS = \ -"CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" \ -"CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" - -# External object files for target QuickStudioComponents -QuickStudioComponents_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make -_deps/ds-build/src/imports/components/libQuickStudioComponents.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Linking CXX static library libQuickStudioComponents.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioComponents.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build: _deps/ds-build/src/imports/components/libQuickStudioComponents.a -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake deleted file mode 100644 index 6936b0c..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean.cmake +++ /dev/null @@ -1,59 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" - ".rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp" - ".rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp" - "CMakeFiles/QuickStudioComponents_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt" - "QuickStudioComponents_autogen" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o.d" - "libQuickStudioComponents.a" - "libQuickStudioComponents.pdb" - "meta_types/qt6quickstudiocomponents_debug_metatypes.json" - "meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen" - "quickstudiocomponents_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponents.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake deleted file mode 100644 index 8d778bb..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioComponents.a" -) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make deleted file mode 100644 index 60b0e28..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponents. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts deleted file mode 100644 index 50f3949..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponents. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make deleted file mode 100644 index a635d82..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponents. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make deleted file mode 100644 index 723cb3d..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt deleted file mode 100644 index f6df649..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioComponents.a CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioComponents.a diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make deleted file mode 100644 index 6cc1e7e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/progress.make +++ /dev/null @@ -1,33 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 33 -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = 34 -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = -CMAKE_PROGRESS_19 = 35 -CMAKE_PROGRESS_20 = -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = -CMAKE_PROGRESS_25 = 36 -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = -CMAKE_PROGRESS_28 = -CMAKE_PROGRESS_29 = -CMAKE_PROGRESS_30 = -CMAKE_PROGRESS_31 = 37 -CMAKE_PROGRESS_32 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json deleted file mode 100644 index d2562f3..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make deleted file mode 100644 index d5efca4..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json Debug - -QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen -QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make -.PHONY : QuickStudioComponents_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build: QuickStudioComponents_autogen -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake deleted file mode 100644 index d99cf91..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponents_autogen" - "QuickStudioComponents_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make deleted file mode 100644 index 3439c70..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts deleted file mode 100644 index dcef2b8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make deleted file mode 100644 index 341a495..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include - -QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction -QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioComponents_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build: QuickStudioComponents_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index e69e4c5..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponents_automoc_json_extraction" - "meta_types/QuickStudioComponents_json_file_list.txt" - "meta_types/QuickStudioComponents_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 1b8a709..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index b14de5e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 0dfc662..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make deleted file mode 100644 index ee9eb1b..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioComponents --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp > CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s - -QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make -.PHONY : QuickStudioComponents_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build: QuickStudioComponents_qmlcache -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 134d162..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioComponents_qmlcache_autogen" - "CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponents_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make deleted file mode 100644 index e8be781..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponents_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index e079f80..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponents_qmlcache. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make deleted file mode 100644 index d1d0de6..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponents_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make deleted file mode 100644 index 9188866..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index b266f82..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make deleted file mode 100644 index e335b17..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponents_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioComponents --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qml_loader_file_list.rsp - -QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp -QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen -QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioComponents_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build: QuickStudioComponents_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 107cd44..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioComponents_qmlcache_autogen" - "QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index a987339..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 6186270..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make deleted file mode 100644 index cb5873d..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 38 -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make deleted file mode 100644 index e050c1a..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents.rsp - -QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint -QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make -.PHONY : QuickStudioComponents_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build: QuickStudioComponents_qmllint -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 55f6abe..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponents_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make deleted file mode 100644 index c0fb51c..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 3075bc4..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make deleted file mode 100644 index f786e5b..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_json.rsp - -QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json -QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make -.PHONY : QuickStudioComponents_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build: QuickStudioComponents_qmllint_json -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 4033f3f..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponents_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 2726c08..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index af10121..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make deleted file mode 100644 index e8fae1f..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmllint/QuickStudioComponents_module.rsp - -QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module -QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make -.PHONY : QuickStudioComponents_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build: QuickStudioComponents_qmllint_module -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 405acce..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponents_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 2833939..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index a7817b6..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 9878629..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make deleted file mode 100644 index cdf4b58..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes - -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes --import-name=QtQuick.Studio.Components --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.generated/QuickStudioComponents.qmltypes - -qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes - -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiocomponents_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen: _deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioComponents" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/QuickStudioComponents_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json - -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp -QuickStudioComponents_qmltyperegistration: qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make -.PHONY : QuickStudioComponents_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build: QuickStudioComponents_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 5fcdf04..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Components/QuickStudioComponents.qmltypes" - "CMakeFiles/QuickStudioComponents_qmltyperegistration" - "meta_types/qt6quickstudiocomponents_debug_metatypes.json" - "meta_types/qt6quickstudiocomponents_debug_metatypes.json.gen" - "quickstudiocomponents_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index e9d981a..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 9d168b8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake deleted file mode 100644 index db2f930..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make deleted file mode 100644 index 1d511f0..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make - -_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: qml/QtQuick/Studio/Components/qmldir -_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: _deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc -_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Components" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp --name qmake_QtQuick_Studio_Components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmake_QtQuick_Studio_Components.qrc - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -MF CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp > CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s - -QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make -.PHONY : QuickStudioComponents_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build: QuickStudioComponents_resources_1 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend: _deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 74b2f81..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_Components.cpp" - "CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" - "CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponents_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make deleted file mode 100644 index 1828089..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponents_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 0581efe..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponents_resources_1. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make deleted file mode 100644 index 9afa1b4..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponents_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make deleted file mode 100644 index 74ab7a8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make deleted file mode 100644 index 6ef9ffe..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 39 - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 4a873be..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make deleted file mode 100644 index 730391c..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make +++ /dev/null @@ -1,119 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make - -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: _deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc -_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioComponents_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp --name QuickStudioComponents_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/QuickStudioComponents_raw_qml_0.qrc - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp > CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s - -QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make -.PHONY : QuickStudioComponents_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build: QuickStudioComponents_resources_2 -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend: _deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index f4c2dab..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioComponents_raw_qml_0.cpp" - "CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponents_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make deleted file mode 100644 index b68c525..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponents_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts deleted file mode 100644 index cd4a1e0..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponents_resources_2. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make deleted file mode 100644 index 8fedd31..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponents_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make deleted file mode 100644 index 74ab7a8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make deleted file mode 100644 index e8e794e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make +++ /dev/null @@ -1,148 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponents_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make - -qml/QtQuick/Studio/Components/ArcItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying ArcItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcItem.qml - -qml/QtQuick/Studio/Components/PieItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying PieItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/PieItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/PieItem.qml - -qml/QtQuick/Studio/Components/TriangleItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying TriangleItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/TriangleItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/TriangleItem.qml - -qml/QtQuick/Studio/Components/SvgPathItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying SvgPathItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/SvgPathItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/SvgPathItem.qml - -qml/QtQuick/Studio/Components/EllipseItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying EllipseItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/EllipseItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/EllipseItem.qml - -qml/QtQuick/Studio/Components/FlipableItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying FlipableItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/FlipableItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/FlipableItem.qml - -qml/QtQuick/Studio/Components/RectangleItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying RectangleItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RectangleItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RectangleItem.qml - -qml/QtQuick/Studio/Components/RegularPolygonItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying RegularPolygonItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/RegularPolygonItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml - -qml/QtQuick/Studio/Components/BorderItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying BorderItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/BorderItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/BorderItem.qml - -qml/QtQuick/Studio/Components/IsoItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying IsoItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/IsoItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/IsoItem.qml - -qml/QtQuick/Studio/Components/GroupItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying GroupItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/GroupItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/GroupItem.qml - -qml/QtQuick/Studio/Components/ArcArrow.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying ArcArrow.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/ArcArrow.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/ArcArrow.qml - -qml/QtQuick/Studio/Components/StraightArrow.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying StraightArrow.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/StraightArrow.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components/StraightArrow.qml - -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/ArcArrow.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/ArcItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/BorderItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/EllipseItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/FlipableItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/GroupItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/IsoItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/PieItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/RectangleItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/RegularPolygonItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/StraightArrow.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/SvgPathItem.qml -QuickStudioComponents_tooling: qml/QtQuick/Studio/Components/TriangleItem.qml -QuickStudioComponents_tooling: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build.make -.PHONY : QuickStudioComponents_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build: QuickStudioComponents_tooling -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 5f6f549..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,20 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Components/ArcArrow.qml" - "../../../../../qml/QtQuick/Studio/Components/ArcItem.qml" - "../../../../../qml/QtQuick/Studio/Components/BorderItem.qml" - "../../../../../qml/QtQuick/Studio/Components/EllipseItem.qml" - "../../../../../qml/QtQuick/Studio/Components/FlipableItem.qml" - "../../../../../qml/QtQuick/Studio/Components/GroupItem.qml" - "../../../../../qml/QtQuick/Studio/Components/IsoItem.qml" - "../../../../../qml/QtQuick/Studio/Components/PieItem.qml" - "../../../../../qml/QtQuick/Studio/Components/RectangleItem.qml" - "../../../../../qml/QtQuick/Studio/Components/RegularPolygonItem.qml" - "../../../../../qml/QtQuick/Studio/Components/StraightArrow.qml" - "../../../../../qml/QtQuick/Studio/Components/SvgPathItem.qml" - "../../../../../qml/QtQuick/Studio/Components/TriangleItem.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponents_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make deleted file mode 100644 index 80ec708..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponents_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts deleted file mode 100644 index 8384ea6..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponents_tooling. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make deleted file mode 100644 index 8c6431c..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_tooling.dir/progress.make +++ /dev/null @@ -1,14 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = 40 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 41 -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake deleted file mode 100644 index 172be68..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make deleted file mode 100644 index 1c4b6bd..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp > CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s - -# Object files for target QuickStudioComponentsplugin -QuickStudioComponentsplugin_OBJECTS = \ -"CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" - -# External object files for target QuickStudioComponentsplugin -QuickStudioComponentsplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make -qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioComponentsplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build: qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake deleted file mode 100644 index c39d80c..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" - "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.pdb" - "CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioComponentsplugin_autogen.dir/ParseCache.txt" - "QuickStudioComponentsplugin_autogen" - "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" - "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o.d" - "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index c47072e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make deleted file mode 100644 index 739e7cb..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponentsplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts deleted file mode 100644 index ae38b46..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponentsplugin. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make deleted file mode 100644 index 0e880c8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponentsplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make deleted file mode 100644 index 91e9308..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt deleted file mode 100644 index cca2e2e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Components/libQuickStudioComponentsplugin.a diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index c3f7cc1..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Components" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make deleted file mode 100644 index 826a36e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponentsplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponentsplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen -QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make -.PHONY : QuickStudioComponentsplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build: QuickStudioComponentsplugin_autogen -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 0c026d8..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponentsplugin_autogen" - "QuickStudioComponentsplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponentsplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index dc74414..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponentsplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index bb1b86b..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponentsplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make deleted file mode 100644 index 08da5aa..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 42 - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake deleted file mode 100644 index ead194d..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make deleted file mode 100644 index 0403bc5..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -MF CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp > CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s - -QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make -.PHONY : QuickStudioComponentsplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build: QuickStudioComponentsplugin_init -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 6538c76..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioComponentsplugin_init_autogen" - "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" - "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioComponentsplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make deleted file mode 100644 index 1866e83..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioComponentsplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 9b12eb7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioComponentsplugin_init. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make deleted file mode 100644 index b724a94..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioComponentsplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make deleted file mode 100644 index 7f21689..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index b9a54d6..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make deleted file mode 100644 index acf7eb7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioComponentsplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioComponentsplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen -QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make -.PHONY : QuickStudioComponentsplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build: QuickStudioComponentsplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index d1d789d..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioComponentsplugin_init_autogen" - "QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index 6c79ed1..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioComponentsplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index 038c7a9..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioComponentsplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make deleted file mode 100644 index d47fe8b..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make - -all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make -.PHONY : all_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build: all_qmllint -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index f57148b..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make deleted file mode 100644 index 4237b7f..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts deleted file mode 100644 index bbf6441..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make deleted file mode 100644 index c948db5..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make - -all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make -.PHONY : all_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build: all_qmllint_json -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 8cb0a83..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 3dec026..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index d95f9ec..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make deleted file mode 100644 index b5401d2..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make - -all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make -.PHONY : all_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build: all_qmllint_module -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b170335..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 5e6138d..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 17f8c78..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make deleted file mode 100644 index 928a37f..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmltyperegistrations. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make - -all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make -.PHONY : all_qmltyperegistrations - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build: all_qmltyperegistrations -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components && $(CMAKE_COMMAND) -P CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/clean - -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/depend - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake deleted file mode 100644 index 83cfb80..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmltyperegistrations.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make deleted file mode 100644 index 529926e..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmltyperegistrations. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts deleted file mode 100644 index 02603d9..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmltyperegistrations. diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make b/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks deleted file mode 100644 index f599e28..0000000 --- a/build/_deps/ds-build/src/imports/components/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/build/_deps/ds-build/src/imports/components/Makefile b/build/_deps/ds-build/src/imports/components/Makefile deleted file mode 100644 index a5cc527..0000000 --- a/build/_deps/ds-build/src/imports/components/Makefile +++ /dev/null @@ -1,1096 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule - -# Convenience name for target. -QuickStudioComponents: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/rule -.PHONY : QuickStudioComponents - -# fast build rule for target. -QuickStudioComponents/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build -.PHONY : QuickStudioComponents/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioComponents_automoc_json_extraction: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/rule -.PHONY : QuickStudioComponents_automoc_json_extraction - -# fast build rule for target. -QuickStudioComponents_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_automoc_json_extraction.dir/build -.PHONY : QuickStudioComponents_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmltyperegistration: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/rule -.PHONY : QuickStudioComponents_qmltyperegistration - -# fast build rule for target. -QuickStudioComponents_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmltyperegistration.dir/build -.PHONY : QuickStudioComponents_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule - -# Convenience name for target. -all_qmltyperegistrations: _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/rule -.PHONY : all_qmltyperegistrations - -# fast build rule for target. -all_qmltyperegistrations/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmltyperegistrations.dir/build -.PHONY : all_qmltyperegistrations/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule - -# Convenience name for target. -QuickStudioComponents_resources_1: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/rule -.PHONY : QuickStudioComponents_resources_1 - -# fast build rule for target. -QuickStudioComponents_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build -.PHONY : QuickStudioComponents_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/rule -.PHONY : QuickStudioComponentsplugin - -# fast build rule for target. -QuickStudioComponentsplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build -.PHONY : QuickStudioComponentsplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/rule -.PHONY : QuickStudioComponents_qmllint - -# fast build rule for target. -QuickStudioComponents_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint.dir/build -.PHONY : QuickStudioComponents_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/rule -.PHONY : QuickStudioComponents_qmllint_json - -# fast build rule for target. -QuickStudioComponents_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_json.dir/build -.PHONY : QuickStudioComponents_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/rule -.PHONY : QuickStudioComponents_qmllint_module - -# fast build rule for target. -QuickStudioComponents_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmllint_module.dir/build -.PHONY : QuickStudioComponents_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule - -# Convenience name for target. -all_qmllint: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/rule -.PHONY : all_qmllint - -# fast build rule for target. -all_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint.dir/build -.PHONY : all_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule - -# Convenience name for target. -all_qmllint_json: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/rule -.PHONY : all_qmllint_json - -# fast build rule for target. -all_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_json.dir/build -.PHONY : all_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule - -# Convenience name for target. -all_qmllint_module: _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/rule -.PHONY : all_qmllint_module - -# fast build rule for target. -all_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/all_qmllint_module.dir/build -.PHONY : all_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmlcache: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/rule -.PHONY : QuickStudioComponents_qmlcache - -# fast build rule for target. -QuickStudioComponents_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build -.PHONY : QuickStudioComponents_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule - -# Convenience name for target. -QuickStudioComponents_resources_2: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/rule -.PHONY : QuickStudioComponents_resources_2 - -# fast build rule for target. -QuickStudioComponents_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build -.PHONY : QuickStudioComponents_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_init: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/rule -.PHONY : QuickStudioComponentsplugin_init - -# fast build rule for target. -QuickStudioComponentsplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build -.PHONY : QuickStudioComponentsplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponents_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/rule -.PHONY : QuickStudioComponents_autogen - -# fast build rule for target. -QuickStudioComponents_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_autogen.dir/build -.PHONY : QuickStudioComponents_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/rule -.PHONY : QuickStudioComponentsplugin_autogen - -# fast build rule for target. -QuickStudioComponentsplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_autogen.dir/build -.PHONY : QuickStudioComponentsplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponents_qmlcache_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/rule -.PHONY : QuickStudioComponents_qmlcache_autogen - -# fast build rule for target. -QuickStudioComponents_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache_autogen.dir/build -.PHONY : QuickStudioComponents_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioComponentsplugin_init_autogen: _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/rule -.PHONY : QuickStudioComponentsplugin_init_autogen - -# fast build rule for target. -QuickStudioComponentsplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init_autogen.dir/build -.PHONY : QuickStudioComponentsplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s: .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s: .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s: .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s: .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s: .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s: .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s: .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.o: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.i: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.s: .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s: .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s: .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s: .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s: .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s: .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s: .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioComponents_raw_qml_0.o: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioComponents_raw_qml_0.i: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioComponents_raw_qml_0.s: .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_Components.o: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_Components.i: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_Components.s: .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Components.cpp.s - -QuickStudioComponents_autogen/mocs_compilation.o: QuickStudioComponents_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponents_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioComponents_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.o - -QuickStudioComponents_autogen/mocs_compilation.i: QuickStudioComponents_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponents_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioComponents_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.i - -QuickStudioComponents_autogen/mocs_compilation.s: QuickStudioComponents_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponents_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioComponents_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponents_autogen/mocs_compilation.cpp.s - -QuickStudioComponents_qmlcache_autogen/mocs_compilation.o: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioComponents_qmlcache_autogen/mocs_compilation.i: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioComponents_qmlcache_autogen/mocs_compilation.s: QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o - -# target to build an object file -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o - -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i - -# target to preprocess a source file -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.i - -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s: QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s - -# target to generate assembly for a file -QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s -.PHONY : QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.s - -QuickStudioComponentsplugin_autogen/mocs_compilation.o: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o - -QuickStudioComponentsplugin_autogen/mocs_compilation.i: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.i - -QuickStudioComponentsplugin_autogen/mocs_compilation.s: QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.s - -QuickStudioComponentsplugin_init.o: QuickStudioComponentsplugin_init.cpp.o -.PHONY : QuickStudioComponentsplugin_init.o - -# target to build an object file -QuickStudioComponentsplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -.PHONY : QuickStudioComponentsplugin_init.cpp.o - -QuickStudioComponentsplugin_init.i: QuickStudioComponentsplugin_init.cpp.i -.PHONY : QuickStudioComponentsplugin_init.i - -# target to preprocess a source file -QuickStudioComponentsplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.i -.PHONY : QuickStudioComponentsplugin_init.cpp.i - -QuickStudioComponentsplugin_init.s: QuickStudioComponentsplugin_init.cpp.s -.PHONY : QuickStudioComponentsplugin_init.s - -# target to generate assembly for a file -QuickStudioComponentsplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.s -.PHONY : QuickStudioComponentsplugin_init.cpp.s - -QuickStudioComponentsplugin_init_autogen/mocs_compilation.o: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioComponentsplugin_init_autogen/mocs_compilation.i: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioComponentsplugin_init_autogen/mocs_compilation.s: QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.s - -quickstudiocomponents_qmltyperegistrations.o: quickstudiocomponents_qmltyperegistrations.cpp.o -.PHONY : quickstudiocomponents_qmltyperegistrations.o - -# target to build an object file -quickstudiocomponents_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.o - -quickstudiocomponents_qmltyperegistrations.i: quickstudiocomponents_qmltyperegistrations.cpp.i -.PHONY : quickstudiocomponents_qmltyperegistrations.i - -# target to preprocess a source file -quickstudiocomponents_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.i -.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.i - -quickstudiocomponents_qmltyperegistrations.s: quickstudiocomponents_qmltyperegistrations.cpp.s -.PHONY : quickstudiocomponents_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudiocomponents_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/build.make _deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.s -.PHONY : quickstudiocomponents_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioComponents_autogen" - @echo "... QuickStudioComponents_automoc_json_extraction" - @echo "... QuickStudioComponents_qmlcache_autogen" - @echo "... QuickStudioComponents_qmllint" - @echo "... QuickStudioComponents_qmllint_json" - @echo "... QuickStudioComponents_qmllint_module" - @echo "... QuickStudioComponents_qmltyperegistration" - @echo "... QuickStudioComponentsplugin_autogen" - @echo "... QuickStudioComponentsplugin_init_autogen" - @echo "... all_qmllint" - @echo "... all_qmllint_json" - @echo "... all_qmllint_module" - @echo "... all_qmltyperegistrations" - @echo "... QuickStudioComponents" - @echo "... QuickStudioComponents_qmlcache" - @echo "... QuickStudioComponents_resources_1" - @echo "... QuickStudioComponents_resources_2" - @echo "... QuickStudioComponents_tooling" - @echo "... QuickStudioComponentsplugin" - @echo "... QuickStudioComponentsplugin_init" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_ArcItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_BorderItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_GroupItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_IsoItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_PieItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioComponents_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioComponents_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Components.s" - @echo "... QuickStudioComponents_autogen/mocs_compilation.o" - @echo "... QuickStudioComponents_autogen/mocs_compilation.i" - @echo "... QuickStudioComponents_autogen/mocs_compilation.s" - @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioComponents_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.o" - @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.i" - @echo "... QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.s" - @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioComponentsplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioComponentsplugin_init.o" - @echo "... QuickStudioComponentsplugin_init.i" - @echo "... QuickStudioComponentsplugin_init.s" - @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioComponentsplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudiocomponents_qmltyperegistrations.o" - @echo "... quickstudiocomponents_qmltyperegistrations.i" - @echo "... quickstudiocomponents_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp deleted file mode 100644 index 44d2c3a..0000000 --- a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_Components(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Components) - -class QtQuick_Studio_ComponentsPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_ComponentsPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_Components; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp b/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp deleted file mode 100644 index 69c675e..0000000 --- a/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_ComponentsPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/components/cmake_install.cmake b/build/_deps/ds-build/src/imports/components/cmake_install.cmake deleted file mode 100644 index 2595c65..0000000 --- a/build/_deps/ds-build/src/imports/components/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json b/build/_deps/ds-build/src/imports/components/meta_types/qt6quickstudiocomponents_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt b/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/components/qmltypes/QuickStudioComponents_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc deleted file mode 100644 index f02a2c7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc +++ /dev/null @@ -1,50 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml - - - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc deleted file mode 100644 index dcdf124..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp deleted file mode 100644 index ba4db14..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp +++ /dev/null @@ -1,45 +0,0 @@ -/QtQuick/Studio/Effects/FastBlurItem.qml -/QtQuick/Studio/Effects/GlowItem.qml -/QtQuick/Studio/Effects/ZoomBlurItem.qml -/QtQuick/Studio/Effects/RadialBlurItem.qml -/QtQuick/Studio/Effects/DesaturationItem.qml -/QtQuick/Studio/Effects/SaturationItem.qml -/QtQuick/Studio/Effects/DirectionalBlurItem.qml -/QtQuick/Studio/Effects/ColorOverlayItem.qml -/QtQuick/Studio/Effects/DropShadowItem.qml -/QtQuick/Studio/Effects/ColorizeItem.qml -/QtQuick/Studio/Effects/BrightnessContrastItem.qml -/QtQuick/Studio/Effects/HueSaturationItem.qml -/QtQuick/Studio/Effects/MaskedBlurItem.qml -/QtQuick/Studio/Effects/BlendItem.qml -/QtQuick/Studio/Effects/OpacityMaskItem.qml -/QtQuick/Studio/Effects/MaskItem.qml -/QtQuick/Studio/Effects/RotationItem.qml -/QtQuick/Studio/Effects/GaussianBlurItem.qml -/QtQuick/Studio/Effects/GammaAdjustItem.qml -/QtQuick/Studio/Effects/RecursiveBlurItem.qml -/QtQuick/Studio/Effects/ThresholdMaskItem.qml -/QtQuick/Studio/Effects/LevelAdjustItem.qml -/QtQuick/Studio/Effects/InnerShadowItem.qml -/QtQuick/Studio/Effects/DisplaceItem.qml -/QtQuick/Studio/Effects/BlendEffect.qml -/QtQuick/Studio/Effects/BrightnessContrastEffect.qml -/QtQuick/Studio/Effects/ColorizeEffect.qml -/QtQuick/Studio/Effects/ColorOverlayEffect.qml -/QtQuick/Studio/Effects/DesaturationEffect.qml -/QtQuick/Studio/Effects/DirectionalBlurEffect.qml -/QtQuick/Studio/Effects/DisplaceEffect.qml -/QtQuick/Studio/Effects/DropShadowEffect.qml -/QtQuick/Studio/Effects/FastBlurEffect.qml -/QtQuick/Studio/Effects/GammaAdjustEffect.qml -/QtQuick/Studio/Effects/GaussianBlurEffect.qml -/QtQuick/Studio/Effects/GlowEffect.qml -/QtQuick/Studio/Effects/HueSaturationEffect.qml -/QtQuick/Studio/Effects/InnerShadowEffect.qml -/QtQuick/Studio/Effects/LevelAdjustEffect.qml -/QtQuick/Studio/Effects/MaskedBlurEffect.qml -/QtQuick/Studio/Effects/OpacityMaskEffect.qml -/QtQuick/Studio/Effects/RadialBlurEffect.qml -/QtQuick/Studio/Effects/RecursiveBlurEffect.qml -/QtQuick/Studio/Effects/ThresholdMaskEffect.qml -/QtQuick/Studio/Effects/ZoomBlurEffect.qml diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp deleted file mode 100644 index ec9d65f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp +++ /dev/null @@ -1,56 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp deleted file mode 100644 index 4756ccf..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp +++ /dev/null @@ -1,58 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEffects_qmllint.json diff --git a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp b/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp deleted file mode 100644 index 5784122..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc ---module -QtQuick.Studio.Effects diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake deleted file mode 100644 index c662ea0..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake +++ /dev/null @@ -1,71 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make deleted file mode 100644 index 0d231a4..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make +++ /dev/null @@ -1,1369 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: _deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json - -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes --import-name=QtQuick.Studio.Effects --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated/QuickStudioEffects.qmltypes - -qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/FastBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ZoomBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RadialBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DesaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/SaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DirectionalBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorOverlayItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DropShadowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorizeItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BrightnessContrastItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/HueSaturationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskedBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BlendItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/OpacityMaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RotationItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GaussianBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GammaAdjustItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RecursiveBlurItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ThresholdMaskItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/LevelAdjustItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/InnerShadowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Generating .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DisplaceItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Generating .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BlendEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Generating .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/BrightnessContrastEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Generating .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorizeEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Generating .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ColorOverlayEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Generating .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DesaturationEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Generating .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DirectionalBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Generating .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DisplaceEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Generating .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/DropShadowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Generating .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/FastBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Generating .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GammaAdjustEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Generating .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GaussianBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Generating .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/GlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Generating .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/HueSaturationEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Generating .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/InnerShadowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Generating .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/LevelAdjustEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Generating .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/MaskedBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Generating .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/OpacityMaskEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Generating .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RadialBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Generating .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/RecursiveBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Generating .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ThresholdMaskEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp: qml/QtQuick/Studio/Effects/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Generating .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/Effects/ZoomBlurEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml - -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Generating meta_types/qt6quickstudioeffects_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_53) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_54) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_55) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_56) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_57) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_58) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_59) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_60) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_61) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_62) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_63) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_64) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_65) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_66) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_67) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_68) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_69) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_70) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_71) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_72) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_73) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_74) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_75) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_76) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_77) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_78) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_79) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_80) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_81) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_82) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_83) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_84) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_85) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_86) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_87) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_88) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_89) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_90) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_91) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_92) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_93) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_94) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_95) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -MF CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp > CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s - -# Object files for target QuickStudioEffects -QuickStudioEffects_OBJECTS = \ -"CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" \ -"CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" - -# External object files for target QuickStudioEffects -QuickStudioEffects_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make -_deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_96) "Linking CXX static library libQuickStudioEffects.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEffects.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build: _deps/ds-build/src/imports/effects_qt6/libQuickStudioEffects.a -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake deleted file mode 100644 index c0eff9c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean.cmake +++ /dev/null @@ -1,155 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" - ".rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp" - ".rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp" - "CMakeFiles/QuickStudioEffects_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt" - "QuickStudioEffects_autogen" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o.d" - "libQuickStudioEffects.a" - "libQuickStudioEffects.pdb" - "meta_types/qt6quickstudioeffects_debug_metatypes.json" - "meta_types/qt6quickstudioeffects_debug_metatypes.json.gen" - "quickstudioeffects_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffects.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake deleted file mode 100644 index a8a6514..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioEffects.a" -) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make deleted file mode 100644 index 5f7fecd..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffects. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts deleted file mode 100644 index c5ee4bb..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffects. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make deleted file mode 100644 index 9f6a1c2..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffects. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make deleted file mode 100644 index ae1fb63..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt deleted file mode 100644 index 61073eb..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEffects.a CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEffects.a diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make deleted file mode 100644 index 622f217..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/progress.make +++ /dev/null @@ -1,97 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 43 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = 44 -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = 45 -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = 46 -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = -CMAKE_PROGRESS_25 = -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = -CMAKE_PROGRESS_28 = 47 -CMAKE_PROGRESS_29 = -CMAKE_PROGRESS_30 = -CMAKE_PROGRESS_31 = -CMAKE_PROGRESS_32 = -CMAKE_PROGRESS_33 = -CMAKE_PROGRESS_34 = 48 -CMAKE_PROGRESS_35 = -CMAKE_PROGRESS_36 = -CMAKE_PROGRESS_37 = -CMAKE_PROGRESS_38 = -CMAKE_PROGRESS_39 = -CMAKE_PROGRESS_40 = 49 -CMAKE_PROGRESS_41 = -CMAKE_PROGRESS_42 = -CMAKE_PROGRESS_43 = -CMAKE_PROGRESS_44 = -CMAKE_PROGRESS_45 = -CMAKE_PROGRESS_46 = 50 -CMAKE_PROGRESS_47 = -CMAKE_PROGRESS_48 = -CMAKE_PROGRESS_49 = -CMAKE_PROGRESS_50 = -CMAKE_PROGRESS_51 = -CMAKE_PROGRESS_52 = -CMAKE_PROGRESS_53 = 51 -CMAKE_PROGRESS_54 = -CMAKE_PROGRESS_55 = -CMAKE_PROGRESS_56 = -CMAKE_PROGRESS_57 = -CMAKE_PROGRESS_58 = -CMAKE_PROGRESS_59 = 52 -CMAKE_PROGRESS_60 = -CMAKE_PROGRESS_61 = -CMAKE_PROGRESS_62 = -CMAKE_PROGRESS_63 = -CMAKE_PROGRESS_64 = -CMAKE_PROGRESS_65 = 53 -CMAKE_PROGRESS_66 = -CMAKE_PROGRESS_67 = -CMAKE_PROGRESS_68 = -CMAKE_PROGRESS_69 = -CMAKE_PROGRESS_70 = -CMAKE_PROGRESS_71 = 54 -CMAKE_PROGRESS_72 = -CMAKE_PROGRESS_73 = -CMAKE_PROGRESS_74 = -CMAKE_PROGRESS_75 = -CMAKE_PROGRESS_76 = -CMAKE_PROGRESS_77 = -CMAKE_PROGRESS_78 = 55 -CMAKE_PROGRESS_79 = -CMAKE_PROGRESS_80 = -CMAKE_PROGRESS_81 = -CMAKE_PROGRESS_82 = -CMAKE_PROGRESS_83 = -CMAKE_PROGRESS_84 = 56 -CMAKE_PROGRESS_85 = -CMAKE_PROGRESS_86 = -CMAKE_PROGRESS_87 = -CMAKE_PROGRESS_88 = -CMAKE_PROGRESS_89 = -CMAKE_PROGRESS_90 = 57 -CMAKE_PROGRESS_91 = -CMAKE_PROGRESS_92 = -CMAKE_PROGRESS_93 = -CMAKE_PROGRESS_94 = -CMAKE_PROGRESS_95 = -CMAKE_PROGRESS_96 = 58 - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json deleted file mode 100644 index ac4be3e..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,193 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make deleted file mode 100644 index 681408f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json Debug - -QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen -QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make -.PHONY : QuickStudioEffects_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build: QuickStudioEffects_autogen -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 71392ef..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffects_autogen" - "QuickStudioEffects_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make deleted file mode 100644 index 4b4a7d1..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts deleted file mode 100644 index 8306d0f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make deleted file mode 100644 index 0cdfa31..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include - -QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction -QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioEffects_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build: QuickStudioEffects_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index f746c00..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffects_automoc_json_extraction" - "meta_types/QuickStudioEffects_json_file_list.txt" - "meta_types/QuickStudioEffects_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 3369415..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index caedbff..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index b245f7c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make deleted file mode 100644 index 7476ca9..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEffects --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp > CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s - -QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make -.PHONY : QuickStudioEffects_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build: QuickStudioEffects_qmlcache -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index efdcd89..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioEffects_qmlcache_autogen" - "CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffects_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 1921f2b..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffects_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index c3fda78..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffects_qmlcache. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make deleted file mode 100644 index 710674e..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffects_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make deleted file mode 100644 index 705ebcf..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index f89f59a..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make deleted file mode 100644 index 8fc71be..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffects_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEffects --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qml_loader_file_list.rsp - -QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp -QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen -QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioEffects_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build: QuickStudioEffects_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 0aef354..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEffects_qmlcache_autogen" - "QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index 16d2da5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 2bd62a1..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 5b6b61f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 59 - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make deleted file mode 100644 index d1123b9..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make +++ /dev/null @@ -1,133 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects.rsp - -QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint -QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make -.PHONY : QuickStudioEffects_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build: QuickStudioEffects_qmllint -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 4cc6e47..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffects_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make deleted file mode 100644 index d2e144f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 3cd47d5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make deleted file mode 100644 index 94014ca..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make +++ /dev/null @@ -1,133 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_json.rsp - -QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json -QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make -.PHONY : QuickStudioEffects_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build: QuickStudioEffects_qmllint_json -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index d50f02d..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffects_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 1837ea4..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 642ea1b..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make deleted file mode 100644 index 4fb5f97..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make +++ /dev/null @@ -1,133 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmllint/QuickStudioEffects_module.rsp - -QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module -QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make -.PHONY : QuickStudioEffects_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build: QuickStudioEffects_qmllint_module -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b0be322..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffects_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 031f266..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 9243cb5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index ce60c07..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make deleted file mode 100644 index 697f224..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes - -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes --import-name=QtQuick.Studio.Effects --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.generated/QuickStudioEffects.qmltypes - -qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes - -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeffects_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen: _deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEffects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/QuickStudioEffects_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json - -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json.gen -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp -QuickStudioEffects_qmltyperegistration: qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make -.PHONY : QuickStudioEffects_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build: QuickStudioEffects_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 599688e..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Effects/QuickStudioEffects.qmltypes" - "CMakeFiles/QuickStudioEffects_qmltyperegistration" - "meta_types/qt6quickstudioeffects_debug_metatypes.json" - "meta_types/qt6quickstudioeffects_debug_metatypes.json.gen" - "quickstudioeffects_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index d80f004..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index a8464f5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 4e80ee6..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make deleted file mode 100644 index d4deb14..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: qml/QtQuick/Studio/Effects/qmldir -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_Effects" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp --name qmake_QtQuick_Studio_Effects /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmake_QtQuick_Studio_Effects.qrc - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -MF CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp > CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s - -QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make -.PHONY : QuickStudioEffects_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build: QuickStudioEffects_resources_1 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 3a66a72..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_Effects.cpp" - "CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" - "CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffects_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make deleted file mode 100644 index 6edf9db..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffects_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 00afc16..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffects_resources_1. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make deleted file mode 100644 index 2cde21f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffects_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make deleted file mode 100644 index 99cd891..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 421e92e..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make deleted file mode 100644 index 84f463c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make +++ /dev/null @@ -1,151 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: _deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc -_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEffects_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp --name QuickStudioEffects_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/QuickStudioEffects_raw_qml_0.qrc - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp > CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s - -QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make -.PHONY : QuickStudioEffects_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build: QuickStudioEffects_resources_2 -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend: _deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index a0a9ca5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioEffects_raw_qml_0.cpp" - "CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffects_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make deleted file mode 100644 index 937fc22..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffects_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 41b1a02..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffects_resources_2. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make deleted file mode 100644 index 9ea1259..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffects_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make deleted file mode 100644 index 99cd891..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make deleted file mode 100644 index ab9fbad..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 60 -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make deleted file mode 100644 index 8f876a0..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make +++ /dev/null @@ -1,308 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffects_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make - -qml/QtQuick/Studio/Effects/FastBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying FastBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml - -qml/QtQuick/Studio/Effects/GlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying GlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowItem.qml - -qml/QtQuick/Studio/Effects/ZoomBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying ZoomBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml - -qml/QtQuick/Studio/Effects/RadialBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying RadialBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml - -qml/QtQuick/Studio/Effects/DesaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying DesaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml - -qml/QtQuick/Studio/Effects/SaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying SaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/SaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/SaturationItem.qml - -qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying DirectionalBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml - -qml/QtQuick/Studio/Effects/ColorOverlayItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying ColorOverlayItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml - -qml/QtQuick/Studio/Effects/DropShadowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying DropShadowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml - -qml/QtQuick/Studio/Effects/ColorizeItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying ColorizeItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml - -qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying BrightnessContrastItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml - -qml/QtQuick/Studio/Effects/HueSaturationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying HueSaturationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml - -qml/QtQuick/Studio/Effects/MaskedBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying MaskedBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml - -qml/QtQuick/Studio/Effects/BlendItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying BlendItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendItem.qml - -qml/QtQuick/Studio/Effects/OpacityMaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying OpacityMaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml - -qml/QtQuick/Studio/Effects/MaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying MaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskItem.qml - -qml/QtQuick/Studio/Effects/RotationItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying RotationItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RotationItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RotationItem.qml - -qml/QtQuick/Studio/Effects/GaussianBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying GaussianBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml - -qml/QtQuick/Studio/Effects/GammaAdjustItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying GammaAdjustItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml - -qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying RecursiveBlurItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml - -qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying ThresholdMaskItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml - -qml/QtQuick/Studio/Effects/LevelAdjustItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying LevelAdjustItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml - -qml/QtQuick/Studio/Effects/InnerShadowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying InnerShadowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml - -qml/QtQuick/Studio/Effects/DisplaceItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying DisplaceItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml - -qml/QtQuick/Studio/Effects/BlendEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Copying BlendEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BlendEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BlendEffect.qml - -qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Copying BrightnessContrastEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/BrightnessContrastEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml - -qml/QtQuick/Studio/Effects/ColorizeEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Copying ColorizeEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorizeEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml - -qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Copying ColorOverlayEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ColorOverlayEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml - -qml/QtQuick/Studio/Effects/DesaturationEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Copying DesaturationEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DesaturationEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml - -qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Copying DirectionalBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DirectionalBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml - -qml/QtQuick/Studio/Effects/DisplaceEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Copying DisplaceEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DisplaceEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml - -qml/QtQuick/Studio/Effects/DropShadowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Copying DropShadowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/DropShadowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml - -qml/QtQuick/Studio/Effects/FastBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Copying FastBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/FastBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml - -qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Copying GammaAdjustEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GammaAdjustEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml - -qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Copying GaussianBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GaussianBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml - -qml/QtQuick/Studio/Effects/GlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Copying GlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/GlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/GlowEffect.qml - -qml/QtQuick/Studio/Effects/HueSaturationEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Copying HueSaturationEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/HueSaturationEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml - -qml/QtQuick/Studio/Effects/InnerShadowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Copying InnerShadowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/InnerShadowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml - -qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Copying LevelAdjustEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/LevelAdjustEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml - -qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Copying MaskedBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/MaskedBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml - -qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Copying OpacityMaskEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/OpacityMaskEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml - -qml/QtQuick/Studio/Effects/RadialBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Copying RadialBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RadialBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml - -qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Copying RecursiveBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/RecursiveBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml - -qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Copying ThresholdMaskEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ThresholdMaskEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml - -qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Copying ZoomBlurEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/ZoomBlurEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml - -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BlendEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BlendItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorOverlayItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorizeEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ColorizeItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DesaturationEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DesaturationItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DisplaceEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DisplaceItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DropShadowEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/DropShadowItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/FastBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/FastBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GammaAdjustItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GaussianBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GlowEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/GlowItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/HueSaturationEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/HueSaturationItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/InnerShadowEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/InnerShadowItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/LevelAdjustItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/MaskedBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/OpacityMaskItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RadialBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RadialBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/RotationItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/SaturationItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml -QuickStudioEffects_tooling: qml/QtQuick/Studio/Effects/ZoomBlurItem.qml -QuickStudioEffects_tooling: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build.make -.PHONY : QuickStudioEffects_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build: QuickStudioEffects_tooling -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 967a920..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,52 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Effects/BlendEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/BlendItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/ColorOverlayItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/ColorizeEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/ColorizeItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/DesaturationEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/DesaturationItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/DisplaceEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/DisplaceItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/DropShadowEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/DropShadowItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/FastBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/FastBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/GammaAdjustItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/GaussianBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/GlowEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/GlowItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/HueSaturationEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/HueSaturationItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/InnerShadowEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/InnerShadowItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/LevelAdjustItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/MaskItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/MaskedBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/OpacityMaskItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/RadialBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/RadialBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/RotationItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/SaturationItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml" - "../../../../../qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml" - "../../../../../qml/QtQuick/Studio/Effects/ZoomBlurItem.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffects_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make deleted file mode 100644 index 75d14d5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffects_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts deleted file mode 100644 index 94ffd7f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffects_tooling. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make deleted file mode 100644 index 0adb66b..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_tooling.dir/progress.make +++ /dev/null @@ -1,46 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = 61 -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = 62 -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = 63 -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = 64 -CMAKE_PROGRESS_25 = -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = -CMAKE_PROGRESS_28 = -CMAKE_PROGRESS_29 = -CMAKE_PROGRESS_30 = 65 -CMAKE_PROGRESS_31 = -CMAKE_PROGRESS_32 = -CMAKE_PROGRESS_33 = -CMAKE_PROGRESS_34 = -CMAKE_PROGRESS_35 = -CMAKE_PROGRESS_36 = 66 -CMAKE_PROGRESS_37 = -CMAKE_PROGRESS_38 = -CMAKE_PROGRESS_39 = -CMAKE_PROGRESS_40 = -CMAKE_PROGRESS_41 = -CMAKE_PROGRESS_42 = -CMAKE_PROGRESS_43 = 67 -CMAKE_PROGRESS_44 = -CMAKE_PROGRESS_45 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake deleted file mode 100644 index cfcef80..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make deleted file mode 100644 index 2fbcca2..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp > CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s - -# Object files for target QuickStudioEffectsplugin -QuickStudioEffectsplugin_OBJECTS = \ -"CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" - -# External object files for target QuickStudioEffectsplugin -QuickStudioEffectsplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make -qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEffectsplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build: qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake deleted file mode 100644 index 7ca8e81..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" - "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.pdb" - "CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEffectsplugin_autogen.dir/ParseCache.txt" - "QuickStudioEffectsplugin_autogen" - "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" - "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o.d" - "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 5755d76..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make deleted file mode 100644 index f5099df..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffectsplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts deleted file mode 100644 index d487bc5..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffectsplugin. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make deleted file mode 100644 index b0db5d4..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffectsplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make deleted file mode 100644 index ca60528..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt deleted file mode 100644 index cf96272..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/Effects/libQuickStudioEffectsplugin.a diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index d0cfec3..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.Effects" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make deleted file mode 100644 index 70fee6c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffectsplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffectsplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen -QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make -.PHONY : QuickStudioEffectsplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build: QuickStudioEffectsplugin_autogen -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 137e7e4..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffectsplugin_autogen" - "QuickStudioEffectsplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffectsplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index bffc225..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffectsplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 09a4239..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffectsplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make deleted file mode 100644 index a9dc8c8..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 68 - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 9ef907b..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make deleted file mode 100644 index f98fd97..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -MF CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp > CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s - -QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make -.PHONY : QuickStudioEffectsplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build: QuickStudioEffectsplugin_init -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index cc7617f..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioEffectsplugin_init_autogen" - "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" - "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEffectsplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make deleted file mode 100644 index 8d026ce..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEffectsplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 27f5f4c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEffectsplugin_init. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make deleted file mode 100644 index f8b0f69..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEffectsplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make deleted file mode 100644 index cd24782..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 164550a..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make deleted file mode 100644 index 84aa751..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEffectsplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEffectsplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen -QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make -.PHONY : QuickStudioEffectsplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build: QuickStudioEffectsplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 4af680e..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEffectsplugin_init_autogen" - "QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index e6b161c..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEffectsplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index e94f640..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEffectsplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks deleted file mode 100644 index 6f4247a..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -26 diff --git a/build/_deps/ds-build/src/imports/effects_qt6/Makefile b/build/_deps/ds-build/src/imports/effects_qt6/Makefile deleted file mode 100644 index b3a49b7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/Makefile +++ /dev/null @@ -1,1900 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule - -# Convenience name for target. -QuickStudioEffects: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/rule -.PHONY : QuickStudioEffects - -# fast build rule for target. -QuickStudioEffects/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build -.PHONY : QuickStudioEffects/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEffects_automoc_json_extraction: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEffects_automoc_json_extraction - -# fast build rule for target. -QuickStudioEffects_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_automoc_json_extraction.dir/build -.PHONY : QuickStudioEffects_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmltyperegistration: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/rule -.PHONY : QuickStudioEffects_qmltyperegistration - -# fast build rule for target. -QuickStudioEffects_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmltyperegistration.dir/build -.PHONY : QuickStudioEffects_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEffects_resources_1: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/rule -.PHONY : QuickStudioEffects_resources_1 - -# fast build rule for target. -QuickStudioEffects_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build -.PHONY : QuickStudioEffects_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/rule -.PHONY : QuickStudioEffectsplugin - -# fast build rule for target. -QuickStudioEffectsplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build -.PHONY : QuickStudioEffectsplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/rule -.PHONY : QuickStudioEffects_qmllint - -# fast build rule for target. -QuickStudioEffects_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint.dir/build -.PHONY : QuickStudioEffects_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint_json: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/rule -.PHONY : QuickStudioEffects_qmllint_json - -# fast build rule for target. -QuickStudioEffects_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_json.dir/build -.PHONY : QuickStudioEffects_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmllint_module: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/rule -.PHONY : QuickStudioEffects_qmllint_module - -# fast build rule for target. -QuickStudioEffects_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmllint_module.dir/build -.PHONY : QuickStudioEffects_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmlcache: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/rule -.PHONY : QuickStudioEffects_qmlcache - -# fast build rule for target. -QuickStudioEffects_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build -.PHONY : QuickStudioEffects_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEffects_resources_2: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/rule -.PHONY : QuickStudioEffects_resources_2 - -# fast build rule for target. -QuickStudioEffects_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build -.PHONY : QuickStudioEffects_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_init: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/rule -.PHONY : QuickStudioEffectsplugin_init - -# fast build rule for target. -QuickStudioEffectsplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build -.PHONY : QuickStudioEffectsplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffects_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/rule -.PHONY : QuickStudioEffects_autogen - -# fast build rule for target. -QuickStudioEffects_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_autogen.dir/build -.PHONY : QuickStudioEffects_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/rule -.PHONY : QuickStudioEffectsplugin_autogen - -# fast build rule for target. -QuickStudioEffectsplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_autogen.dir/build -.PHONY : QuickStudioEffectsplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffects_qmlcache_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEffects_qmlcache_autogen - -# fast build rule for target. -QuickStudioEffects_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache_autogen.dir/build -.PHONY : QuickStudioEffects_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEffectsplugin_init_autogen: _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/rule -.PHONY : QuickStudioEffectsplugin_init_autogen - -# fast build rule for target. -QuickStudioEffectsplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init_autogen.dir/build -.PHONY : QuickStudioEffectsplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s: .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s: .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s: .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s: .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s: .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s: .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s: .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioEffects_raw_qml_0.o: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioEffects_raw_qml_0.i: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioEffects_raw_qml_0.s: .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_Effects.o: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_Effects.i: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_Effects.s: .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.s - -QuickStudioEffects_autogen/mocs_compilation.o: QuickStudioEffects_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffects_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEffects_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.o - -QuickStudioEffects_autogen/mocs_compilation.i: QuickStudioEffects_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffects_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEffects_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.i - -QuickStudioEffects_autogen/mocs_compilation.s: QuickStudioEffects_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffects_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEffects_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffects_autogen/mocs_compilation.cpp.s - -QuickStudioEffects_qmlcache_autogen/mocs_compilation.o: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioEffects_qmlcache_autogen/mocs_compilation.i: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioEffects_qmlcache_autogen/mocs_compilation.s: QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o - -# target to build an object file -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o - -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i - -# target to preprocess a source file -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.i - -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s: QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s - -# target to generate assembly for a file -QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s -.PHONY : QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.s - -QuickStudioEffectsplugin_autogen/mocs_compilation.o: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o - -QuickStudioEffectsplugin_autogen/mocs_compilation.i: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.i - -QuickStudioEffectsplugin_autogen/mocs_compilation.s: QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.s - -QuickStudioEffectsplugin_init.o: QuickStudioEffectsplugin_init.cpp.o -.PHONY : QuickStudioEffectsplugin_init.o - -# target to build an object file -QuickStudioEffectsplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -.PHONY : QuickStudioEffectsplugin_init.cpp.o - -QuickStudioEffectsplugin_init.i: QuickStudioEffectsplugin_init.cpp.i -.PHONY : QuickStudioEffectsplugin_init.i - -# target to preprocess a source file -QuickStudioEffectsplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.i -.PHONY : QuickStudioEffectsplugin_init.cpp.i - -QuickStudioEffectsplugin_init.s: QuickStudioEffectsplugin_init.cpp.s -.PHONY : QuickStudioEffectsplugin_init.s - -# target to generate assembly for a file -QuickStudioEffectsplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.s -.PHONY : QuickStudioEffectsplugin_init.cpp.s - -QuickStudioEffectsplugin_init_autogen/mocs_compilation.o: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioEffectsplugin_init_autogen/mocs_compilation.i: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioEffectsplugin_init_autogen/mocs_compilation.s: QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.s - -quickstudioeffects_qmltyperegistrations.o: quickstudioeffects_qmltyperegistrations.cpp.o -.PHONY : quickstudioeffects_qmltyperegistrations.o - -# target to build an object file -quickstudioeffects_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -.PHONY : quickstudioeffects_qmltyperegistrations.cpp.o - -quickstudioeffects_qmltyperegistrations.i: quickstudioeffects_qmltyperegistrations.cpp.i -.PHONY : quickstudioeffects_qmltyperegistrations.i - -# target to preprocess a source file -quickstudioeffects_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.i -.PHONY : quickstudioeffects_qmltyperegistrations.cpp.i - -quickstudioeffects_qmltyperegistrations.s: quickstudioeffects_qmltyperegistrations.cpp.s -.PHONY : quickstudioeffects_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudioeffects_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/build.make _deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.s -.PHONY : quickstudioeffects_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioEffects_autogen" - @echo "... QuickStudioEffects_automoc_json_extraction" - @echo "... QuickStudioEffects_qmlcache_autogen" - @echo "... QuickStudioEffects_qmllint" - @echo "... QuickStudioEffects_qmllint_json" - @echo "... QuickStudioEffects_qmllint_module" - @echo "... QuickStudioEffects_qmltyperegistration" - @echo "... QuickStudioEffectsplugin_autogen" - @echo "... QuickStudioEffectsplugin_init_autogen" - @echo "... QuickStudioEffects" - @echo "... QuickStudioEffects_qmlcache" - @echo "... QuickStudioEffects_resources_1" - @echo "... QuickStudioEffects_resources_2" - @echo "... QuickStudioEffects_tooling" - @echo "... QuickStudioEffectsplugin" - @echo "... QuickStudioEffectsplugin_init" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_BlendItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_GlowItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_RotationItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioEffects_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioEffects_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_Effects.s" - @echo "... QuickStudioEffects_autogen/mocs_compilation.o" - @echo "... QuickStudioEffects_autogen/mocs_compilation.i" - @echo "... QuickStudioEffects_autogen/mocs_compilation.s" - @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioEffects_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.o" - @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.i" - @echo "... QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.s" - @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioEffectsplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioEffectsplugin_init.o" - @echo "... QuickStudioEffectsplugin_init.i" - @echo "... QuickStudioEffectsplugin_init.s" - @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioEffectsplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudioeffects_qmltyperegistrations.o" - @echo "... quickstudioeffects_qmltyperegistrations.i" - @echo "... quickstudioeffects_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp deleted file mode 100644 index 30a0655..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_Effects(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_Effects) - -class QtQuick_Studio_EffectsPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_EffectsPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_Effects; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp b/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp deleted file mode 100644 index 1f886c7..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_EffectsPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake b/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake deleted file mode 100644 index 8913971..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json b/build/_deps/ds-build/src/imports/effects_qt6/meta_types/qt6quickstudioeffects_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt b/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/effects_qt6/qmltypes/QuickStudioEffects_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc deleted file mode 100644 index 13c7c40..0000000 --- a/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc +++ /dev/null @@ -1,29 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp deleted file mode 100644 index ae608d9..0000000 --- a/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp +++ /dev/null @@ -1,23 +0,0 @@ -/FlowView/DefaultFlowEffect.qml -/FlowView/SwipeInteraction.qml -/FlowView/FlowEffect.qml -/FlowView/FlowFadeEffect.qml -/FlowView/FlowPushLeftEffect.qml -/FlowView/FlowPushRightEffect.qml -/FlowView/FlowSlideDownEffect.qml -/FlowView/FlowSlideLeftEffect.qml -/FlowView/FlowSlideRightEffect.qml -/FlowView/FlowSlideUpEffect.qml -/FlowView/FlowMoveEffect.qml -/FlowView/FlowPushEffect.qml -/FlowView/FlowTransition.qml -/FlowView/FlowTransitionList.qml -/FlowView/FlowView.qml -/FlowView/FlowPushUpEffect.qml -/FlowView/FlowItem.qml -/FlowView/FlowDecision.qml -/FlowView/FlowWildcard.qml -/FlowView/FlowActionArea.qml -/FlowView/FlowState.qml -/FlowView/+DesignMode/FlowItem.qml -/FlowView/+DesignMode/FlowView.qml diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp deleted file mode 100644 index c397728..0000000 --- a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp +++ /dev/null @@ -1,32 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp deleted file mode 100644 index 7da444b..0000000 --- a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp +++ /dev/null @@ -1,34 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/FlowView_qmllint.json diff --git a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp b/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp deleted file mode 100644 index 194d44a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp +++ /dev/null @@ -1,10 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc ---module -FlowView diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake deleted file mode 100644 index 69bcab9..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake +++ /dev/null @@ -1,49 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make deleted file mode 100644 index da6db15..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make +++ /dev/null @@ -1,752 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make - -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: _deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json - -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes --import-name=FlowView --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated/FlowView.qmltypes - -qml/FlowView/FlowView.qmltypes: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/FlowView/FlowView.qmltypes - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/DefaultFlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/SwipeInteraction.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/FlowView_FlowEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowFadeEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushLeftEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushRightEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideDownEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideLeftEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideRightEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowSlideUpEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowMoveEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/FlowView_FlowTransition_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowTransition.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowTransitionList.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/FlowView_FlowView_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowView.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowPushUpEffect.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/FlowView_FlowItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/FlowView_FlowDecision_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowDecision.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowWildcard.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowActionArea.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/FlowView_FlowState_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/FlowState.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/+DesignMode/FlowItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: qml/FlowView/FlowView.qmltypes -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp: qml/FlowView/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /FlowView/+DesignMode/FlowView.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml - -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Generating meta_types/qt6flowview_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp > CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -MF CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp > CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -MF CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp > CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s - -# Object files for target FlowView -FlowView_OBJECTS = \ -"CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" \ -"CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" - -# External object files for target FlowView -FlowView_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make -_deps/ds-build/src/imports/flowview/libFlowView.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Linking CXX static library libFlowView.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FlowView.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build: _deps/ds-build/src/imports/flowview/libFlowView.a -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend: qml/FlowView/FlowView.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake deleted file mode 100644 index 8f5fb72..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean.cmake +++ /dev/null @@ -1,89 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/FlowView/FlowView.qmltypes" - ".rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp" - ".rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp" - ".rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowActionArea_qml.cpp" - ".rcc/qmlcache/FlowView_FlowDecision_qml.cpp" - ".rcc/qmlcache/FlowView_FlowEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowItem_qml.cpp" - ".rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp" - ".rcc/qmlcache/FlowView_FlowState_qml.cpp" - ".rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp" - ".rcc/qmlcache/FlowView_FlowTransition_qml.cpp" - ".rcc/qmlcache/FlowView_FlowView_qml.cpp" - ".rcc/qmlcache/FlowView_FlowWildcard_qml.cpp" - ".rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp" - "CMakeFiles/FlowView_autogen.dir/AutogenUsed.txt" - "CMakeFiles/FlowView_autogen.dir/ParseCache.txt" - "FlowView_autogen" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" - "CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o.d" - "CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" - "CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" - "CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o.d" - "flowview_qmltyperegistrations.cpp" - "libFlowView.a" - "libFlowView.pdb" - "meta_types/qt6flowview_debug_metatypes.json" - "meta_types/qt6flowview_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/FlowView.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake deleted file mode 100644 index 85d999b..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libFlowView.a" -) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make deleted file mode 100644 index be2242c..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for FlowView. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts deleted file mode 100644 index 6ba481a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for FlowView. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make deleted file mode 100644 index 1137a8b..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for FlowView. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make deleted file mode 100644 index 0f7c1a4..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt deleted file mode 100644 index 787414d..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libFlowView.a CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libFlowView.a diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make deleted file mode 100644 index 68d13f3..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/progress.make +++ /dev/null @@ -1,53 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = 14 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 15 -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = 16 -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = -CMAKE_PROGRESS_23 = 17 -CMAKE_PROGRESS_24 = -CMAKE_PROGRESS_25 = -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = -CMAKE_PROGRESS_28 = -CMAKE_PROGRESS_29 = 18 -CMAKE_PROGRESS_30 = -CMAKE_PROGRESS_31 = -CMAKE_PROGRESS_32 = -CMAKE_PROGRESS_33 = -CMAKE_PROGRESS_34 = -CMAKE_PROGRESS_35 = 19 -CMAKE_PROGRESS_36 = -CMAKE_PROGRESS_37 = -CMAKE_PROGRESS_38 = -CMAKE_PROGRESS_39 = -CMAKE_PROGRESS_40 = -CMAKE_PROGRESS_41 = 20 -CMAKE_PROGRESS_42 = -CMAKE_PROGRESS_43 = -CMAKE_PROGRESS_44 = -CMAKE_PROGRESS_45 = -CMAKE_PROGRESS_46 = -CMAKE_PROGRESS_47 = -CMAKE_PROGRESS_48 = 21 -CMAKE_PROGRESS_49 = -CMAKE_PROGRESS_50 = -CMAKE_PROGRESS_51 = -CMAKE_PROGRESS_52 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json deleted file mode 100644 index 48cb2ae..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make deleted file mode 100644 index 4c56bcc..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json Debug - -FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen -FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make -.PHONY : FlowView_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build: FlowView_autogen -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 9c451c5..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowView_autogen" - "FlowView_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make deleted file mode 100644 index dc9306a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts deleted file mode 100644 index 489309e..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make deleted file mode 100644 index c54b9c0..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include - -FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction -FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make -.PHONY : FlowView_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build: FlowView_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 3fbc41a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowView_automoc_json_extraction" - "meta_types/FlowView_json_file_list.txt" - "meta_types/FlowView_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 5e63eec..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 3ecb04d..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 9e6c9ba..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 22 - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 89246b3..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make deleted file mode 100644 index c654aac..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make +++ /dev/null @@ -1,122 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/FlowView_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_FlowView --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -MF CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp > CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s - -FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make -.PHONY : FlowView_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build: FlowView_qmlcache -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 62e3a63..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/FlowView_qmlcache_loader.cpp" - "CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/FlowView_qmlcache_autogen.dir/ParseCache.txt" - "FlowView_qmlcache_autogen" - "CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" - "CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o.d" - "CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/FlowView_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 7b37608..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for FlowView_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index 6c4d200..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for FlowView_qmlcache. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make deleted file mode 100644 index 1357e67..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for FlowView_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make deleted file mode 100644 index 4c9c614..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index a406b76..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make deleted file mode 100644 index afe5561..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowView_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp -_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/FlowView_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_FlowView --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qml_loader_file_list.rsp - -FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp -FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen -FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make -.PHONY : FlowView_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build: FlowView_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 6289740..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/FlowView_qmlcache_loader.cpp" - "CMakeFiles/FlowView_qmlcache_autogen" - "FlowView_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index 5a9a161..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 0d07e5a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make deleted file mode 100644 index b3e7ff3..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make +++ /dev/null @@ -1,111 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView.rsp - -FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint -FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make -.PHONY : FlowView_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build: FlowView_qmllint -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 755db1e..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowView_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make deleted file mode 100644 index a8c9025..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts deleted file mode 100644 index ad4668d..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_qmllint. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make deleted file mode 100644 index 62362ab..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make +++ /dev/null @@ -1,111 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_json.rsp - -FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json -FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make -.PHONY : FlowView_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build: FlowView_qmllint_json -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index a12497f..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowView_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index fe77e11..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 760ff96..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make deleted file mode 100644 index 9b26505..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make +++ /dev/null @@ -1,111 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmllint/FlowView_module.rsp - -FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module -FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make -.PHONY : FlowView_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build: FlowView_qmllint_module -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 92cb532..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowView_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 83d2401..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index fdc69d2..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 26acd33..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make deleted file mode 100644 index eed5842..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration: qml/FlowView/FlowView.qmltypes - -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qmltypes --import-name=FlowView --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.generated/FlowView.qmltypes - -qml/FlowView/FlowView.qmltypes: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/FlowView/FlowView.qmltypes - -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6flowview_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen: _deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target FlowView" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/FlowView_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json - -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json.gen -FlowView_qmltyperegistration: qml/FlowView/FlowView.qmltypes -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make -.PHONY : FlowView_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build: FlowView_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 24927e1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/FlowView/FlowView.qmltypes" - "CMakeFiles/FlowView_qmltyperegistration" - "flowview_qmltyperegistrations.cpp" - "meta_types/qt6flowview_debug_metatypes.json" - "meta_types/qt6flowview_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index fe8373f..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index c2d58ed..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make deleted file mode 100644 index e1bec7d..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 23 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake deleted file mode 100644 index c25c669..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make deleted file mode 100644 index 8718844..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make +++ /dev/null @@ -1,130 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make - -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: _deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc -_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource FlowView_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp --name FlowView_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/FlowView_raw_qml_0.qrc - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -MF CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp > CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s - -FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make -.PHONY : FlowView_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build: FlowView_resources_1 -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend: _deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index db2c774..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_FlowView_raw_qml_0.cpp" - "CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" - "CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/FlowView_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make deleted file mode 100644 index 8ec3219..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for FlowView_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts deleted file mode 100644 index fdcef10..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for FlowView_resources_1. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make deleted file mode 100644 index 6f027a2..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for FlowView_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make deleted file mode 100644 index 5037b29..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make deleted file mode 100644 index d199cf2..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make +++ /dev/null @@ -1,203 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowView_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make - -qml/FlowView/DefaultFlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying DefaultFlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/DefaultFlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/DefaultFlowEffect.qml - -qml/FlowView/SwipeInteraction.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying SwipeInteraction.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/SwipeInteraction.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/SwipeInteraction.qml - -qml/FlowView/FlowEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying FlowEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowEffect.qml - -qml/FlowView/FlowFadeEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying FlowFadeEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowFadeEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowFadeEffect.qml - -qml/FlowView/FlowPushLeftEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying FlowPushLeftEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushLeftEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushLeftEffect.qml - -qml/FlowView/FlowPushRightEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying FlowPushRightEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushRightEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushRightEffect.qml - -qml/FlowView/FlowSlideDownEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying FlowSlideDownEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideDownEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideDownEffect.qml - -qml/FlowView/FlowSlideLeftEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying FlowSlideLeftEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideLeftEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideLeftEffect.qml - -qml/FlowView/FlowSlideRightEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying FlowSlideRightEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideRightEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideRightEffect.qml - -qml/FlowView/FlowSlideUpEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying FlowSlideUpEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowSlideUpEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowSlideUpEffect.qml - -qml/FlowView/FlowMoveEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying FlowMoveEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowMoveEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowMoveEffect.qml - -qml/FlowView/FlowPushEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying FlowPushEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushEffect.qml - -qml/FlowView/FlowTransition.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying FlowTransition.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransition.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransition.qml - -qml/FlowView/FlowTransitionList.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying FlowTransitionList.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowTransitionList.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowTransitionList.qml - -qml/FlowView/FlowView.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying FlowView.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowView.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowView.qml - -qml/FlowView/FlowPushUpEffect.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying FlowPushUpEffect.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowPushUpEffect.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowPushUpEffect.qml - -qml/FlowView/FlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying FlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowItem.qml - -qml/FlowView/FlowDecision.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying FlowDecision.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowDecision.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowDecision.qml - -qml/FlowView/FlowWildcard.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying FlowWildcard.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowWildcard.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowWildcard.qml - -qml/FlowView/FlowActionArea.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying FlowActionArea.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowActionArea.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowActionArea.qml - -qml/FlowView/FlowState.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying FlowState.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/FlowState.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/FlowState.qml - -qml/FlowView/+DesignMode/FlowItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying +DesignMode/FlowItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowItem.qml - -qml/FlowView/+DesignMode/FlowView.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying +DesignMode/FlowView.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/+DesignMode/FlowView.qml /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/+DesignMode/FlowView.qml - -qml/FlowView/qmldir: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying qmldir to /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/qmldir /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView/qmldir - -FlowView_tooling: qml/FlowView/+DesignMode/FlowItem.qml -FlowView_tooling: qml/FlowView/+DesignMode/FlowView.qml -FlowView_tooling: qml/FlowView/DefaultFlowEffect.qml -FlowView_tooling: qml/FlowView/FlowActionArea.qml -FlowView_tooling: qml/FlowView/FlowDecision.qml -FlowView_tooling: qml/FlowView/FlowEffect.qml -FlowView_tooling: qml/FlowView/FlowFadeEffect.qml -FlowView_tooling: qml/FlowView/FlowItem.qml -FlowView_tooling: qml/FlowView/FlowMoveEffect.qml -FlowView_tooling: qml/FlowView/FlowPushEffect.qml -FlowView_tooling: qml/FlowView/FlowPushLeftEffect.qml -FlowView_tooling: qml/FlowView/FlowPushRightEffect.qml -FlowView_tooling: qml/FlowView/FlowPushUpEffect.qml -FlowView_tooling: qml/FlowView/FlowSlideDownEffect.qml -FlowView_tooling: qml/FlowView/FlowSlideLeftEffect.qml -FlowView_tooling: qml/FlowView/FlowSlideRightEffect.qml -FlowView_tooling: qml/FlowView/FlowSlideUpEffect.qml -FlowView_tooling: qml/FlowView/FlowState.qml -FlowView_tooling: qml/FlowView/FlowTransition.qml -FlowView_tooling: qml/FlowView/FlowTransitionList.qml -FlowView_tooling: qml/FlowView/FlowView.qml -FlowView_tooling: qml/FlowView/FlowWildcard.qml -FlowView_tooling: qml/FlowView/SwipeInteraction.qml -FlowView_tooling: qml/FlowView/qmldir -FlowView_tooling: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build.make -.PHONY : FlowView_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build: FlowView_tooling -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake deleted file mode 100644 index e4dd1fb..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,31 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/FlowView/+DesignMode/FlowItem.qml" - "../../../../../qml/FlowView/+DesignMode/FlowView.qml" - "../../../../../qml/FlowView/DefaultFlowEffect.qml" - "../../../../../qml/FlowView/FlowActionArea.qml" - "../../../../../qml/FlowView/FlowDecision.qml" - "../../../../../qml/FlowView/FlowEffect.qml" - "../../../../../qml/FlowView/FlowFadeEffect.qml" - "../../../../../qml/FlowView/FlowItem.qml" - "../../../../../qml/FlowView/FlowMoveEffect.qml" - "../../../../../qml/FlowView/FlowPushEffect.qml" - "../../../../../qml/FlowView/FlowPushLeftEffect.qml" - "../../../../../qml/FlowView/FlowPushRightEffect.qml" - "../../../../../qml/FlowView/FlowPushUpEffect.qml" - "../../../../../qml/FlowView/FlowSlideDownEffect.qml" - "../../../../../qml/FlowView/FlowSlideLeftEffect.qml" - "../../../../../qml/FlowView/FlowSlideRightEffect.qml" - "../../../../../qml/FlowView/FlowSlideUpEffect.qml" - "../../../../../qml/FlowView/FlowState.qml" - "../../../../../qml/FlowView/FlowTransition.qml" - "../../../../../qml/FlowView/FlowTransitionList.qml" - "../../../../../qml/FlowView/FlowView.qml" - "../../../../../qml/FlowView/FlowWildcard.qml" - "../../../../../qml/FlowView/SwipeInteraction.qml" - "../../../../../qml/FlowView/qmldir" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowView_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make deleted file mode 100644 index 6aa93fc..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowView_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts deleted file mode 100644 index 492ceb5..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowView_tooling. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make deleted file mode 100644 index a22a4f1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_tooling.dir/progress.make +++ /dev/null @@ -1,25 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 24 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 25 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = 26 -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = -CMAKE_PROGRESS_21 = 27 -CMAKE_PROGRESS_22 = -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake deleted file mode 100644 index 20771fa..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make deleted file mode 100644 index bad52f8..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp > CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -MF CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp > CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s - -# Object files for target FlowViewplugin -FlowViewplugin_OBJECTS = \ -"CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" - -# External object files for target FlowViewplugin -FlowViewplugin_EXTERNAL_OBJECTS = - -qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make -qml/FlowView/libFlowViewplugin.a: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/FlowView/libFlowViewplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FlowViewplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build: qml/FlowView/libFlowViewplugin.a -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake deleted file mode 100644 index 8948d42..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/FlowView/libFlowViewplugin.a" - "../../../../../qml/FlowView/libFlowViewplugin.pdb" - "CMakeFiles/FlowViewplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/FlowViewplugin_autogen.dir/ParseCache.txt" - "FlowViewplugin_autogen" - "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" - "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o.d" - "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/FlowViewplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 9c38f47..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/FlowView/libFlowViewplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make deleted file mode 100644 index 7adb548..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for FlowViewplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts deleted file mode 100644 index 553a0ae..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for FlowViewplugin. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make deleted file mode 100644 index 9bda647..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for FlowViewplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make deleted file mode 100644 index 416886b..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt deleted file mode 100644 index 644872a..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/FlowView/libFlowViewplugin.a CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/FlowView/libFlowViewplugin.a diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make deleted file mode 100644 index 9aaf079..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 28 - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index f4655b0..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=FlowView" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make deleted file mode 100644 index 9e1ff65..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowViewplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowViewplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/AutogenInfo.json Debug - -FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen -FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make -.PHONY : FlowViewplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build: FlowViewplugin_autogen -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index cf2442e..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowViewplugin_autogen" - "FlowViewplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowViewplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 782fd01..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowViewplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index fd3159f..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowViewplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 55a8ec4..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make deleted file mode 100644 index feb728f..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -MF CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp > CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s - -FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make -.PHONY : FlowViewplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build: FlowViewplugin_init -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index b1593a1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/FlowViewplugin_init_autogen.dir/ParseCache.txt" - "FlowViewplugin_init_autogen" - "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" - "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o.d" - "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/FlowViewplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make deleted file mode 100644 index ba1108f..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for FlowViewplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 34f5fe2..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for FlowViewplugin_init. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make deleted file mode 100644 index 6f4a999..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for FlowViewplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make deleted file mode 100644 index 961ade9..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 1b8d166..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make deleted file mode 100644 index ba2fa2e..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for FlowViewplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target FlowViewplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/AutogenInfo.json Debug - -FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen -FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make -.PHONY : FlowViewplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build: FlowViewplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview && $(CMAKE_COMMAND) -P CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index ea2ff3b..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/FlowViewplugin_init_autogen" - "FlowViewplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/FlowViewplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index c8710c1..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for FlowViewplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index 7e6ef02..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for FlowViewplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks deleted file mode 100644 index 8351c19..0000000 --- a/build/_deps/ds-build/src/imports/flowview/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -14 diff --git a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp deleted file mode 100644 index 45651a9..0000000 --- a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_FlowView(); -Q_GHS_KEEP_REFERENCE(qml_register_types_FlowView) - -class FlowViewPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - FlowViewPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_FlowView; - Q_UNUSED(registration) - } -}; - - - -#include "FlowViewplugin_FlowViewPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp b/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp deleted file mode 100644 index 9e27a33..0000000 --- a/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(FlowViewPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/flowview/Makefile b/build/_deps/ds-build/src/imports/flowview/Makefile deleted file mode 100644 index 2d88010..0000000 --- a/build/_deps/ds-build/src/imports/flowview/Makefile +++ /dev/null @@ -1,1264 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule - -# Convenience name for target. -FlowView: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/rule -.PHONY : FlowView - -# fast build rule for target. -FlowView/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build -.PHONY : FlowView/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule - -# Convenience name for target. -FlowView_automoc_json_extraction: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/rule -.PHONY : FlowView_automoc_json_extraction - -# fast build rule for target. -FlowView_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_automoc_json_extraction.dir/build -.PHONY : FlowView_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule - -# Convenience name for target. -FlowView_qmltyperegistration: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/rule -.PHONY : FlowView_qmltyperegistration - -# fast build rule for target. -FlowView_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmltyperegistration.dir/build -.PHONY : FlowView_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule - -# Convenience name for target. -FlowViewplugin: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/rule -.PHONY : FlowViewplugin - -# fast build rule for target. -FlowViewplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build -.PHONY : FlowViewplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule - -# Convenience name for target. -FlowView_qmllint: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/rule -.PHONY : FlowView_qmllint - -# fast build rule for target. -FlowView_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint.dir/build -.PHONY : FlowView_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule - -# Convenience name for target. -FlowView_qmllint_json: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/rule -.PHONY : FlowView_qmllint_json - -# fast build rule for target. -FlowView_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_json.dir/build -.PHONY : FlowView_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule - -# Convenience name for target. -FlowView_qmllint_module: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/rule -.PHONY : FlowView_qmllint_module - -# fast build rule for target. -FlowView_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmllint_module.dir/build -.PHONY : FlowView_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule - -# Convenience name for target. -FlowView_qmlcache: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/rule -.PHONY : FlowView_qmlcache - -# fast build rule for target. -FlowView_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build -.PHONY : FlowView_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule - -# Convenience name for target. -FlowView_resources_1: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/rule -.PHONY : FlowView_resources_1 - -# fast build rule for target. -FlowView_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build -.PHONY : FlowView_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule - -# Convenience name for target. -FlowViewplugin_init: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/rule -.PHONY : FlowViewplugin_init - -# fast build rule for target. -FlowViewplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build -.PHONY : FlowViewplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule - -# Convenience name for target. -FlowView_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/rule -.PHONY : FlowView_autogen - -# fast build rule for target. -FlowView_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_autogen.dir/build -.PHONY : FlowView_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule - -# Convenience name for target. -FlowViewplugin_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/rule -.PHONY : FlowViewplugin_autogen - -# fast build rule for target. -FlowViewplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_autogen.dir/build -.PHONY : FlowViewplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule - -# Convenience name for target. -FlowView_qmlcache_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/rule -.PHONY : FlowView_qmlcache_autogen - -# fast build rule for target. -FlowView_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache_autogen.dir/build -.PHONY : FlowView_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule - -# Convenience name for target. -FlowViewplugin_init_autogen: _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/rule -.PHONY : FlowViewplugin_init_autogen - -# fast build rule for target. -FlowViewplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init_autogen.dir/build -.PHONY : FlowViewplugin_init_autogen/fast - -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o - -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.i - -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s: .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.s - -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o - -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.i - -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s: .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.s - -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s: .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowActionArea_qml.o: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowActionArea_qml.i: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowActionArea_qml.s: .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowDecision_qml.o: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowDecision_qml.i: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowDecision_qml.s: .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowDecision_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowEffect_qml.o: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowEffect_qml.i: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowEffect_qml.s: .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.o: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.i: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.s: .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowItem_qml.o: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowItem_qml.i: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowItem_qml.s: .rcc/qmlcache/FlowView_FlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowItem_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.o: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.i: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.s: .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowPushEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowPushEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowPushEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s: .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s: .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowState_qml.o: .rcc/qmlcache/FlowView_FlowState_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowState_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowState_qml.i: .rcc/qmlcache/FlowView_FlowState_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowState_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowState_qml.s: .rcc/qmlcache/FlowView_FlowState_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowState_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowState_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowTransitionList_qml.o: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowTransitionList_qml.i: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowTransitionList_qml.s: .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowTransition_qml.o: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowTransition_qml.i: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowTransition_qml.s: .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowTransition_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowView_qml.o: .rcc/qmlcache/FlowView_FlowView_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowView_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowView_qml.i: .rcc/qmlcache/FlowView_FlowView_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowView_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowView_qml.s: .rcc/qmlcache/FlowView_FlowView_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowView_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowView_qml.cpp.s - -.rcc/qmlcache/FlowView_FlowWildcard_qml.o: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o - -.rcc/qmlcache/FlowView_FlowWildcard_qml.i: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.i - -.rcc/qmlcache/FlowView_FlowWildcard_qml.s: .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.s - -.rcc/qmlcache/FlowView_SwipeInteraction_qml.o: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.o - -# target to build an object file -.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o - -.rcc/qmlcache/FlowView_SwipeInteraction_qml.i: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.i - -.rcc/qmlcache/FlowView_SwipeInteraction_qml.s: .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s -.PHONY : .rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.s - -.rcc/qmlcache/FlowView_qmlcache_loader.o: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.o - -.rcc/qmlcache/FlowView_qmlcache_loader.i: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.i - -.rcc/qmlcache/FlowView_qmlcache_loader.s: .rcc/qmlcache/FlowView_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/FlowView_qmlcache_loader.cpp.s - -.rcc/qrc_FlowView_raw_qml_0.o: .rcc/qrc_FlowView_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_FlowView_raw_qml_0.o - -# target to build an object file -.rcc/qrc_FlowView_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.o - -.rcc/qrc_FlowView_raw_qml_0.i: .rcc/qrc_FlowView_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_FlowView_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_FlowView_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.i - -.rcc/qrc_FlowView_raw_qml_0.s: .rcc/qrc_FlowView_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_FlowView_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_FlowView_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_FlowView_raw_qml_0.cpp.s - -FlowView_autogen/mocs_compilation.o: FlowView_autogen/mocs_compilation.cpp.o -.PHONY : FlowView_autogen/mocs_compilation.o - -# target to build an object file -FlowView_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -.PHONY : FlowView_autogen/mocs_compilation.cpp.o - -FlowView_autogen/mocs_compilation.i: FlowView_autogen/mocs_compilation.cpp.i -.PHONY : FlowView_autogen/mocs_compilation.i - -# target to preprocess a source file -FlowView_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.i -.PHONY : FlowView_autogen/mocs_compilation.cpp.i - -FlowView_autogen/mocs_compilation.s: FlowView_autogen/mocs_compilation.cpp.s -.PHONY : FlowView_autogen/mocs_compilation.s - -# target to generate assembly for a file -FlowView_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.s -.PHONY : FlowView_autogen/mocs_compilation.cpp.s - -FlowView_qmlcache_autogen/mocs_compilation.o: FlowView_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -FlowView_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.o - -FlowView_qmlcache_autogen/mocs_compilation.i: FlowView_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -FlowView_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.i - -FlowView_qmlcache_autogen/mocs_compilation.s: FlowView_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -FlowView_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : FlowView_qmlcache_autogen/mocs_compilation.cpp.s - -FlowViewplugin_FlowViewPlugin.o: FlowViewplugin_FlowViewPlugin.cpp.o -.PHONY : FlowViewplugin_FlowViewPlugin.o - -# target to build an object file -FlowViewplugin_FlowViewPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -.PHONY : FlowViewplugin_FlowViewPlugin.cpp.o - -FlowViewplugin_FlowViewPlugin.i: FlowViewplugin_FlowViewPlugin.cpp.i -.PHONY : FlowViewplugin_FlowViewPlugin.i - -# target to preprocess a source file -FlowViewplugin_FlowViewPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.i -.PHONY : FlowViewplugin_FlowViewPlugin.cpp.i - -FlowViewplugin_FlowViewPlugin.s: FlowViewplugin_FlowViewPlugin.cpp.s -.PHONY : FlowViewplugin_FlowViewPlugin.s - -# target to generate assembly for a file -FlowViewplugin_FlowViewPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.s -.PHONY : FlowViewplugin_FlowViewPlugin.cpp.s - -FlowViewplugin_autogen/mocs_compilation.o: FlowViewplugin_autogen/mocs_compilation.cpp.o -.PHONY : FlowViewplugin_autogen/mocs_compilation.o - -# target to build an object file -FlowViewplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.o - -FlowViewplugin_autogen/mocs_compilation.i: FlowViewplugin_autogen/mocs_compilation.cpp.i -.PHONY : FlowViewplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -FlowViewplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.i -.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.i - -FlowViewplugin_autogen/mocs_compilation.s: FlowViewplugin_autogen/mocs_compilation.cpp.s -.PHONY : FlowViewplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -FlowViewplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.s -.PHONY : FlowViewplugin_autogen/mocs_compilation.cpp.s - -FlowViewplugin_init.o: FlowViewplugin_init.cpp.o -.PHONY : FlowViewplugin_init.o - -# target to build an object file -FlowViewplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -.PHONY : FlowViewplugin_init.cpp.o - -FlowViewplugin_init.i: FlowViewplugin_init.cpp.i -.PHONY : FlowViewplugin_init.i - -# target to preprocess a source file -FlowViewplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.i -.PHONY : FlowViewplugin_init.cpp.i - -FlowViewplugin_init.s: FlowViewplugin_init.cpp.s -.PHONY : FlowViewplugin_init.s - -# target to generate assembly for a file -FlowViewplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.s -.PHONY : FlowViewplugin_init.cpp.s - -FlowViewplugin_init_autogen/mocs_compilation.o: FlowViewplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.o - -# target to build an object file -FlowViewplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.o - -FlowViewplugin_init_autogen/mocs_compilation.i: FlowViewplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -FlowViewplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.i - -FlowViewplugin_init_autogen/mocs_compilation.s: FlowViewplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -FlowViewplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : FlowViewplugin_init_autogen/mocs_compilation.cpp.s - -flowview_qmltyperegistrations.o: flowview_qmltyperegistrations.cpp.o -.PHONY : flowview_qmltyperegistrations.o - -# target to build an object file -flowview_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -.PHONY : flowview_qmltyperegistrations.cpp.o - -flowview_qmltyperegistrations.i: flowview_qmltyperegistrations.cpp.i -.PHONY : flowview_qmltyperegistrations.i - -# target to preprocess a source file -flowview_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.i -.PHONY : flowview_qmltyperegistrations.cpp.i - -flowview_qmltyperegistrations.s: flowview_qmltyperegistrations.cpp.s -.PHONY : flowview_qmltyperegistrations.s - -# target to generate assembly for a file -flowview_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/build.make _deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.s -.PHONY : flowview_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... FlowView_autogen" - @echo "... FlowView_automoc_json_extraction" - @echo "... FlowView_qmlcache_autogen" - @echo "... FlowView_qmllint" - @echo "... FlowView_qmllint_json" - @echo "... FlowView_qmllint_module" - @echo "... FlowView_qmltyperegistration" - @echo "... FlowViewplugin_autogen" - @echo "... FlowViewplugin_init_autogen" - @echo "... FlowView" - @echo "... FlowView_qmlcache" - @echo "... FlowView_resources_1" - @echo "... FlowView_tooling" - @echo "... FlowViewplugin" - @echo "... FlowViewplugin_init" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.o" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.i" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.s" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.o" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.i" - @echo "... .rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.s" - @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_DefaultFlowEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowActionArea_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowDecision_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowFadeEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowItem_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowMoveEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowPushEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowPushRightEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowPushUpEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowState_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowState_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowState_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowTransitionList_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowTransition_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowView_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowView_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowView_qml.s" - @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.o" - @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.i" - @echo "... .rcc/qmlcache/FlowView_FlowWildcard_qml.s" - @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.o" - @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.i" - @echo "... .rcc/qmlcache/FlowView_SwipeInteraction_qml.s" - @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.o" - @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.i" - @echo "... .rcc/qmlcache/FlowView_qmlcache_loader.s" - @echo "... .rcc/qrc_FlowView_raw_qml_0.o" - @echo "... .rcc/qrc_FlowView_raw_qml_0.i" - @echo "... .rcc/qrc_FlowView_raw_qml_0.s" - @echo "... FlowView_autogen/mocs_compilation.o" - @echo "... FlowView_autogen/mocs_compilation.i" - @echo "... FlowView_autogen/mocs_compilation.s" - @echo "... FlowView_qmlcache_autogen/mocs_compilation.o" - @echo "... FlowView_qmlcache_autogen/mocs_compilation.i" - @echo "... FlowView_qmlcache_autogen/mocs_compilation.s" - @echo "... FlowViewplugin_FlowViewPlugin.o" - @echo "... FlowViewplugin_FlowViewPlugin.i" - @echo "... FlowViewplugin_FlowViewPlugin.s" - @echo "... FlowViewplugin_autogen/mocs_compilation.o" - @echo "... FlowViewplugin_autogen/mocs_compilation.i" - @echo "... FlowViewplugin_autogen/mocs_compilation.s" - @echo "... FlowViewplugin_init.o" - @echo "... FlowViewplugin_init.i" - @echo "... FlowViewplugin_init.s" - @echo "... FlowViewplugin_init_autogen/mocs_compilation.o" - @echo "... FlowViewplugin_init_autogen/mocs_compilation.i" - @echo "... FlowViewplugin_init_autogen/mocs_compilation.s" - @echo "... flowview_qmltyperegistrations.o" - @echo "... flowview_qmltyperegistrations.i" - @echo "... flowview_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake b/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake deleted file mode 100644 index 14ee241..0000000 --- a/build/_deps/ds-build/src/imports/flowview/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json b/build/_deps/ds-build/src/imports/flowview/meta_types/qt6flowview_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt b/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/flowview/qmltypes/FlowView_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc deleted file mode 100644 index ccd47ff..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc +++ /dev/null @@ -1,12 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml - - - diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc deleted file mode 100644 index 41eb4f4..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp deleted file mode 100644 index a66fa90..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp +++ /dev/null @@ -1,7 +0,0 @@ -/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml -/QtQuick/Studio/LogicHelper/RangeMapper.qml -/QtQuick/Studio/LogicHelper/MinMaxMapper.qml -/QtQuick/Studio/LogicHelper/StringMapper.qml -/QtQuick/Studio/LogicHelper/OrOperator.qml -/QtQuick/Studio/LogicHelper/AndOperator.qml -/QtQuick/Studio/LogicHelper/NotOperator.qml diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp deleted file mode 100644 index 543e164..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp +++ /dev/null @@ -1,18 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp deleted file mode 100644 index b9080fd..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp +++ /dev/null @@ -1,20 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioLogicHelper_qmllint.json diff --git a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp b/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp deleted file mode 100644 index 5d98921..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc ---module -QtQuick.Studio.LogicHelper diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake deleted file mode 100644 index 6fed20d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake +++ /dev/null @@ -1,33 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make deleted file mode 100644 index ddb184e..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make +++ /dev/null @@ -1,343 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make - -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: _deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json - -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes --import-name=QtQuick.Studio.LogicHelper --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated/QuickStudioLogicHelper.qmltypes - -qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/BidirectionalBinding.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/RangeMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/MinMaxMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/StringMapper.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/OrOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/AndOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp: qml/QtQuick/Studio/LogicHelper/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/LogicHelper/NotOperator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml - -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating meta_types/qt6quickstudiologichelper_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp > CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -MF CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp > CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s - -# Object files for target QuickStudioLogicHelper -QuickStudioLogicHelper_OBJECTS = \ -"CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" - -# External object files for target QuickStudioLogicHelper -QuickStudioLogicHelper_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make -_deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Linking CXX static library libQuickStudioLogicHelper.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioLogicHelper.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build: _deps/ds-build/src/imports/logichelper/libQuickStudioLogicHelper.a -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake deleted file mode 100644 index df699db..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean.cmake +++ /dev/null @@ -1,41 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" - ".rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp" - ".rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp" - "CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt" - "QuickStudioLogicHelper_autogen" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o.d" - "libQuickStudioLogicHelper.a" - "libQuickStudioLogicHelper.pdb" - "meta_types/qt6quickstudiologichelper_debug_metatypes.json" - "meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen" - "quickstudiologichelper_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake deleted file mode 100644 index 35c82fe..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioLogicHelper.a" -) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make deleted file mode 100644 index 8071df2..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelper. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts deleted file mode 100644 index cd542ae..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make deleted file mode 100644 index 7a39b96..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelper. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make deleted file mode 100644 index b59b2f9..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt deleted file mode 100644 index bfc3ef6..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioLogicHelper.a CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioLogicHelper.a diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make deleted file mode 100644 index 2caca34..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/progress.make +++ /dev/null @@ -1,21 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 80 -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = 81 -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = 82 -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json deleted file mode 100644 index ebe3704..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make deleted file mode 100644 index fc4d54c..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json Debug - -QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen -QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make -.PHONY : QuickStudioLogicHelper_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build: QuickStudioLogicHelper_autogen -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 2369211..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelper_autogen" - "QuickStudioLogicHelper_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make deleted file mode 100644 index d4e3e4d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts deleted file mode 100644 index 5e7c5a2..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make deleted file mode 100644 index be4caf3..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include - -QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction -QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioLogicHelper_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build: QuickStudioLogicHelper_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 1421146..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction" - "meta_types/QuickStudioLogicHelper_json_file_list.txt" - "meta_types/QuickStudioLogicHelper_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 01037c6..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 6ef7627..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 9cd4e35..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make deleted file mode 100644 index d19907b..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioLogicHelper --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp > CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s - -QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make -.PHONY : QuickStudioLogicHelper_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build: QuickStudioLogicHelper_qmlcache -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index caa7aa6..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioLogicHelper_qmlcache_autogen" - "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 878b9af..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelper_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index 8424833..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_qmlcache. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make deleted file mode 100644 index 10a1d1b..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelper_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make deleted file mode 100644 index 913ca0c..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make deleted file mode 100644 index b8bc3f3..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 83 -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index 28f9d01..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make deleted file mode 100644 index 81c0c61..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelper_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioLogicHelper --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qml_loader_file_list.rsp - -QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp -QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen -QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioLogicHelper_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build: QuickStudioLogicHelper_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 196318b..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen" - "QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index d1e9f86..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 8357019..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make deleted file mode 100644 index 4bf91be..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper.rsp - -QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint -QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make -.PHONY : QuickStudioLogicHelper_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build: QuickStudioLogicHelper_qmllint -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 5dff0b3..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelper_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make deleted file mode 100644 index 3df6501..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts deleted file mode 100644 index f0d2498..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make deleted file mode 100644 index b8ca261..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_json.rsp - -QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json -QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make -.PHONY : QuickStudioLogicHelper_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build: QuickStudioLogicHelper_qmllint_json -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 4f73d5e..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelper_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 033249d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index ea61a2d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make deleted file mode 100644 index 49fa40b..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmllint/QuickStudioLogicHelper_module.rsp - -QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module -QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make -.PHONY : QuickStudioLogicHelper_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build: QuickStudioLogicHelper_qmllint_module -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index e174825..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelper_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 5a82e01..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index b5894ec..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 10b6e38..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make deleted file mode 100644 index 6e01f59..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes - -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes --import-name=QtQuick.Studio.LogicHelper --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.generated/QuickStudioLogicHelper.qmltypes - -qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes - -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiologichelper_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen: _deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioLogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/QuickStudioLogicHelper_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json - -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp -QuickStudioLogicHelper_qmltyperegistration: qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make -.PHONY : QuickStudioLogicHelper_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build: QuickStudioLogicHelper_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 182eed8..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper.qmltypes" - "CMakeFiles/QuickStudioLogicHelper_qmltyperegistration" - "meta_types/qt6quickstudiologichelper_debug_metatypes.json" - "meta_types/qt6quickstudiologichelper_debug_metatypes.json.gen" - "quickstudiologichelper_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 82cd35a..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 7b8b44d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 7f02109..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make deleted file mode 100644 index b9cc0cc..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make - -_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: qml/QtQuick/Studio/LogicHelper/qmldir -_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: _deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_LogicHelper" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp --name qmake_QtQuick_Studio_LogicHelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmake_QtQuick_Studio_LogicHelper.qrc - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp > CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s - -QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make -.PHONY : QuickStudioLogicHelper_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build: QuickStudioLogicHelper_resources_1 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index e80ed60..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp" - "CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" - "CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelper_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make deleted file mode 100644 index 406944c..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelper_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts deleted file mode 100644 index e921481..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_resources_1. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make deleted file mode 100644 index 0f4b2f3..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelper_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make deleted file mode 100644 index 6047416..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make deleted file mode 100644 index 7b8681c..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 84 -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake deleted file mode 100644 index e52fe48..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make deleted file mode 100644 index 2609ad1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make +++ /dev/null @@ -1,113 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make - -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: _deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc -_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioLogicHelper_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp --name QuickStudioLogicHelper_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/QuickStudioLogicHelper_raw_qml_0.qrc - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp > CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s - -QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make -.PHONY : QuickStudioLogicHelper_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build: QuickStudioLogicHelper_resources_2 -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend: _deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index fd466e0..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp" - "CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelper_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make deleted file mode 100644 index e969352..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelper_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 041dd4a..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelper_resources_2. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make deleted file mode 100644 index c63bde9..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelper_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make deleted file mode 100644 index 6047416..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make deleted file mode 100644 index 1c8cdf5..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make +++ /dev/null @@ -1,118 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelper_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make - -qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying BidirectionalBinding.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/BidirectionalBinding.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml - -qml/QtQuick/Studio/LogicHelper/RangeMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying RangeMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/RangeMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml - -qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying MinMaxMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/MinMaxMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml - -qml/QtQuick/Studio/LogicHelper/StringMapper.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying StringMapper.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/StringMapper.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml - -qml/QtQuick/Studio/LogicHelper/OrOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying OrOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/OrOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml - -qml/QtQuick/Studio/LogicHelper/AndOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying AndOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/AndOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml - -qml/QtQuick/Studio/LogicHelper/NotOperator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying NotOperator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/NotOperator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml - -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/AndOperator.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/NotOperator.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/OrOperator.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/RangeMapper.qml -QuickStudioLogicHelper_tooling: qml/QtQuick/Studio/LogicHelper/StringMapper.qml -QuickStudioLogicHelper_tooling: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build.make -.PHONY : QuickStudioLogicHelper_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build: QuickStudioLogicHelper_tooling -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 8478270..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/LogicHelper/AndOperator.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/NotOperator.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/OrOperator.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/RangeMapper.qml" - "../../../../../qml/QtQuick/Studio/LogicHelper/StringMapper.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelper_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make deleted file mode 100644 index 0adafd1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelper_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts deleted file mode 100644 index ca4376b..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelper_tooling. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make deleted file mode 100644 index 4b66c63..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_tooling.dir/progress.make +++ /dev/null @@ -1,8 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 85 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake deleted file mode 100644 index 7010fe8..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make deleted file mode 100644 index e92fa7f..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp > CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s - -# Object files for target QuickStudioLogicHelperplugin -QuickStudioLogicHelperplugin_OBJECTS = \ -"CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" - -# External object files for target QuickStudioLogicHelperplugin -QuickStudioLogicHelperplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make -qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build: qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake deleted file mode 100644 index d13e07d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" - "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.pdb" - "CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/ParseCache.txt" - "QuickStudioLogicHelperplugin_autogen" - "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" - "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index c48cbe1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make deleted file mode 100644 index b7426ce..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelperplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts deleted file mode 100644 index 77a3235..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelperplugin. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make deleted file mode 100644 index cc33e89..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelperplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make deleted file mode 100644 index bdf40c1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt deleted file mode 100644 index f639cdd..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/LogicHelper/libQuickStudioLogicHelperplugin.a diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make deleted file mode 100644 index 670cba8..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 86 -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index e80abba..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.LogicHelper" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make deleted file mode 100644 index ece8786..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelperplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelperplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen -QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make -.PHONY : QuickStudioLogicHelperplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build: QuickStudioLogicHelperplugin_autogen -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 5092acd..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelperplugin_autogen" - "QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 94899e1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelperplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index ab56083..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelperplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake deleted file mode 100644 index ccd36cd..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make deleted file mode 100644 index 6d81476..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -MF CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp > CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s - -QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make -.PHONY : QuickStudioLogicHelperplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build: QuickStudioLogicHelperplugin_init -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 1eb0f3d..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioLogicHelperplugin_init_autogen" - "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" - "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioLogicHelperplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make deleted file mode 100644 index bc2609a..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioLogicHelperplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 8286d99..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioLogicHelperplugin_init. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make deleted file mode 100644 index d8926cc..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioLogicHelperplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make deleted file mode 100644 index a100dcd..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index f9d78c3..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make deleted file mode 100644 index a1065ff..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioLogicHelperplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioLogicHelperplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen -QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make -.PHONY : QuickStudioLogicHelperplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build: QuickStudioLogicHelperplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 914ffb9..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioLogicHelperplugin_init_autogen" - "QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index 9b8e0c2..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioLogicHelperplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index a35ee86..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioLogicHelperplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks deleted file mode 100644 index 7f8f011..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -7 diff --git a/build/_deps/ds-build/src/imports/logichelper/Makefile b/build/_deps/ds-build/src/imports/logichelper/Makefile deleted file mode 100644 index 600db8a..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/Makefile +++ /dev/null @@ -1,874 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/rule -.PHONY : QuickStudioLogicHelper - -# fast build rule for target. -QuickStudioLogicHelper/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build -.PHONY : QuickStudioLogicHelper/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_automoc_json_extraction: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/rule -.PHONY : QuickStudioLogicHelper_automoc_json_extraction - -# fast build rule for target. -QuickStudioLogicHelper_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_automoc_json_extraction.dir/build -.PHONY : QuickStudioLogicHelper_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmltyperegistration: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/rule -.PHONY : QuickStudioLogicHelper_qmltyperegistration - -# fast build rule for target. -QuickStudioLogicHelper_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmltyperegistration.dir/build -.PHONY : QuickStudioLogicHelper_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_resources_1: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/rule -.PHONY : QuickStudioLogicHelper_resources_1 - -# fast build rule for target. -QuickStudioLogicHelper_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build -.PHONY : QuickStudioLogicHelper_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/rule -.PHONY : QuickStudioLogicHelperplugin - -# fast build rule for target. -QuickStudioLogicHelperplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build -.PHONY : QuickStudioLogicHelperplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint - -# fast build rule for target. -QuickStudioLogicHelper_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint.dir/build -.PHONY : QuickStudioLogicHelper_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint_json: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint_json - -# fast build rule for target. -QuickStudioLogicHelper_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_json.dir/build -.PHONY : QuickStudioLogicHelper_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmllint_module: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/rule -.PHONY : QuickStudioLogicHelper_qmllint_module - -# fast build rule for target. -QuickStudioLogicHelper_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmllint_module.dir/build -.PHONY : QuickStudioLogicHelper_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmlcache: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/rule -.PHONY : QuickStudioLogicHelper_qmlcache - -# fast build rule for target. -QuickStudioLogicHelper_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build -.PHONY : QuickStudioLogicHelper_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_resources_2: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/rule -.PHONY : QuickStudioLogicHelper_resources_2 - -# fast build rule for target. -QuickStudioLogicHelper_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build -.PHONY : QuickStudioLogicHelper_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_init: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/rule -.PHONY : QuickStudioLogicHelperplugin_init - -# fast build rule for target. -QuickStudioLogicHelperplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build -.PHONY : QuickStudioLogicHelperplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/rule -.PHONY : QuickStudioLogicHelper_autogen - -# fast build rule for target. -QuickStudioLogicHelper_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_autogen.dir/build -.PHONY : QuickStudioLogicHelper_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/rule -.PHONY : QuickStudioLogicHelperplugin_autogen - -# fast build rule for target. -QuickStudioLogicHelperplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_autogen.dir/build -.PHONY : QuickStudioLogicHelperplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelper_qmlcache_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/rule -.PHONY : QuickStudioLogicHelper_qmlcache_autogen - -# fast build rule for target. -QuickStudioLogicHelper_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache_autogen.dir/build -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioLogicHelperplugin_init_autogen: _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/rule -.PHONY : QuickStudioLogicHelperplugin_init_autogen - -# fast build rule for target. -QuickStudioLogicHelperplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init_autogen.dir/build -.PHONY : QuickStudioLogicHelperplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s: .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.s - -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s: .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s: .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s: .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.s - -QuickStudioLogicHelper_autogen/mocs_compilation.o: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o - -QuickStudioLogicHelper_autogen/mocs_compilation.i: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.i - -QuickStudioLogicHelper_autogen/mocs_compilation.s: QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelper_autogen/mocs_compilation.cpp.s - -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s: QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o - -# target to build an object file -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o - -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i - -# target to preprocess a source file -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.i - -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s: QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s - -# target to generate assembly for a file -QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s -.PHONY : QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.s - -QuickStudioLogicHelperplugin_autogen/mocs_compilation.o: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o - -QuickStudioLogicHelperplugin_autogen/mocs_compilation.i: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.i - -QuickStudioLogicHelperplugin_autogen/mocs_compilation.s: QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.s - -QuickStudioLogicHelperplugin_init.o: QuickStudioLogicHelperplugin_init.cpp.o -.PHONY : QuickStudioLogicHelperplugin_init.o - -# target to build an object file -QuickStudioLogicHelperplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -.PHONY : QuickStudioLogicHelperplugin_init.cpp.o - -QuickStudioLogicHelperplugin_init.i: QuickStudioLogicHelperplugin_init.cpp.i -.PHONY : QuickStudioLogicHelperplugin_init.i - -# target to preprocess a source file -QuickStudioLogicHelperplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.i -.PHONY : QuickStudioLogicHelperplugin_init.cpp.i - -QuickStudioLogicHelperplugin_init.s: QuickStudioLogicHelperplugin_init.cpp.s -.PHONY : QuickStudioLogicHelperplugin_init.s - -# target to generate assembly for a file -QuickStudioLogicHelperplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.s -.PHONY : QuickStudioLogicHelperplugin_init.cpp.s - -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s: QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.s - -quickstudiologichelper_qmltyperegistrations.o: quickstudiologichelper_qmltyperegistrations.cpp.o -.PHONY : quickstudiologichelper_qmltyperegistrations.o - -# target to build an object file -quickstudiologichelper_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.o - -quickstudiologichelper_qmltyperegistrations.i: quickstudiologichelper_qmltyperegistrations.cpp.i -.PHONY : quickstudiologichelper_qmltyperegistrations.i - -# target to preprocess a source file -quickstudiologichelper_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.i -.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.i - -quickstudiologichelper_qmltyperegistrations.s: quickstudiologichelper_qmltyperegistrations.cpp.s -.PHONY : quickstudiologichelper_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudiologichelper_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/build.make _deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.s -.PHONY : quickstudiologichelper_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioLogicHelper_autogen" - @echo "... QuickStudioLogicHelper_automoc_json_extraction" - @echo "... QuickStudioLogicHelper_qmlcache_autogen" - @echo "... QuickStudioLogicHelper_qmllint" - @echo "... QuickStudioLogicHelper_qmllint_json" - @echo "... QuickStudioLogicHelper_qmllint_module" - @echo "... QuickStudioLogicHelper_qmltyperegistration" - @echo "... QuickStudioLogicHelperplugin_autogen" - @echo "... QuickStudioLogicHelperplugin_init_autogen" - @echo "... QuickStudioLogicHelper" - @echo "... QuickStudioLogicHelper_qmlcache" - @echo "... QuickStudioLogicHelper_resources_1" - @echo "... QuickStudioLogicHelper_resources_2" - @echo "... QuickStudioLogicHelper_tooling" - @echo "... QuickStudioLogicHelperplugin" - @echo "... QuickStudioLogicHelperplugin_init" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.s" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioLogicHelper_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_LogicHelper.s" - @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.o" - @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.i" - @echo "... QuickStudioLogicHelper_autogen/mocs_compilation.s" - @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.o" - @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.i" - @echo "... QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.s" - @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioLogicHelperplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioLogicHelperplugin_init.o" - @echo "... QuickStudioLogicHelperplugin_init.i" - @echo "... QuickStudioLogicHelperplugin_init.s" - @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudiologichelper_qmltyperegistrations.o" - @echo "... quickstudiologichelper_qmltyperegistrations.i" - @echo "... quickstudiologichelper_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp deleted file mode 100644 index 01d8c37..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_LogicHelper(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_LogicHelper) - -class QtQuick_Studio_LogicHelperPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_LogicHelperPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_LogicHelper; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp b/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp deleted file mode 100644 index d13e2c6..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_LogicHelperPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake b/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake deleted file mode 100644 index 73c18f2..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json b/build/_deps/ds-build/src/imports/logichelper/meta_types/qt6quickstudiologichelper_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt b/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/logichelper/qmltypes/QuickStudioLogicHelper_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc deleted file mode 100644 index 784f085..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc +++ /dev/null @@ -1,8 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml - - - diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc b/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc deleted file mode 100644 index 35a4827..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp deleted file mode 100644 index f5c0c34..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp +++ /dev/null @@ -1,3 +0,0 @@ -/QtQuick/Studio/MultiText/MultiTextElement.qml -/QtQuick/Studio/MultiText/MultiTextItem.qml -/QtQuick/Studio/MultiText/MultiTextException.qml diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp deleted file mode 100644 index 89139ec..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp +++ /dev/null @@ -1,14 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp deleted file mode 100644 index cbd1626..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp +++ /dev/null @@ -1,16 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioMultiText_qmllint.json diff --git a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp b/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp deleted file mode 100644 index 249c25d..0000000 --- a/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc ---module -QtQuick.Studio.MultiText diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake deleted file mode 100644 index 4a58007..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make deleted file mode 100644 index e243b8f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make +++ /dev/null @@ -1,235 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make - -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: _deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json - -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes --import-name=QtQuick.Studio.MultiText --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated/QuickStudioMultiText.qmltypes - -qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes - -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextElement.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml - -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextItem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml - -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp: qml/QtQuick/Studio/MultiText/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/MultiText/MultiTextException.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml - -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating meta_types/qt6quickstudiomultitext_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp > CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -MF CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp > CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s - -# Object files for target QuickStudioMultiText -QuickStudioMultiText_OBJECTS = \ -"CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" \ -"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" \ -"CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" - -# External object files for target QuickStudioMultiText -QuickStudioMultiText_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make -_deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Linking CXX static library libQuickStudioMultiText.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioMultiText.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build: _deps/ds-build/src/imports/multitext/libQuickStudioMultiText.a -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake deleted file mode 100644 index d4e258f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean.cmake +++ /dev/null @@ -1,29 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" - ".rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp" - ".rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp" - ".rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp" - "CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt" - "QuickStudioMultiText_autogen" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o.d" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o.d" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" - "CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o.d" - "CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o.d" - "libQuickStudioMultiText.a" - "libQuickStudioMultiText.pdb" - "meta_types/qt6quickstudiomultitext_debug_metatypes.json" - "meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen" - "quickstudiomultitext_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiText.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake deleted file mode 100644 index 9e1e47f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioMultiText.a" -) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make deleted file mode 100644 index 2f6a84c..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiText. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts deleted file mode 100644 index 29d8fb6..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiText. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make deleted file mode 100644 index 43b3a33..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiText. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make deleted file mode 100644 index 846cce8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt deleted file mode 100644 index 4bcbdcf..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioMultiText.a CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioMultiText.a diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make deleted file mode 100644 index 47640f3..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/progress.make +++ /dev/null @@ -1,13 +0,0 @@ -CMAKE_PROGRESS_1 = 87 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 88 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json deleted file mode 100644 index d562237..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make deleted file mode 100644 index 822394b..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json Debug - -QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen -QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make -.PHONY : QuickStudioMultiText_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build: QuickStudioMultiText_autogen -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 12180b2..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiText_autogen" - "QuickStudioMultiText_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make deleted file mode 100644 index 75a7599..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts deleted file mode 100644 index 5a71ea5..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make deleted file mode 100644 index d19385f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include - -QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction -QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioMultiText_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build: QuickStudioMultiText_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index db223e3..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiText_automoc_json_extraction" - "meta_types/QuickStudioMultiText_json_file_list.txt" - "meta_types/QuickStudioMultiText_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 742edc9..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index a4133b0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 690660a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 89 - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index d850811..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make deleted file mode 100644 index e694393..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioMultiText --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp > CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s - -QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make -.PHONY : QuickStudioMultiText_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build: QuickStudioMultiText_qmlcache -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 637e32a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioMultiText_qmlcache_autogen" - "CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiText_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 1381f51..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiText_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index c3e3180..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_qmlcache. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make deleted file mode 100644 index 0aac7cb..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiText_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make deleted file mode 100644 index f8fb955..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index 7bd10b8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make deleted file mode 100644 index 51d248e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiText_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioMultiText --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qml_loader_file_list.rsp - -QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp -QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen -QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioMultiText_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build: QuickStudioMultiText_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index dc29c72..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioMultiText_qmlcache_autogen" - "QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index b51dee4..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index cc5657e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make deleted file mode 100644 index c7f45c8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make +++ /dev/null @@ -1,91 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText.rsp - -QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint -QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make -.PHONY : QuickStudioMultiText_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build: QuickStudioMultiText_qmllint -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 4839dc8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiText_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make deleted file mode 100644 index 727daf8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 161b0a7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make deleted file mode 100644 index d73417d..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make +++ /dev/null @@ -1,91 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_json.rsp - -QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json -QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make -.PHONY : QuickStudioMultiText_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build: QuickStudioMultiText_qmllint_json -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 636f4e5..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiText_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index eb4f26d..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index e44d7c1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make deleted file mode 100644 index 45c06b2..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make +++ /dev/null @@ -1,91 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmllint/QuickStudioMultiText_module.rsp - -QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module -QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make -.PHONY : QuickStudioMultiText_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build: QuickStudioMultiText_qmllint_module -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 08c8a5f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiText_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index ebdf71e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 5c374ef..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index fe717b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make deleted file mode 100644 index a8820e0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes - -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes --import-name=QtQuick.Studio.MultiText --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.generated/QuickStudioMultiText.qmltypes - -qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes - -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudiomultitext_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen: _deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioMultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/QuickStudioMultiText_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json - -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp -QuickStudioMultiText_qmltyperegistration: qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make -.PHONY : QuickStudioMultiText_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build: QuickStudioMultiText_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 29a526f..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/MultiText/QuickStudioMultiText.qmltypes" - "CMakeFiles/QuickStudioMultiText_qmltyperegistration" - "meta_types/qt6quickstudiomultitext_debug_metatypes.json" - "meta_types/qt6quickstudiomultitext_debug_metatypes.json.gen" - "quickstudiomultitext_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 686a9a1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 86a5a66..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make deleted file mode 100644 index c3045dd..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 90 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake deleted file mode 100644 index f49fa5e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make deleted file mode 100644 index 8b441b1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make - -_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: qml/QtQuick/Studio/MultiText/qmldir -_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: _deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc -_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_MultiText" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp --name qmake_QtQuick_Studio_MultiText /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmake_QtQuick_Studio_MultiText.qrc - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -MF CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp > CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s - -QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make -.PHONY : QuickStudioMultiText_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build: QuickStudioMultiText_resources_1 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 0140ef7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp" - "CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" - "CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiText_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make deleted file mode 100644 index 7ad89be..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiText_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 49ce5eb..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_resources_1. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make deleted file mode 100644 index b17d721..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiText_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make deleted file mode 100644 index 640f10a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake deleted file mode 100644 index b6196a1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make deleted file mode 100644 index d9336c9..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make +++ /dev/null @@ -1,109 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make - -_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml -_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml -_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml -_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: _deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc -_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioMultiText_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp --name QuickStudioMultiText_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/QuickStudioMultiText_raw_qml_0.qrc - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp > CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s - -QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make -.PHONY : QuickStudioMultiText_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build: QuickStudioMultiText_resources_2 -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend: _deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index bdd6365..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp" - "CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiText_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make deleted file mode 100644 index b18b810..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiText_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 216d7c8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiText_resources_2. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make deleted file mode 100644 index d7e0287..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiText_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make deleted file mode 100644 index 640f10a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make deleted file mode 100644 index 7ce86b0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 91 - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make deleted file mode 100644 index 7bef016..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make +++ /dev/null @@ -1,98 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiText_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make - -qml/QtQuick/Studio/MultiText/MultiTextElement.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying MultiTextElement.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextElement.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml - -qml/QtQuick/Studio/MultiText/MultiTextItem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying MultiTextItem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextItem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml - -qml/QtQuick/Studio/MultiText/MultiTextException.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying MultiTextException.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/MultiTextException.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml - -QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextElement.qml -QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextException.qml -QuickStudioMultiText_tooling: qml/QtQuick/Studio/MultiText/MultiTextItem.qml -QuickStudioMultiText_tooling: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build.make -.PHONY : QuickStudioMultiText_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build: QuickStudioMultiText_tooling -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 7711f7b..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/MultiText/MultiTextElement.qml" - "../../../../../qml/QtQuick/Studio/MultiText/MultiTextException.qml" - "../../../../../qml/QtQuick/Studio/MultiText/MultiTextItem.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiText_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make deleted file mode 100644 index 6c22f0a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiText_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts deleted file mode 100644 index 6cc61eb..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiText_tooling. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_tooling.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake deleted file mode 100644 index b281fdf..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make deleted file mode 100644 index b86d880..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp > CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s - -# Object files for target QuickStudioMultiTextplugin -QuickStudioMultiTextplugin_OBJECTS = \ -"CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" - -# External object files for target QuickStudioMultiTextplugin -QuickStudioMultiTextplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make -qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build: qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake deleted file mode 100644 index 0d0a88a..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" - "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.pdb" - "CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/ParseCache.txt" - "QuickStudioMultiTextplugin_autogen" - "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" - "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o.d" - "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 8dce4fb..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make deleted file mode 100644 index 35e1d51..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiTextplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts deleted file mode 100644 index a18658c..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiTextplugin. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make deleted file mode 100644 index 85f1f77..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiTextplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make deleted file mode 100644 index 97332d1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt deleted file mode 100644 index 62627b0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../qml/QtQuick/Studio/MultiText/libQuickStudioMultiTextplugin.a diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index d12517d..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.MultiText" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make deleted file mode 100644 index 28c8aa4..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiTextplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiTextplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen -QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make -.PHONY : QuickStudioMultiTextplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build: QuickStudioMultiTextplugin_autogen -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 9b9cb1e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiTextplugin_autogen" - "QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index ec7e5b0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiTextplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index d072787..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiTextplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make deleted file mode 100644 index 20a2a32..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 92 - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 242e29e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make deleted file mode 100644 index 7419adc..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -MF CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp > CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s - -QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make -.PHONY : QuickStudioMultiTextplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build: QuickStudioMultiTextplugin_init -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 3ab0f3e..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioMultiTextplugin_init_autogen" - "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" - "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioMultiTextplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make deleted file mode 100644 index 0f122d6..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioMultiTextplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 501ba28..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioMultiTextplugin_init. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make deleted file mode 100644 index db50954..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioMultiTextplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make deleted file mode 100644 index 633d4e0..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index cacc800..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make deleted file mode 100644 index ef8ca30..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioMultiTextplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioMultiTextplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen -QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make -.PHONY : QuickStudioMultiTextplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build: QuickStudioMultiTextplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 16683af..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioMultiTextplugin_init_autogen" - "QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index cb8e340..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioMultiTextplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index 25db9e5..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioMultiTextplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks deleted file mode 100644 index 7ed6ff8..0000000 --- a/build/_deps/ds-build/src/imports/multitext/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/build/_deps/ds-build/src/imports/multitext/Makefile b/build/_deps/ds-build/src/imports/multitext/Makefile deleted file mode 100644 index 787b170..0000000 --- a/build/_deps/ds-build/src/imports/multitext/Makefile +++ /dev/null @@ -1,766 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule - -# Convenience name for target. -QuickStudioMultiText: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/rule -.PHONY : QuickStudioMultiText - -# fast build rule for target. -QuickStudioMultiText/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build -.PHONY : QuickStudioMultiText/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioMultiText_automoc_json_extraction: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/rule -.PHONY : QuickStudioMultiText_automoc_json_extraction - -# fast build rule for target. -QuickStudioMultiText_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_automoc_json_extraction.dir/build -.PHONY : QuickStudioMultiText_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmltyperegistration: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/rule -.PHONY : QuickStudioMultiText_qmltyperegistration - -# fast build rule for target. -QuickStudioMultiText_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmltyperegistration.dir/build -.PHONY : QuickStudioMultiText_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule - -# Convenience name for target. -QuickStudioMultiText_resources_1: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/rule -.PHONY : QuickStudioMultiText_resources_1 - -# fast build rule for target. -QuickStudioMultiText_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build -.PHONY : QuickStudioMultiText_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/rule -.PHONY : QuickStudioMultiTextplugin - -# fast build rule for target. -QuickStudioMultiTextplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build -.PHONY : QuickStudioMultiTextplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/rule -.PHONY : QuickStudioMultiText_qmllint - -# fast build rule for target. -QuickStudioMultiText_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint.dir/build -.PHONY : QuickStudioMultiText_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint_json: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/rule -.PHONY : QuickStudioMultiText_qmllint_json - -# fast build rule for target. -QuickStudioMultiText_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_json.dir/build -.PHONY : QuickStudioMultiText_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmllint_module: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/rule -.PHONY : QuickStudioMultiText_qmllint_module - -# fast build rule for target. -QuickStudioMultiText_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmllint_module.dir/build -.PHONY : QuickStudioMultiText_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmlcache: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/rule -.PHONY : QuickStudioMultiText_qmlcache - -# fast build rule for target. -QuickStudioMultiText_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build -.PHONY : QuickStudioMultiText_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule - -# Convenience name for target. -QuickStudioMultiText_resources_2: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/rule -.PHONY : QuickStudioMultiText_resources_2 - -# fast build rule for target. -QuickStudioMultiText_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build -.PHONY : QuickStudioMultiText_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_init: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/rule -.PHONY : QuickStudioMultiTextplugin_init - -# fast build rule for target. -QuickStudioMultiTextplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build -.PHONY : QuickStudioMultiTextplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiText_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/rule -.PHONY : QuickStudioMultiText_autogen - -# fast build rule for target. -QuickStudioMultiText_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_autogen.dir/build -.PHONY : QuickStudioMultiText_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/rule -.PHONY : QuickStudioMultiTextplugin_autogen - -# fast build rule for target. -QuickStudioMultiTextplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_autogen.dir/build -.PHONY : QuickStudioMultiTextplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiText_qmlcache_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/rule -.PHONY : QuickStudioMultiText_qmlcache_autogen - -# fast build rule for target. -QuickStudioMultiText_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache_autogen.dir/build -.PHONY : QuickStudioMultiText_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioMultiTextplugin_init_autogen: _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/rule -.PHONY : QuickStudioMultiTextplugin_init_autogen - -# fast build rule for target. -QuickStudioMultiTextplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init_autogen.dir/build -.PHONY : QuickStudioMultiTextplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o - -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.i - -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.s - -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o - -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.i - -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.s - -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o - -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.i - -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s: .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.s - -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s: .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioMultiText_raw_qml_0.o: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioMultiText_raw_qml_0.i: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioMultiText_raw_qml_0.s: .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_MultiText.o: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_MultiText.i: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_MultiText.s: .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.s - -QuickStudioMultiText_autogen/mocs_compilation.o: QuickStudioMultiText_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioMultiText_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.o - -QuickStudioMultiText_autogen/mocs_compilation.i: QuickStudioMultiText_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioMultiText_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.i - -QuickStudioMultiText_autogen/mocs_compilation.s: QuickStudioMultiText_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioMultiText_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiText_autogen/mocs_compilation.cpp.s - -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s: QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o - -# target to build an object file -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o - -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i - -# target to preprocess a source file -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.i - -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s: QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s - -# target to generate assembly for a file -QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s -.PHONY : QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.s - -QuickStudioMultiTextplugin_autogen/mocs_compilation.o: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o - -QuickStudioMultiTextplugin_autogen/mocs_compilation.i: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.i - -QuickStudioMultiTextplugin_autogen/mocs_compilation.s: QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.s - -QuickStudioMultiTextplugin_init.o: QuickStudioMultiTextplugin_init.cpp.o -.PHONY : QuickStudioMultiTextplugin_init.o - -# target to build an object file -QuickStudioMultiTextplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -.PHONY : QuickStudioMultiTextplugin_init.cpp.o - -QuickStudioMultiTextplugin_init.i: QuickStudioMultiTextplugin_init.cpp.i -.PHONY : QuickStudioMultiTextplugin_init.i - -# target to preprocess a source file -QuickStudioMultiTextplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.i -.PHONY : QuickStudioMultiTextplugin_init.cpp.i - -QuickStudioMultiTextplugin_init.s: QuickStudioMultiTextplugin_init.cpp.s -.PHONY : QuickStudioMultiTextplugin_init.s - -# target to generate assembly for a file -QuickStudioMultiTextplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.s -.PHONY : QuickStudioMultiTextplugin_init.cpp.s - -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s: QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.s - -quickstudiomultitext_qmltyperegistrations.o: quickstudiomultitext_qmltyperegistrations.cpp.o -.PHONY : quickstudiomultitext_qmltyperegistrations.o - -# target to build an object file -quickstudiomultitext_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.o - -quickstudiomultitext_qmltyperegistrations.i: quickstudiomultitext_qmltyperegistrations.cpp.i -.PHONY : quickstudiomultitext_qmltyperegistrations.i - -# target to preprocess a source file -quickstudiomultitext_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.i -.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.i - -quickstudiomultitext_qmltyperegistrations.s: quickstudiomultitext_qmltyperegistrations.cpp.s -.PHONY : quickstudiomultitext_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudiomultitext_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/build.make _deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.s -.PHONY : quickstudiomultitext_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioMultiText_autogen" - @echo "... QuickStudioMultiText_automoc_json_extraction" - @echo "... QuickStudioMultiText_qmlcache_autogen" - @echo "... QuickStudioMultiText_qmllint" - @echo "... QuickStudioMultiText_qmllint_json" - @echo "... QuickStudioMultiText_qmllint_module" - @echo "... QuickStudioMultiText_qmltyperegistration" - @echo "... QuickStudioMultiTextplugin_autogen" - @echo "... QuickStudioMultiTextplugin_init_autogen" - @echo "... QuickStudioMultiText" - @echo "... QuickStudioMultiText_qmlcache" - @echo "... QuickStudioMultiText_resources_1" - @echo "... QuickStudioMultiText_resources_2" - @echo "... QuickStudioMultiText_tooling" - @echo "... QuickStudioMultiTextplugin" - @echo "... QuickStudioMultiTextplugin_init" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.o" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.i" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.s" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.o" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.i" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.s" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioMultiText_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_MultiText.s" - @echo "... QuickStudioMultiText_autogen/mocs_compilation.o" - @echo "... QuickStudioMultiText_autogen/mocs_compilation.i" - @echo "... QuickStudioMultiText_autogen/mocs_compilation.s" - @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioMultiText_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.o" - @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.i" - @echo "... QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.s" - @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioMultiTextplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioMultiTextplugin_init.o" - @echo "... QuickStudioMultiTextplugin_init.i" - @echo "... QuickStudioMultiTextplugin_init.s" - @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioMultiTextplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudiomultitext_qmltyperegistrations.o" - @echo "... quickstudiomultitext_qmltyperegistrations.i" - @echo "... quickstudiomultitext_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp deleted file mode 100644 index 234fad5..0000000 --- a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_MultiText(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_MultiText) - -class QtQuick_Studio_MultiTextPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_MultiTextPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_MultiText; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp b/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp deleted file mode 100644 index b82bdd6..0000000 --- a/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_MultiTextPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake b/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake deleted file mode 100644 index 8f2fc57..0000000 --- a/build/_deps/ds-build/src/imports/multitext/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json b/build/_deps/ds-build/src/imports/multitext/meta_types/qt6quickstudiomultitext_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt b/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/multitext/qmltypes/QuickStudioMultiText_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/tools/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks deleted file mode 100644 index f599e28..0000000 --- a/build/_deps/ds-build/src/imports/tools/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/build/_deps/ds-build/src/imports/tools/Makefile b/build/_deps/ds-build/src/imports/tools/Makefile deleted file mode 100644 index 77df26e..0000000 --- a/build/_deps/ds-build/src/imports/tools/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/tools/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/cmake_install.cmake deleted file mode 100644 index f323843..0000000 --- a/build/_deps/ds-build/src/imports/tools/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake") -endif() - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc deleted file mode 100644 index b2f72e1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc +++ /dev/null @@ -1,7 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml - - - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc deleted file mode 100644 index 7142528..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp deleted file mode 100644 index ca685f8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp +++ /dev/null @@ -1,2 +0,0 @@ -/QtQuick/Studio/EventSimulator/EventSimulator.qml -/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp deleted file mode 100644 index f2e2069..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp +++ /dev/null @@ -1,13 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp deleted file mode 100644 index ff3aefa..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp +++ /dev/null @@ -1,15 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEventSimulator_qmllint.json diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp b/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp deleted file mode 100644 index a57f960..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc ---module -QtQuick.Studio.EventSimulator diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake deleted file mode 100644 index 4ee9215..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake +++ /dev/null @@ -1,28 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make deleted file mode 100644 index 90c7f2d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make +++ /dev/null @@ -1,208 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json - -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes --import-name=QtQuick.Studio.EventSimulator --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated/QuickStudioEventSimulator.qmltypes - -qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp: qml/QtQuick/Studio/EventSimulator/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSimulator/EventSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp: qml/QtQuick/Studio/EventSimulator/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml - -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp > CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -MF CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp > CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s - -# Object files for target QuickStudioEventSimulator -QuickStudioEventSimulator_OBJECTS = \ -"CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" \ -"CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" - -# External object files for target QuickStudioEventSimulator -QuickStudioEventSimulator_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make -_deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libQuickStudioEventSimulator.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSimulator.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build: _deps/ds-build/src/imports/tools/eventsimulator/libQuickStudioEventSimulator.a -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake deleted file mode 100644 index d3ff207..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean.cmake +++ /dev/null @@ -1,26 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" - ".rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp" - ".rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp" - "CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt" - "QuickStudioEventSimulator_autogen" - "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" - "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" - "CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o.d" - "libQuickStudioEventSimulator.a" - "libQuickStudioEventSimulator.pdb" - "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" - "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen" - "quickstudioeventsimulator_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake deleted file mode 100644 index ad8b796..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioEventSimulator.a" -) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make deleted file mode 100644 index fd3f0af..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulator. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts deleted file mode 100644 index 2932eb8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make deleted file mode 100644 index e29fae6..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulator. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make deleted file mode 100644 index 6480383..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt deleted file mode 100644 index 897f883..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEventSimulator.a CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEventSimulator.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make deleted file mode 100644 index 888e1d2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/progress.make +++ /dev/null @@ -1,11 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 69 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = 70 -CMAKE_PROGRESS_10 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json deleted file mode 100644 index 579770e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make deleted file mode 100644 index 13596fd..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen -QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make -.PHONY : QuickStudioEventSimulator_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build: QuickStudioEventSimulator_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake deleted file mode 100644 index b6b663a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulator_autogen" - "QuickStudioEventSimulator_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make deleted file mode 100644 index 62d2443..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts deleted file mode 100644 index a3f37a7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make deleted file mode 100644 index 68ce35e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include - -QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction -QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioEventSimulator_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build: QuickStudioEventSimulator_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 83ebd7c..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction" - "meta_types/QuickStudioEventSimulator_json_file_list.txt" - "meta_types/QuickStudioEventSimulator_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 5e51bb0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 1dd77bb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 23b9e22..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make deleted file mode 100644 index 5707c5b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSimulator --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp > CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s - -QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make -.PHONY : QuickStudioEventSimulator_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build: QuickStudioEventSimulator_qmlcache -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 38065b6..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioEventSimulator_qmlcache_autogen" - "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make deleted file mode 100644 index d4b2973..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulator_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index a0a3efe..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_qmlcache. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make deleted file mode 100644 index 6546ffe..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulator_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make deleted file mode 100644 index 8efdba0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index 87a82a9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make deleted file mode 100644 index 0d3791a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulator_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSimulator --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qml_loader_file_list.rsp - -QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp -QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen -QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioEventSimulator_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build: QuickStudioEventSimulator_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 94c919e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen" - "QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index 81c6095..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index b218e65..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make deleted file mode 100644 index eb08766..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 71 -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make deleted file mode 100644 index b2959d0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator.rsp - -QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint -QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make -.PHONY : QuickStudioEventSimulator_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build: QuickStudioEventSimulator_qmllint -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index df5b6dc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulator_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make deleted file mode 100644 index 0cfff41..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 4484f09..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make deleted file mode 100644 index 1a61c6d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_json.rsp - -QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json -QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make -.PHONY : QuickStudioEventSimulator_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build: QuickStudioEventSimulator_qmllint_json -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index f42b14b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulator_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 254e920..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 51225b2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make deleted file mode 100644 index be24568..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmllint/QuickStudioEventSimulator_module.rsp - -QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module -QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make -.PHONY : QuickStudioEventSimulator_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build: QuickStudioEventSimulator_qmllint_module -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b688ffb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulator_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 2dc2ca4..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index f6af3b3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 487adfb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make deleted file mode 100644 index 7823cd5..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes - -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes --import-name=QtQuick.Studio.EventSimulator --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.generated/QuickStudioEventSimulator.qmltypes - -qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes - -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/QuickStudioEventSimulator_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json - -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp -QuickStudioEventSimulator_qmltyperegistration: qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make -.PHONY : QuickStudioEventSimulator_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build: QuickStudioEventSimulator_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 7c83bdc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator.qmltypes" - "CMakeFiles/QuickStudioEventSimulator_qmltyperegistration" - "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json" - "meta_types/qt6quickstudioeventsimulator_debug_metatypes.json.gen" - "quickstudioeventsimulator_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index e29eb4e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index d42983a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 29b1631..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make deleted file mode 100644 index 699b824..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: qml/QtQuick/Studio/EventSimulator/qmldir -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_EventSimulator" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp --name qmake_QtQuick_Studio_EventSimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmake_QtQuick_Studio_EventSimulator.qrc - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp > CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s - -QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make -.PHONY : QuickStudioEventSimulator_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build: QuickStudioEventSimulator_resources_1 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 75de37f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp" - "CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" - "CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulator_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make deleted file mode 100644 index 04fb73b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulator_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts deleted file mode 100644 index d403be4..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_resources_1. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make deleted file mode 100644 index 5f4fad0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulator_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make deleted file mode 100644 index a82b377..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make deleted file mode 100644 index 47095a0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 72 - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 5421e46..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make deleted file mode 100644 index 8951e34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make +++ /dev/null @@ -1,108 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEventSimulator_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp --name QuickStudioEventSimulator_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/QuickStudioEventSimulator_raw_qml_0.qrc - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp > CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s - -QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make -.PHONY : QuickStudioEventSimulator_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build: QuickStudioEventSimulator_resources_2 -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend: _deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index 69860e4..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp" - "CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulator_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make deleted file mode 100644 index 5881f4a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulator_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 7fcdb2d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulator_resources_2. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make deleted file mode 100644 index fc0e928..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulator_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make deleted file mode 100644 index a82b377..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make deleted file mode 100644 index 562702a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulator_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make - -qml/QtQuick/Studio/EventSimulator/EventSimulator.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying EventSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml - -qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying EventSimulatorDelegate.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/EventSimulatorDelegate.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml - -QuickStudioEventSimulator_tooling: qml/QtQuick/Studio/EventSimulator/EventSimulator.qml -QuickStudioEventSimulator_tooling: qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml -QuickStudioEventSimulator_tooling: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build.make -.PHONY : QuickStudioEventSimulator_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build: QuickStudioEventSimulator_tooling -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake deleted file mode 100644 index e426a25..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSimulator/EventSimulator.qml" - "../../../../../../qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulator_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make deleted file mode 100644 index abcad29..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulator_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts deleted file mode 100644 index 63902a3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulator_tooling. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_tooling.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake deleted file mode 100644 index 16367e3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make deleted file mode 100644 index a5f419d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp > CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s - -# Object files for target QuickStudioEventSimulatorplugin -QuickStudioEventSimulatorplugin_OBJECTS = \ -"CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" - -# External object files for target QuickStudioEventSimulatorplugin -QuickStudioEventSimulatorplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make -qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build: qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake deleted file mode 100644 index f10bcab..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" - "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.pdb" - "CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/ParseCache.txt" - "QuickStudioEventSimulatorplugin_autogen" - "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" - "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 3ba25c0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make deleted file mode 100644 index 82b049f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulatorplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts deleted file mode 100644 index 36574d2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulatorplugin. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make deleted file mode 100644 index 3bab85f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulatorplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make deleted file mode 100644 index 07cd90d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt deleted file mode 100644 index 815d163..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../../qml/QtQuick/Studio/EventSimulator/libQuickStudioEventSimulatorplugin.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make deleted file mode 100644 index a55374b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 73 -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index ba25310..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.EventSimulator" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make deleted file mode 100644 index 1a6984f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulatorplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulatorplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen -QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make -.PHONY : QuickStudioEventSimulatorplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build: QuickStudioEventSimulatorplugin_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 3c034ff..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulatorplugin_autogen" - "QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index a75e010..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulatorplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 70395c2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulatorplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 0c08281..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make deleted file mode 100644 index 0d7b194..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -MF CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp > CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s - -QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make -.PHONY : QuickStudioEventSimulatorplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build: QuickStudioEventSimulatorplugin_init -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index d2ecd50..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioEventSimulatorplugin_init_autogen" - "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" - "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make deleted file mode 100644 index 3742c4a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSimulatorplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts deleted file mode 100644 index ba0f0a9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSimulatorplugin_init. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make deleted file mode 100644 index 955bda9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSimulatorplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make deleted file mode 100644 index 58de8df..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 6051ef8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make deleted file mode 100644 index e11881f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSimulatorplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSimulatorplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen -QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make -.PHONY : QuickStudioEventSimulatorplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build: QuickStudioEventSimulatorplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index f279ded..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen" - "QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index 39b129a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSimulatorplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index 6e67c72..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSimulatorplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks deleted file mode 100644 index 7ed6ff8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile b/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile deleted file mode 100644 index 2a671d2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/Makefile +++ /dev/null @@ -1,739 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/rule -.PHONY : QuickStudioEventSimulator - -# fast build rule for target. -QuickStudioEventSimulator/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build -.PHONY : QuickStudioEventSimulator/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEventSimulator_automoc_json_extraction - -# fast build rule for target. -QuickStudioEventSimulator_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_automoc_json_extraction.dir/build -.PHONY : QuickStudioEventSimulator_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/rule -.PHONY : QuickStudioEventSimulator_qmltyperegistration - -# fast build rule for target. -QuickStudioEventSimulator_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmltyperegistration.dir/build -.PHONY : QuickStudioEventSimulator_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_resources_1: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/rule -.PHONY : QuickStudioEventSimulator_resources_1 - -# fast build rule for target. -QuickStudioEventSimulator_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build -.PHONY : QuickStudioEventSimulator_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/rule -.PHONY : QuickStudioEventSimulatorplugin - -# fast build rule for target. -QuickStudioEventSimulatorplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build -.PHONY : QuickStudioEventSimulatorplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint - -# fast build rule for target. -QuickStudioEventSimulator_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint.dir/build -.PHONY : QuickStudioEventSimulator_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint_json: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint_json - -# fast build rule for target. -QuickStudioEventSimulator_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_json.dir/build -.PHONY : QuickStudioEventSimulator_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmllint_module: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/rule -.PHONY : QuickStudioEventSimulator_qmllint_module - -# fast build rule for target. -QuickStudioEventSimulator_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmllint_module.dir/build -.PHONY : QuickStudioEventSimulator_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmlcache: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/rule -.PHONY : QuickStudioEventSimulator_qmlcache - -# fast build rule for target. -QuickStudioEventSimulator_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build -.PHONY : QuickStudioEventSimulator_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_resources_2: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/rule -.PHONY : QuickStudioEventSimulator_resources_2 - -# fast build rule for target. -QuickStudioEventSimulator_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build -.PHONY : QuickStudioEventSimulator_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_init: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_init - -# fast build rule for target. -QuickStudioEventSimulatorplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build -.PHONY : QuickStudioEventSimulatorplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/rule -.PHONY : QuickStudioEventSimulator_autogen - -# fast build rule for target. -QuickStudioEventSimulator_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_autogen.dir/build -.PHONY : QuickStudioEventSimulator_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_autogen - -# fast build rule for target. -QuickStudioEventSimulatorplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_autogen.dir/build -.PHONY : QuickStudioEventSimulatorplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulator_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEventSimulator_qmlcache_autogen - -# fast build rule for target. -QuickStudioEventSimulator_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache_autogen.dir/build -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSimulatorplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/rule -.PHONY : QuickStudioEventSimulatorplugin_init_autogen - -# fast build rule for target. -QuickStudioEventSimulatorplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init_autogen.dir/build -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.i - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.s - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.i - -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s: .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.s - -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s: .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s: .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.s - -QuickStudioEventSimulator_autogen/mocs_compilation.o: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o - -QuickStudioEventSimulator_autogen/mocs_compilation.i: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.i - -QuickStudioEventSimulator_autogen/mocs_compilation.s: QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulator_autogen/mocs_compilation.cpp.s - -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s: QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o - -# target to build an object file -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o - -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i - -# target to preprocess a source file -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.i - -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s: QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s - -# target to generate assembly for a file -QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.s - -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o - -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.i - -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s: QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.s - -QuickStudioEventSimulatorplugin_init.o: QuickStudioEventSimulatorplugin_init.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_init.o - -# target to build an object file -QuickStudioEventSimulatorplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_init.cpp.o - -QuickStudioEventSimulatorplugin_init.i: QuickStudioEventSimulatorplugin_init.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_init.i - -# target to preprocess a source file -QuickStudioEventSimulatorplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_init.cpp.i - -QuickStudioEventSimulatorplugin_init.s: QuickStudioEventSimulatorplugin_init.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_init.s - -# target to generate assembly for a file -QuickStudioEventSimulatorplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_init.cpp.s - -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s: QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.s - -quickstudioeventsimulator_qmltyperegistrations.o: quickstudioeventsimulator_qmltyperegistrations.cpp.o -.PHONY : quickstudioeventsimulator_qmltyperegistrations.o - -# target to build an object file -quickstudioeventsimulator_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.o - -quickstudioeventsimulator_qmltyperegistrations.i: quickstudioeventsimulator_qmltyperegistrations.cpp.i -.PHONY : quickstudioeventsimulator_qmltyperegistrations.i - -# target to preprocess a source file -quickstudioeventsimulator_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.i -.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.i - -quickstudioeventsimulator_qmltyperegistrations.s: quickstudioeventsimulator_qmltyperegistrations.cpp.s -.PHONY : quickstudioeventsimulator_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudioeventsimulator_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/build.make _deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.s -.PHONY : quickstudioeventsimulator_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioEventSimulator_autogen" - @echo "... QuickStudioEventSimulator_automoc_json_extraction" - @echo "... QuickStudioEventSimulator_qmlcache_autogen" - @echo "... QuickStudioEventSimulator_qmllint" - @echo "... QuickStudioEventSimulator_qmllint_json" - @echo "... QuickStudioEventSimulator_qmllint_module" - @echo "... QuickStudioEventSimulator_qmltyperegistration" - @echo "... QuickStudioEventSimulatorplugin_autogen" - @echo "... QuickStudioEventSimulatorplugin_init_autogen" - @echo "... QuickStudioEventSimulator" - @echo "... QuickStudioEventSimulator_qmlcache" - @echo "... QuickStudioEventSimulator_resources_1" - @echo "... QuickStudioEventSimulator_resources_2" - @echo "... QuickStudioEventSimulator_tooling" - @echo "... QuickStudioEventSimulatorplugin" - @echo "... QuickStudioEventSimulatorplugin_init" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioEventSimulator_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSimulator.s" - @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSimulator_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.o" - @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.i" - @echo "... QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.s" - @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSimulatorplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSimulatorplugin_init.o" - @echo "... QuickStudioEventSimulatorplugin_init.i" - @echo "... QuickStudioEventSimulatorplugin_init.s" - @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudioeventsimulator_qmltyperegistrations.o" - @echo "... quickstudioeventsimulator_qmltyperegistrations.i" - @echo "... quickstudioeventsimulator_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp deleted file mode 100644 index 33588e8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_EventSimulator(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_EventSimulator) - -class QtQuick_Studio_EventSimulatorPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_EventSimulatorPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_EventSimulator; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp b/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp deleted file mode 100644 index 455fd01..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_EventSimulatorPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake deleted file mode 100644 index 5618df9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json b/build/_deps/ds-build/src/imports/tools/eventsimulator/meta_types/qt6quickstudioeventsimulator_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt b/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsimulator/qmltypes/QuickStudioEventSimulator_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc deleted file mode 100644 index 8abad38..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc +++ /dev/null @@ -1,7 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml - /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml - - - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc deleted file mode 100644 index 6e077ff..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir - - - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp deleted file mode 100644 index 490a840..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp +++ /dev/null @@ -1,2 +0,0 @@ -/QtQuick/Studio/EventSystem/EventSystem.qml -/QtQuick/Studio/EventSystem/EventListener.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp deleted file mode 100644 index ddc2111..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp +++ /dev/null @@ -1,13 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp deleted file mode 100644 index f588ebb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp +++ /dev/null @@ -1,15 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/QuickStudioEventSystem_qmllint.json diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp b/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp deleted file mode 100644 index 2f5e516..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc ---module -QtQuick.Studio.EventSystem diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index d4639f0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake deleted file mode 100644 index f300720..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake +++ /dev/null @@ -1,28 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make deleted file mode 100644 index 8eb36b0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make +++ /dev/null @@ -1,208 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json - -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes --import-name=QtQuick.Studio.EventSystem --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated/QuickStudioEventSystem.qmltypes - -qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp: qml/QtQuick/Studio/EventSystem/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSystem/EventSystem.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp: qml/QtQuick/Studio/EventSystem/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /QtQuick/Studio/EventSystem/EventListener.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml - -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6quickstudioeventsystem_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp > CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp > CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -MF CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp > CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s - -# Object files for target QuickStudioEventSystem -QuickStudioEventSystem_OBJECTS = \ -"CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" \ -"CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" \ -"CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" - -# External object files for target QuickStudioEventSystem -QuickStudioEventSystem_EXTERNAL_OBJECTS = - -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make -_deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libQuickStudioEventSystem.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSystem.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build: _deps/ds-build/src/imports/tools/eventsystem/libQuickStudioEventSystem.a -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake deleted file mode 100644 index 0f27fb0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean.cmake +++ /dev/null @@ -1,26 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" - ".rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp" - ".rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp" - "CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt" - "QuickStudioEventSystem_autogen" - "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" - "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o.d" - "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" - "CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o.d" - "CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" - "CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o.d" - "libQuickStudioEventSystem.a" - "libQuickStudioEventSystem.pdb" - "meta_types/qt6quickstudioeventsystem_debug_metatypes.json" - "meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen" - "quickstudioeventsystem_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake deleted file mode 100644 index 191f4d9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libQuickStudioEventSystem.a" -) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make deleted file mode 100644 index d020e33..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystem. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts deleted file mode 100644 index 702f6b5..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make deleted file mode 100644 index 48756cc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystem. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make deleted file mode 100644 index 1132d3f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt deleted file mode 100644 index 3e8b27a..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libQuickStudioEventSystem.a CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libQuickStudioEventSystem.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make deleted file mode 100644 index 1483407..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/progress.make +++ /dev/null @@ -1,11 +0,0 @@ -CMAKE_PROGRESS_1 = 74 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = 75 -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json deleted file mode 100644 index 0e08293..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make deleted file mode 100644 index 2e52c00..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen -QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make -.PHONY : QuickStudioEventSystem_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build: QuickStudioEventSystem_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake deleted file mode 100644 index b7e83bc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystem_autogen" - "QuickStudioEventSystem_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make deleted file mode 100644 index 1aa7163..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts deleted file mode 100644 index 1e6cd9b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make deleted file mode 100644 index a0b5a1c..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include - -QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction -QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make -.PHONY : QuickStudioEventSystem_automoc_json_extraction - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build: QuickStudioEventSystem_automoc_json_extraction -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 4267a7f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystem_automoc_json_extraction" - "meta_types/QuickStudioEventSystem_json_file_list.txt" - "meta_types/QuickStudioEventSystem_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index 8b8a8a7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 1b48a65..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_automoc_json_extraction. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index bf92b04..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make deleted file mode 100644 index cd5eb28..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSystem --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -MF CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp > CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s - -QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make -.PHONY : QuickStudioEventSystem_qmlcache - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build: QuickStudioEventSystem_qmlcache -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 981fb78..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/ParseCache.txt" - "QuickStudioEventSystem_qmlcache_autogen" - "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" - "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o.d" - "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystem_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 2ceb4ff..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystem_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index a1a0ef2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_qmlcache. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make deleted file mode 100644 index 4978e73..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystem_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make deleted file mode 100644 index 54943f5..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make deleted file mode 100644 index d1725e5..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 76 -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index ac4dfa3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make deleted file mode 100644 index edede50..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystem_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/AutogenInfo.json Debug - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_QuickStudioEventSystem --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qml_loader_file_list.rsp - -QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp -QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen -QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make -.PHONY : QuickStudioEventSystem_qmlcache_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build: QuickStudioEventSystem_qmlcache_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 9d1a0b3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp" - "CMakeFiles/QuickStudioEventSystem_qmlcache_autogen" - "QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index 213cbf4..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 3ad0fcc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmlcache_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make deleted file mode 100644 index 5a52ecb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_qmllint. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem.rsp - -QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint -QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make -.PHONY : QuickStudioEventSystem_qmllint - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build: QuickStudioEventSystem_qmllint -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 96fe837..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystem_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make deleted file mode 100644 index b2ed2fd..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts deleted file mode 100644 index dcc640e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make deleted file mode 100644 index 0c43bef..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_qmllint_json. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_json.rsp - -QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json -QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make -.PHONY : QuickStudioEventSystem_qmllint_json - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build: QuickStudioEventSystem_qmllint_json -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 871c15b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystem_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 59b1e23..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 7318216..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint_json. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make deleted file mode 100644 index a645790..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_qmllint_module. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /opt/homebrew/bin/qmllint -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmllint/QuickStudioEventSystem_module.rsp - -QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module -QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make -.PHONY : QuickStudioEventSystem_qmllint_module - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build: QuickStudioEventSystem_qmllint_module -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 9f9bc97..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystem_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index b78c6de..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 905da00..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmllint_module. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 1f17a62..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make deleted file mode 100644 index 6ae0779..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes - -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes --import-name=QtQuick.Studio.EventSystem --major-version=6 --minor-version=4 --past-major-version 1 @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.generated/QuickStudioEventSystem.qmltypes - -qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes - -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6quickstudioeventsystem_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen: _deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target QuickStudioEventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/QuickStudioEventSystem_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json - -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp -QuickStudioEventSystem_qmltyperegistration: qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make -.PHONY : QuickStudioEventSystem_qmltyperegistration - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build: QuickStudioEventSystem_qmltyperegistration -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 9e93b95..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem.qmltypes" - "CMakeFiles/QuickStudioEventSystem_qmltyperegistration" - "meta_types/qt6quickstudioeventsystem_debug_metatypes.json" - "meta_types/qt6quickstudioeventsystem_debug_metatypes.json.gen" - "quickstudioeventsystem_qmltyperegistrations.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 0c31663..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 1204776..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_qmltyperegistration. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make deleted file mode 100644 index 870dd46..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 77 - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 5556a63..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make deleted file mode 100644 index 7e6ead9..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: qml/QtQuick/Studio/EventSystem/qmldir -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_QtQuick_Studio_EventSystem" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp --name qmake_QtQuick_Studio_EventSystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmake_QtQuick_Studio_EventSystem.qrc - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -MF CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp > CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s - -QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make -.PHONY : QuickStudioEventSystem_resources_1 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build: QuickStudioEventSystem_resources_1 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index cc905fa..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp" - "CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" - "CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystem_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make deleted file mode 100644 index 2fd5096..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystem_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 9c13cc3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_resources_1. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make deleted file mode 100644 index 8f1e9f2..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystem_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make deleted file mode 100644 index 887702d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 9a87697..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make deleted file mode 100644 index d998da5..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make +++ /dev/null @@ -1,108 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: _deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc -_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource QuickStudioEventSystem_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp --name QuickStudioEventSystem_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/QuickStudioEventSystem_raw_qml_0.qrc - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -MF CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp > CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s - -QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make -.PHONY : QuickStudioEventSystem_resources_2 - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build: QuickStudioEventSystem_resources_2 -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend: _deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index e6bae79..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp" - "CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" - "CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystem_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make deleted file mode 100644 index 1ff2319..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystem_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 2a5aff1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystem_resources_2. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make deleted file mode 100644 index a1c3001..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystem_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make deleted file mode 100644 index 887702d..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make deleted file mode 100644 index 80500a8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystem_tooling. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make - -qml/QtQuick/Studio/EventSystem/EventSystem.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying EventSystem.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventSystem.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml - -qml/QtQuick/Studio/EventSystem/EventListener.qml: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying EventListener.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/EventListener.qml /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem/EventListener.qml - -QuickStudioEventSystem_tooling: qml/QtQuick/Studio/EventSystem/EventListener.qml -QuickStudioEventSystem_tooling: qml/QtQuick/Studio/EventSystem/EventSystem.qml -QuickStudioEventSystem_tooling: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build.make -.PHONY : QuickStudioEventSystem_tooling - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build: QuickStudioEventSystem_tooling -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 7cca6ff..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSystem/EventListener.qml" - "../../../../../../qml/QtQuick/Studio/EventSystem/EventSystem.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystem_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make deleted file mode 100644 index be9e1b1..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystem_tooling. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts deleted file mode 100644 index 43bae5e..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystem_tooling. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make deleted file mode 100644 index 3a909bb..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_tooling.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 78 - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake deleted file mode 100644 index f2ae357..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make deleted file mode 100644 index 90d9f41..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp > CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s - -# Object files for target QuickStudioEventSystemplugin -QuickStudioEventSystemplugin_OBJECTS = \ -"CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" - -# External object files for target QuickStudioEventSystemplugin -QuickStudioEventSystemplugin_EXTERNAL_OBJECTS = - -qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make -qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build: qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake deleted file mode 100644 index 50d27ee..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" - "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.pdb" - "CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/ParseCache.txt" - "QuickStudioEventSystemplugin_autogen" - "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" - "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o.d" - "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 286c6fa..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a" -) diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make deleted file mode 100644 index 3e666bf..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystemplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts deleted file mode 100644 index 300e2af..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystemplugin. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make deleted file mode 100644 index c108922..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystemplugin. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make deleted file mode 100644 index 909a6b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt deleted file mode 100644 index 72df108..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../../../../../qml/QtQuick/Studio/EventSystem/libQuickStudioEventSystemplugin.a diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 3c7c1c6..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=QtQuick.Studio.EventSystem" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make deleted file mode 100644 index c19a502..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystemplugin_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystemplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen -QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make -.PHONY : QuickStudioEventSystemplugin_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build: QuickStudioEventSystemplugin_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index a05c00c..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystemplugin_autogen" - "QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 7d4b46c..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystemplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 7ac70f6..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystemplugin_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 7cae2ab..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make deleted file mode 100644 index 19897c3..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -MF CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp > CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s - -QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make -.PHONY : QuickStudioEventSystemplugin_init - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build: QuickStudioEventSystemplugin_init -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 1a5ba5f..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/ParseCache.txt" - "QuickStudioEventSystemplugin_init_autogen" - "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" - "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o.d" - "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/QuickStudioEventSystemplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make deleted file mode 100644 index 9715d15..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for QuickStudioEventSystemplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 70ee404..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for QuickStudioEventSystemplugin_init. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make deleted file mode 100644 index ca50e61..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for QuickStudioEventSystemplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make deleted file mode 100644 index 2d91e52..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make deleted file mode 100644 index c7053dd..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 79 - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 23d6bcc..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make deleted file mode 100644 index 61ed9ad..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for QuickStudioEventSystemplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target QuickStudioEventSystemplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/AutogenInfo.json Debug - -QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen -QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make -.PHONY : QuickStudioEventSystemplugin_init_autogen - -# Rule to build all files generated by this target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build: QuickStudioEventSystemplugin_init_autogen -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem && $(CMAKE_COMMAND) -P CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/clean - -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/depend - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 3a39688..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/QuickStudioEventSystemplugin_init_autogen" - "QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index 6caa5c0..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for QuickStudioEventSystemplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index ac8837b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for QuickStudioEventSystemplugin_init_autogen. diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks b/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks deleted file mode 100644 index 7ed6ff8..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile b/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile deleted file mode 100644 index 2c6f394..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/Makefile +++ /dev/null @@ -1,739 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule - -# Convenience name for target. -QuickStudioEventSystem: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/rule -.PHONY : QuickStudioEventSystem - -# fast build rule for target. -QuickStudioEventSystem/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build -.PHONY : QuickStudioEventSystem/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_automoc_json_extraction: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/rule -.PHONY : QuickStudioEventSystem_automoc_json_extraction - -# fast build rule for target. -QuickStudioEventSystem_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_automoc_json_extraction.dir/build -.PHONY : QuickStudioEventSystem_automoc_json_extraction/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmltyperegistration: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/rule -.PHONY : QuickStudioEventSystem_qmltyperegistration - -# fast build rule for target. -QuickStudioEventSystem_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmltyperegistration.dir/build -.PHONY : QuickStudioEventSystem_qmltyperegistration/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_resources_1: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/rule -.PHONY : QuickStudioEventSystem_resources_1 - -# fast build rule for target. -QuickStudioEventSystem_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build -.PHONY : QuickStudioEventSystem_resources_1/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/rule -.PHONY : QuickStudioEventSystemplugin - -# fast build rule for target. -QuickStudioEventSystemplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build -.PHONY : QuickStudioEventSystemplugin/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/rule -.PHONY : QuickStudioEventSystem_qmllint - -# fast build rule for target. -QuickStudioEventSystem_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint.dir/build -.PHONY : QuickStudioEventSystem_qmllint/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint_json: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/rule -.PHONY : QuickStudioEventSystem_qmllint_json - -# fast build rule for target. -QuickStudioEventSystem_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_json.dir/build -.PHONY : QuickStudioEventSystem_qmllint_json/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmllint_module: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/rule -.PHONY : QuickStudioEventSystem_qmllint_module - -# fast build rule for target. -QuickStudioEventSystem_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmllint_module.dir/build -.PHONY : QuickStudioEventSystem_qmllint_module/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmlcache: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/rule -.PHONY : QuickStudioEventSystem_qmlcache - -# fast build rule for target. -QuickStudioEventSystem_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build -.PHONY : QuickStudioEventSystem_qmlcache/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_resources_2: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/rule -.PHONY : QuickStudioEventSystem_resources_2 - -# fast build rule for target. -QuickStudioEventSystem_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build -.PHONY : QuickStudioEventSystem_resources_2/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_init: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/rule -.PHONY : QuickStudioEventSystemplugin_init - -# fast build rule for target. -QuickStudioEventSystemplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build -.PHONY : QuickStudioEventSystemplugin_init/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/rule -.PHONY : QuickStudioEventSystem_autogen - -# fast build rule for target. -QuickStudioEventSystem_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_autogen.dir/build -.PHONY : QuickStudioEventSystem_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/rule -.PHONY : QuickStudioEventSystemplugin_autogen - -# fast build rule for target. -QuickStudioEventSystemplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_autogen.dir/build -.PHONY : QuickStudioEventSystemplugin_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystem_qmlcache_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/rule -.PHONY : QuickStudioEventSystem_qmlcache_autogen - -# fast build rule for target. -QuickStudioEventSystem_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache_autogen.dir/build -.PHONY : QuickStudioEventSystem_qmlcache_autogen/fast - -# Convenience name for target. -_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule -.PHONY : _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule - -# Convenience name for target. -QuickStudioEventSystemplugin_init_autogen: _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/rule -.PHONY : QuickStudioEventSystemplugin_init_autogen - -# fast build rule for target. -QuickStudioEventSystemplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init_autogen.dir/build -.PHONY : QuickStudioEventSystemplugin_init_autogen/fast - -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o - -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.i - -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s: .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.s - -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o - -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.i - -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s: .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.s - -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o - -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.i - -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s: .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.s - -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.o: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.o - -# target to build an object file -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o - -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.i: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.i - -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.s: .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.s - -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.o: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.o - -# target to build an object file -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o - -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.i: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.i - -# target to preprocess a source file -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.i - -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.s: .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.s - -# target to generate assembly for a file -.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s -.PHONY : .rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.s - -QuickStudioEventSystem_autogen/mocs_compilation.o: QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSystem_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.o - -QuickStudioEventSystem_autogen/mocs_compilation.i: QuickStudioEventSystem_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSystem_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.i - -QuickStudioEventSystem_autogen/mocs_compilation.s: QuickStudioEventSystem_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSystem_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystem_autogen/mocs_compilation.cpp.s - -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o - -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.i - -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s: QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.s - -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o - -# target to build an object file -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o - -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i - -# target to preprocess a source file -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.i - -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s: QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s - -# target to generate assembly for a file -QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s -.PHONY : QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.s - -QuickStudioEventSystemplugin_autogen/mocs_compilation.o: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o - -QuickStudioEventSystemplugin_autogen/mocs_compilation.i: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.i - -QuickStudioEventSystemplugin_autogen/mocs_compilation.s: QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.s - -QuickStudioEventSystemplugin_init.o: QuickStudioEventSystemplugin_init.cpp.o -.PHONY : QuickStudioEventSystemplugin_init.o - -# target to build an object file -QuickStudioEventSystemplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -.PHONY : QuickStudioEventSystemplugin_init.cpp.o - -QuickStudioEventSystemplugin_init.i: QuickStudioEventSystemplugin_init.cpp.i -.PHONY : QuickStudioEventSystemplugin_init.i - -# target to preprocess a source file -QuickStudioEventSystemplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.i -.PHONY : QuickStudioEventSystemplugin_init.cpp.i - -QuickStudioEventSystemplugin_init.s: QuickStudioEventSystemplugin_init.cpp.s -.PHONY : QuickStudioEventSystemplugin_init.s - -# target to generate assembly for a file -QuickStudioEventSystemplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.s -.PHONY : QuickStudioEventSystemplugin_init.cpp.s - -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o - -# target to build an object file -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o - -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.i - -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s: QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.s - -quickstudioeventsystem_qmltyperegistrations.o: quickstudioeventsystem_qmltyperegistrations.cpp.o -.PHONY : quickstudioeventsystem_qmltyperegistrations.o - -# target to build an object file -quickstudioeventsystem_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.o - -quickstudioeventsystem_qmltyperegistrations.i: quickstudioeventsystem_qmltyperegistrations.cpp.i -.PHONY : quickstudioeventsystem_qmltyperegistrations.i - -# target to preprocess a source file -quickstudioeventsystem_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.i -.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.i - -quickstudioeventsystem_qmltyperegistrations.s: quickstudioeventsystem_qmltyperegistrations.cpp.s -.PHONY : quickstudioeventsystem_qmltyperegistrations.s - -# target to generate assembly for a file -quickstudioeventsystem_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/build.make _deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.s -.PHONY : quickstudioeventsystem_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... QuickStudioEventSystem_autogen" - @echo "... QuickStudioEventSystem_automoc_json_extraction" - @echo "... QuickStudioEventSystem_qmlcache_autogen" - @echo "... QuickStudioEventSystem_qmllint" - @echo "... QuickStudioEventSystem_qmllint_json" - @echo "... QuickStudioEventSystem_qmllint_module" - @echo "... QuickStudioEventSystem_qmltyperegistration" - @echo "... QuickStudioEventSystemplugin_autogen" - @echo "... QuickStudioEventSystemplugin_init_autogen" - @echo "... QuickStudioEventSystem" - @echo "... QuickStudioEventSystem_qmlcache" - @echo "... QuickStudioEventSystem_resources_1" - @echo "... QuickStudioEventSystem_resources_2" - @echo "... QuickStudioEventSystem_tooling" - @echo "... QuickStudioEventSystemplugin" - @echo "... QuickStudioEventSystemplugin_init" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.o" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.i" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.s" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.o" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.i" - @echo "... .rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.s" - @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.o" - @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.i" - @echo "... .rcc/qrc_QuickStudioEventSystem_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.o" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.i" - @echo "... .rcc/qrc_qmake_QtQuick_Studio_EventSystem.s" - @echo "... QuickStudioEventSystem_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSystem_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSystem_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.o" - @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.i" - @echo "... QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.s" - @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSystemplugin_autogen/mocs_compilation.s" - @echo "... QuickStudioEventSystemplugin_init.o" - @echo "... QuickStudioEventSystemplugin_init.i" - @echo "... QuickStudioEventSystemplugin_init.s" - @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.o" - @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.i" - @echo "... QuickStudioEventSystemplugin_init_autogen/mocs_compilation.s" - @echo "... quickstudioeventsystem_qmltyperegistrations.o" - @echo "... quickstudioeventsystem_qmltyperegistrations.i" - @echo "... quickstudioeventsystem_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp deleted file mode 100644 index 61b189b..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_QtQuick_Studio_EventSystem(); -Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Studio_EventSystem) - -class QtQuick_Studio_EventSystemPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - QtQuick_Studio_EventSystemPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_QtQuick_Studio_EventSystem; - Q_UNUSED(registration) - } -}; - - - -#include "QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.moc" diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp b/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp deleted file mode 100644 index 6585402..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(QtQuick_Studio_EventSystemPlugin) \ No newline at end of file diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake b/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake deleted file mode 100644 index 3017f21..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json b/build/_deps/ds-build/src/imports/tools/eventsystem/meta_types/qt6quickstudioeventsystem_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt b/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/_deps/ds-build/src/imports/tools/eventsystem/qmltypes/QuickStudioEventSystem_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/_deps/ds-src b/build/_deps/ds-src deleted file mode 160000 index 5ba114d..0000000 --- a/build/_deps/ds-src +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5ba114da668f702d507175200783bcd780924ae0 diff --git a/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake b/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake deleted file mode 100644 index ee7545f..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/3.27.8/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Darwin-23.4.0") -set(CMAKE_HOST_SYSTEM_NAME "Darwin") -set(CMAKE_HOST_SYSTEM_VERSION "23.4.0") -set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") - - - -set(CMAKE_SYSTEM "Darwin-23.4.0") -set(CMAKE_SYSTEM_NAME "Darwin") -set(CMAKE_SYSTEM_VERSION "23.4.0") -set(CMAKE_SYSTEM_PROCESSOR "arm64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index a595871..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,11 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeDetermineSystem.cmake:211 (message)" - - "CMakeLists.txt:16 (project)" - message: | - The system is: Darwin - 23.4.0 - arm64 -... diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index c18d36b..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt b/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index 56d7c13..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Hashes of file build rules. -0ab7f4e4b72a03b8f451138e6c5be929 CMakeFiles/ds-populate -17927b0312cdfb2830b8a3f117f7a944 CMakeFiles/ds-populate-complete -b39b81d88793eaa5f65604a594229b06 ds-populate-prefix/src/ds-populate-stamp/ds-populate-build -6a2a3e7d503fa3b1c0f94105281a1e7d ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure -ae54d8c36c11dccedf717a4ebe41aba3 ds-populate-prefix/src/ds-populate-stamp/ds-populate-download -a6b36b80e3a88bc116f1bc12e7fd78c9 ds-populate-prefix/src/ds-populate-stamp/ds-populate-install -4107f2308cb9d40ef5b8d418b792ba26 ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir -4a8d080694ef0a9d8d25cdb954fb4eb1 ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch -a89e228f5622fe117f7f1193c75f5d28 ds-populate-prefix/src/ds-populate-stamp/ds-populate-test -8f2fd4fb196b182a5cac45a6101a7e31 ds-populate-prefix/src/ds-populate-stamp/ds-populate-update diff --git a/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake b/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake deleted file mode 100644 index ac84c76..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,52 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "CMakeFiles/3.27.8/CMakeSystem.cmake" - "CMakeLists.txt" - "ds-populate-prefix/tmp/ds-populate-mkdirs.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeGenericSystem.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/PatchInfo.txt.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/RepositoryInfo.txt.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/UpdateInfo.txt.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/cfgcmd.txt.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/gitclone.cmake.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/gitupdate.cmake.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/mkdirs.cmake.in" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/Darwin.cmake" - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "ds-populate-prefix/tmp/ds-populate-mkdirs.cmake" - "ds-populate-prefix/tmp/ds-populate-gitclone.cmake" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" - "ds-populate-prefix/tmp/ds-populate-gitupdate.cmake" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt" - "ds-populate-prefix/tmp/ds-populate-cfgcmd.txt" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/ds-populate.dir/DependInfo.cmake" - ) diff --git a/build/_deps/ds-subbuild/CMakeFiles/Makefile2 b/build/_deps/ds-subbuild/CMakeFiles/Makefile2 deleted file mode 100644 index 366c16a..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/Makefile2 +++ /dev/null @@ -1,112 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/ds-populate.dir/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/ds-populate.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/ds-populate.dir - -# All Build rule for target. -CMakeFiles/ds-populate.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target ds-populate" -.PHONY : CMakeFiles/ds-populate.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/ds-populate.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 9 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/ds-populate.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 0 -.PHONY : CMakeFiles/ds-populate.dir/rule - -# Convenience name for target. -ds-populate: CMakeFiles/ds-populate.dir/rule -.PHONY : ds-populate - -# clean rule for target. -CMakeFiles/ds-populate.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/clean -.PHONY : CMakeFiles/ds-populate.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt b/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index eba67bd..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,3 +0,0 @@ -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache b/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete b/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json deleted file mode 100644 index 9ab0a71..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "sources" : - [ - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test.rule" - }, - { - "file" : "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update.rule" - } - ], - "target" : - { - "labels" : - [ - "ds-populate" - ], - "name" : "ds-populate" - } -} \ No newline at end of file diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt deleted file mode 100644 index 79f3129..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/Labels.txt +++ /dev/null @@ -1,14 +0,0 @@ -# Target labels - ds-populate -# Source files and their labels -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test.rule -/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update.rule diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make deleted file mode 100644 index bfc36a0..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/build.make +++ /dev/null @@ -1,159 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -# Utility rule file for ds-populate. - -# Include any custom commands dependencies for this target. -include CMakeFiles/ds-populate.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/ds-populate.dir/progress.make - -CMakeFiles/ds-populate: CMakeFiles/ds-populate-complete - -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install -CMakeFiles/ds-populate-complete: ds-populate-prefix/src/ds-populate-stamp/ds-populate-test - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'ds-populate'" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate-complete - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: -.PHONY : ds-populate-prefix/src/ds-populate-stamp/ds-populate-update - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-build: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure: ds-populate-prefix/tmp/ds-populate-cfgcmd.txt -ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-download: ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt -ds-populate-prefix/src/ds-populate-stamp/ds-populate-download: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/_deps && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-install: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'ds-populate'" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -Dcfgdir= -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt -ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'ds-populate'" - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: -.PHONY : ds-populate-prefix/src/ds-populate-stamp/ds-populate-update - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-test: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo_append - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test - -ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/tmp/ds-populate-gitupdate.cmake -ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt -ds-populate-prefix/src/ds-populate-stamp/ds-populate-update: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'ds-populate'" - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -Dcan_fetch=YES -P /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake - -ds-populate: CMakeFiles/ds-populate -ds-populate: CMakeFiles/ds-populate-complete -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-build -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-download -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-install -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-test -ds-populate: ds-populate-prefix/src/ds-populate-stamp/ds-populate-update -ds-populate: CMakeFiles/ds-populate.dir/build.make -.PHONY : ds-populate - -# Rule to build all files generated by this target. -CMakeFiles/ds-populate.dir/build: ds-populate -.PHONY : CMakeFiles/ds-populate.dir/build - -CMakeFiles/ds-populate.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/ds-populate.dir/cmake_clean.cmake -.PHONY : CMakeFiles/ds-populate.dir/clean - -CMakeFiles/ds-populate.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/ds-populate.dir/depend - diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake deleted file mode 100644 index a6e2904..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/cmake_clean.cmake +++ /dev/null @@ -1,17 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/ds-populate" - "CMakeFiles/ds-populate-complete" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-build" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-download" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-install" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-test" - "ds-populate-prefix/src/ds-populate-stamp/ds-populate-update" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/ds-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make deleted file mode 100644 index b443413..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for ds-populate. -# This may be replaced when dependencies are built. diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts deleted file mode 100644 index db9b834..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for ds-populate. diff --git a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make b/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make deleted file mode 100644 index d4f6ce3..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/ds-populate.dir/progress.make +++ /dev/null @@ -1,10 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 -CMAKE_PROGRESS_4 = 4 -CMAKE_PROGRESS_5 = 5 -CMAKE_PROGRESS_6 = 6 -CMAKE_PROGRESS_7 = 7 -CMAKE_PROGRESS_8 = 8 -CMAKE_PROGRESS_9 = 9 - diff --git a/build/_deps/ds-subbuild/CMakeFiles/progress.marks b/build/_deps/ds-subbuild/CMakeFiles/progress.marks deleted file mode 100644 index ec63514..0000000 --- a/build/_deps/ds-subbuild/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/build/_deps/ds-subbuild/CMakeLists.txt b/build/_deps/ds-subbuild/CMakeLists.txt deleted file mode 100644 index 94a204a..0000000 --- a/build/_deps/ds-subbuild/CMakeLists.txt +++ /dev/null @@ -1,42 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -cmake_minimum_required(VERSION 3.27.8) - -# Reject any attempt to use a toolchain file. We must not use one because -# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment -# variable is set, the cache variable will have been initialized from it. -unset(CMAKE_TOOLCHAIN_FILE CACHE) -unset(ENV{CMAKE_TOOLCHAIN_FILE}) - -# We name the project and the target for the ExternalProject_Add() call -# to something that will highlight to the user what we are working on if -# something goes wrong and an error message is produced. - -project(ds-populate NONE) - - -# Pass through things we've already detected in the main project to avoid -# paying the cost of redetecting them again in ExternalProject_Add() -set(GIT_EXECUTABLE [==[/opt/homebrew/bin/git]==]) -set(GIT_VERSION_STRING [==[2.42.1]==]) -set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION - [==[/opt/homebrew/bin/git;2.42.1]==] -) - - -include(ExternalProject) -ExternalProject_Add(ds-populate - "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://code.qt.io/qt-labs/qtquickdesigner-components.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "qds-4.1" - SOURCE_DIR "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - BINARY_DIR "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build" - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" - TEST_COMMAND "" - USES_TERMINAL_DOWNLOAD YES - USES_TERMINAL_UPDATE YES - USES_TERMINAL_PATCH YES -) - - diff --git a/build/_deps/ds-subbuild/Makefile b/build/_deps/ds-subbuild/Makefile deleted file mode 100644 index c7b9708..0000000 --- a/build/_deps/ds-subbuild/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named ds-populate - -# Build rule for target. -ds-populate: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ds-populate -.PHONY : ds-populate - -# fast build rule for target. -ds-populate/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ds-populate.dir/build.make CMakeFiles/ds-populate.dir/build -.PHONY : ds-populate/fast - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... ds-populate" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/_deps/ds-subbuild/cmake_install.cmake b/build/_deps/ds-subbuild/cmake_install.cmake deleted file mode 100644 index cb107ca..0000000 --- a/build/_deps/ds-subbuild/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-build deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-configure deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-done deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-download deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt deleted file mode 100644 index cb43566..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt +++ /dev/null @@ -1,15 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The download step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -method=git -command=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake -source_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src -work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps -repository=https://code.qt.io/qt-labs/qtquickdesigner-components.git -remote=origin -init_submodules=TRUE -recurse_submodules=--recursive -submodules= -CMP0097=NEW - diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt deleted file mode 100644 index cb43566..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt +++ /dev/null @@ -1,15 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The download step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -method=git -command=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake -source_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src -work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps -repository=https://code.qt.io/qt-labs/qtquickdesigner-components.git -remote=origin -init_submodules=TRUE -recurse_submodules=--recursive -submodules= -CMP0097=NEW - diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-install deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-mkdir deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt deleted file mode 100644 index 53e1e1e..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-patch-info.txt +++ /dev/null @@ -1,6 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The update step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command= -work_dir= diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-test deleted file mode 100644 index e69de29..0000000 diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt b/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt deleted file mode 100644 index f8cd43e..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-update-info.txt +++ /dev/null @@ -1,7 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The patch step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command (connected)=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-Dcan_fetch=YES;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake -command (disconnected)=/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake;-Dcan_fetch=NO;-P;/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake -work_dir=/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt deleted file mode 100644 index 6a6ed5f..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-cfgcmd.txt +++ /dev/null @@ -1 +0,0 @@ -cmd='' diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake deleted file mode 100644 index 18f4870..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitclone.cmake +++ /dev/null @@ -1,73 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -cmake_minimum_required(VERSION 3.5) - -if(EXISTS "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" AND EXISTS "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" AND - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" IS_NEWER_THAN "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt") - message(STATUS - "Avoiding repeated git clone, stamp file is up to date: " - "'/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt'" - ) - return() -endif() - -execute_process( - COMMAND ${CMAKE_COMMAND} -E rm -rf "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code -) -if(error_code) - message(FATAL_ERROR "Failed to remove directory: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'") -endif() - -# try the clone 3 times in case there is an odd git clone issue -set(error_code 1) -set(number_of_tries 0) -while(error_code AND number_of_tries LESS 3) - execute_process( - COMMAND "/opt/homebrew/bin/git" - clone --no-checkout --config "advice.detachedHead=false" "https://code.qt.io/qt-labs/qtquickdesigner-components.git" "ds-src" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps" - RESULT_VARIABLE error_code - ) - math(EXPR number_of_tries "${number_of_tries} + 1") -endwhile() -if(number_of_tries GREATER 1) - message(STATUS "Had to git clone more than once: ${number_of_tries} times.") -endif() -if(error_code) - message(FATAL_ERROR "Failed to clone repository: 'https://code.qt.io/qt-labs/qtquickdesigner-components.git'") -endif() - -execute_process( - COMMAND "/opt/homebrew/bin/git" - checkout "qds-4.1" -- - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code -) -if(error_code) - message(FATAL_ERROR "Failed to checkout tag: 'qds-4.1'") -endif() - -set(init_submodules TRUE) -if(init_submodules) - execute_process( - COMMAND "/opt/homebrew/bin/git" - submodule update --recursive --init - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - ) -endif() -if(error_code) - message(FATAL_ERROR "Failed to update submodules in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'") -endif() - -# Complete success, update the script-last-run stamp file: -# -execute_process( - COMMAND ${CMAKE_COMMAND} -E copy "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitinfo.txt" "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt" - RESULT_VARIABLE error_code -) -if(error_code) - message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/ds-populate-gitclone-lastrun.txt'") -endif() diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake deleted file mode 100644 index ca8c793..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-gitupdate.cmake +++ /dev/null @@ -1,292 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -cmake_minimum_required(VERSION 3.5) - -function(do_fetch) - message(VERBOSE "Fetching latest from the remote origin") - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git fetch --tags --force "origin" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL LAST - ) -endfunction() - -function(get_hash_for_ref ref out_var err_var) - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git rev-parse "${ref}^0" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - OUTPUT_VARIABLE ref_hash - ERROR_VARIABLE error_msg - OUTPUT_STRIP_TRAILING_WHITESPACE - ) - if(error_code) - set(${out_var} "" PARENT_SCOPE) - else() - set(${out_var} "${ref_hash}" PARENT_SCOPE) - endif() - set(${err_var} "${error_msg}" PARENT_SCOPE) -endfunction() - -get_hash_for_ref(HEAD head_sha error_msg) -if(head_sha STREQUAL "") - message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") -endif() - - -execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git show-ref "qds-4.1" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - OUTPUT_VARIABLE show_ref_output -) -if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") - # Given a full remote/branch-name and we know about it already. Since - # branches can move around, we should always fetch, if permitted. - if(can_fetch) - do_fetch() - endif() - set(checkout_name "qds-4.1") - -elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") - # Given a tag name that we already know about. We don't know if the tag we - # have matches the remote though (tags can move), so we should fetch. As a - # special case to preserve backward compatibility, if we are already at the - # same commit as the tag we hold locally, don't do a fetch and assume the tag - # hasn't moved on the remote. - # FIXME: We should provide an option to always fetch for this case - get_hash_for_ref("qds-4.1" tag_sha error_msg) - if(tag_sha STREQUAL head_sha) - message(VERBOSE "Already at requested tag: ${tag_sha}") - return() - endif() - - if(can_fetch) - do_fetch() - endif() - set(checkout_name "qds-4.1") - -elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") - # Given a branch name without any remote and we already have a branch by that - # name. We might already have that branch checked out or it might be a - # different branch. It isn't fully safe to use a bare branch name without the - # remote, so do a fetch (if allowed) and replace the ref with one that - # includes the remote. - if(can_fetch) - do_fetch() - endif() - set(checkout_name "origin/qds-4.1") - -else() - get_hash_for_ref("qds-4.1" tag_sha error_msg) - if(tag_sha STREQUAL head_sha) - # Have the right commit checked out already - message(VERBOSE "Already at requested ref: ${tag_sha}") - return() - - elseif(tag_sha STREQUAL "") - # We don't know about this ref yet, so we have no choice but to fetch. - if(NOT can_fetch) - message(FATAL_ERROR - "Requested git ref \"qds-4.1\" is not present locally, and not " - "allowed to contact remote due to UPDATE_DISCONNECTED setting." - ) - endif() - - # We deliberately swallow any error message at the default log level - # because it can be confusing for users to see a failed git command. - # That failure is being handled here, so it isn't an error. - if(NOT error_msg STREQUAL "") - message(VERBOSE "${error_msg}") - endif() - do_fetch() - set(checkout_name "qds-4.1") - - else() - # We have the commit, so we know we were asked to find a commit hash - # (otherwise it would have been handled further above), but we don't - # have that commit checked out yet. We don't need to fetch from the remote. - set(checkout_name "qds-4.1") - if(NOT error_msg STREQUAL "") - message(WARNING "${error_msg}") - endif() - - endif() -endif() - -set(git_update_strategy "REBASE") -if(git_update_strategy STREQUAL "") - # Backward compatibility requires REBASE as the default behavior - set(git_update_strategy REBASE) -endif() - -if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") - # Asked to potentially try to rebase first, maybe with fallback to checkout. - # We can't if we aren't already on a branch and we shouldn't if that local - # branch isn't tracking the one we want to checkout. - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git symbolic-ref -q HEAD - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - OUTPUT_VARIABLE current_branch - OUTPUT_STRIP_TRAILING_WHITESPACE - # Don't test for an error. If this isn't a branch, we get a non-zero error - # code but empty output. - ) - - if(current_branch STREQUAL "") - # Not on a branch, checkout is the only sensible option since any rebase - # would always fail (and backward compatibility requires us to checkout in - # this situation) - set(git_update_strategy CHECKOUT) - - else() - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - OUTPUT_VARIABLE upstream_branch - OUTPUT_STRIP_TRAILING_WHITESPACE - COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set - ) - if(NOT upstream_branch STREQUAL checkout_name) - # Not safe to rebase when asked to checkout a different branch to the one - # we are tracking. If we did rebase, we could end up with arbitrary - # commits added to the ref we were asked to checkout if the current local - # branch happens to be able to rebase onto the target branch. There would - # be no error message and the user wouldn't know this was occurring. - set(git_update_strategy CHECKOUT) - endif() - - endif() -elseif(NOT git_update_strategy STREQUAL "CHECKOUT") - message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") -endif() - - -# Check if stash is needed -execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git status --porcelain - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - OUTPUT_VARIABLE repo_status -) -if(error_code) - message(FATAL_ERROR "Failed to get the status") -endif() -string(LENGTH "${repo_status}" need_stash) - -# If not in clean state, stash changes in order to be able to perform a -# rebase or checkout without losing those changes permanently -if(need_stash) - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash save --quiet;--include-untracked - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL ANY - ) -endif() - -if(git_update_strategy STREQUAL "CHECKOUT") - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git checkout "${checkout_name}" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL ANY - ) -else() - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git rebase "${checkout_name}" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - OUTPUT_VARIABLE rebase_output - ERROR_VARIABLE rebase_output - ) - if(error_code) - # Rebase failed, undo the rebase attempt before continuing - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git rebase --abort - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - ) - - if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") - # Not allowed to do a checkout as a fallback, so cannot proceed - if(need_stash) - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - ) - endif() - message(FATAL_ERROR "\nFailed to rebase in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'." - "\nOutput from the attempted rebase follows:" - "\n${rebase_output}" - "\n\nYou will have to resolve the conflicts manually") - endif() - - # Fall back to checkout. We create an annotated tag so that the user - # can manually inspect the situation and revert if required. - # We can't log the failed rebase output because MSVC sees it and - # intervenes, causing the build to fail even though it completes. - # Write it to a file instead. - string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) - set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) - set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) - file(WRITE ${error_log_file} "${rebase_output}") - message(WARNING "Rebase failed, output has been saved to ${error_log_file}" - "\nFalling back to checkout, previous commit tagged as ${tag_name}") - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git tag -a - -m "ExternalProject attempting to move from here to ${checkout_name}" - ${tag_name} - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL ANY - ) - - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git checkout "${checkout_name}" - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL ANY - ) - endif() -endif() - -if(need_stash) - # Put back the stashed changes - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - ) - if(error_code) - # Stash pop --index failed: Try again dropping the index - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git reset --hard --quiet - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - ) - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --quiet - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - RESULT_VARIABLE error_code - ) - if(error_code) - # Stash pop failed: Restore previous state. - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git reset --hard --quiet ${head_sha} - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - ) - execute_process( - COMMAND "/opt/homebrew/bin/git" --git-dir=.git stash pop --index --quiet - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - ) - message(FATAL_ERROR "\nFailed to unstash changes in: '/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src'." - "\nYou will have to resolve the conflicts manually") - endif() - endif() -endif() - -set(init_submodules "TRUE") -if(init_submodules) - execute_process( - COMMAND "/opt/homebrew/bin/git" - --git-dir=.git - submodule update --recursive --init - WORKING_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - COMMAND_ERROR_IS_FATAL ANY - ) -endif() diff --git a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake b/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake deleted file mode 100644 index 3c26ec4..0000000 --- a/build/_deps/ds-subbuild/ds-populate-prefix/tmp/ds-populate-mkdirs.cmake +++ /dev/null @@ -1,22 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -cmake_minimum_required(VERSION 3.5) - -file(MAKE_DIRECTORY - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/tmp" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src" - "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp" -) - -set(configSubDirs ) -foreach(subDir IN LISTS configSubDirs) - file(MAKE_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp/${subDir}") -endforeach() -if(cfgdir) - file(MAKE_DIRECTORY "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-subbuild/ds-populate-prefix/src/ds-populate-stamp${cfgdir}") # cfgdir has leading slash -endif() diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake deleted file mode 100644 index 5de9e91..0000000 --- a/build/cmake_install.cmake +++ /dev/null @@ -1,77 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/content/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - execute_process(COMMAND /Users/mason/anaconda3/bin/install_name_tool - -delete_rpath "/opt/homebrew/lib" - "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/strip" -u -r "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/compile_commands.json b/build/compile_commands.json deleted file mode 100644 index 3b141a2..0000000 --- a/build/compile_commands.json +++ /dev/null @@ -1,1310 +0,0 @@ -[ -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/main.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/src/main.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_configuration.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/bolt_dashapp_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_qmake_Main.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBULD_QDS_COMPONENTS=true -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/QuickStudioComponents_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/quickstudiocomponents_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/quickstudiocomponents_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_PieItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_TriangleItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_SvgPathItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_EllipseItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_FlipableItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RectangleItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_RegularPolygonItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_BorderItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_IsoItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_GroupItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_ArcArrow_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents.dir/.rcc/qmlcache/QuickStudioComponents_StraightArrow_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Components.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/QuickStudioComponents_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_qmlcache.dir/.rcc/qmlcache/QuickStudioComponents_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponents_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/components -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponents_resources_2.dir/.rcc/qrc_QuickStudioComponents_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin.dir/QuickStudioComponentsplugin_QtQuick_Studio_ComponentsPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/components/QuickStudioComponentsplugin_init.cpp", - "output": "_deps/ds-build/src/imports/components/CMakeFiles/QuickStudioComponentsplugin_init.dir/QuickStudioComponentsplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/QuickStudioEffects_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/quickstudioeffects_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/quickstudioeffects_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_SaturationItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RotationItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BlendEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_BrightnessContrastEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorizeEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ColorOverlayEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DesaturationEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DirectionalBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DisplaceEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_DropShadowEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_FastBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GammaAdjustEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GaussianBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_GlowEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_HueSaturationEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_InnerShadowEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_LevelAdjustEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_MaskedBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_OpacityMaskEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RadialBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_RecursiveBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ThresholdMaskEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects.dir/.rcc/qmlcache/QuickStudioEffects_ZoomBlurEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Effects.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/QuickStudioEffects_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_qmlcache.dir/.rcc/qmlcache/QuickStudioEffects_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffects_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/effects_qt6 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffects_resources_2.dir/.rcc/qrc_QuickStudioEffects_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin.dir/QuickStudioEffectsplugin_QtQuick_Studio_EffectsPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/effects_qt6/QuickStudioEffectsplugin_init.cpp", - "output": "_deps/ds-build/src/imports/effects_qt6/CMakeFiles/QuickStudioEffectsplugin_init.dir/QuickStudioEffectsplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/FlowView_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/flowview_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/flowview_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_DefaultFlowEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_SwipeInteraction_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowFadeEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushLeftEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushRightEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideDownEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideLeftEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideRightEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowSlideUpEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowMoveEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransition_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowTransitionList_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowView_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowView_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowPushUpEffect_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowItem_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowDecision_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowWildcard_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowActionArea_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_FlowState_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_FlowState_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView.dir/.rcc/qmlcache/FlowView_+DesignMode/FlowView_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/FlowView_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qmlcache/FlowView_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_qmlcache.dir/.rcc/qmlcache/FlowView_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowView_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/flowview -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/.rcc/qrc_FlowView_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowView_resources_1.dir/.rcc/qrc_FlowView_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_FlowViewPlugin.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin.dir/FlowViewplugin_FlowViewPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/flowview/FlowViewplugin_init.cpp", - "output": "_deps/ds-build/src/imports/flowview/CMakeFiles/FlowViewplugin_init.dir/FlowViewplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/QuickStudioLogicHelper_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/quickstudiologichelper_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/quickstudiologichelper_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_BidirectionalBinding_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_RangeMapper_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_MinMaxMapper_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_StringMapper_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_OrOperator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_AndOperator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper.dir/.rcc/qmlcache/QuickStudioLogicHelper_NotOperator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_LogicHelper.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/QuickStudioLogicHelper_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_qmlcache.dir/.rcc/qmlcache/QuickStudioLogicHelper_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelper_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/logichelper -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelper_resources_2.dir/.rcc/qrc_QuickStudioLogicHelper_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin.dir/QuickStudioLogicHelperplugin_QtQuick_Studio_LogicHelperPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/logichelper/QuickStudioLogicHelperplugin_init.cpp", - "output": "_deps/ds-build/src/imports/logichelper/CMakeFiles/QuickStudioLogicHelperplugin_init.dir/QuickStudioLogicHelperplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/QuickStudioMultiText_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/quickstudiomultitext_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/quickstudiomultitext_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextElement_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextItem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText.dir/.rcc/qmlcache/QuickStudioMultiText_MultiTextException_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_MultiText.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/QuickStudioMultiText_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_qmlcache.dir/.rcc/qmlcache/QuickStudioMultiText_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiText_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/multitext -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiText_resources_2.dir/.rcc/qrc_QuickStudioMultiText_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin.dir/QuickStudioMultiTextplugin_QtQuick_Studio_MultiTextPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/multitext/QuickStudioMultiTextplugin_init.cpp", - "output": "_deps/ds-build/src/imports/multitext/CMakeFiles/QuickStudioMultiTextplugin_init.dir/QuickStudioMultiTextplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/QuickStudioEventSimulator_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/quickstudioeventsimulator_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/quickstudioeventsimulator_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator.dir/.rcc/qmlcache/QuickStudioEventSimulator_EventSimulatorDelegate_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSimulator.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/QuickStudioEventSimulator_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSimulator_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulator_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsimulator -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulator_resources_2.dir/.rcc/qrc_QuickStudioEventSimulator_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin.dir/QuickStudioEventSimulatorplugin_QtQuick_Studio_EventSimulatorPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsimulator/QuickStudioEventSimulatorplugin_init.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsimulator/CMakeFiles/QuickStudioEventSimulatorplugin_init.dir/QuickStudioEventSimulatorplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/QuickStudioEventSystem_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/quickstudioeventsystem_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/quickstudioeventsystem_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventSystem_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem.dir/.rcc/qmlcache/QuickStudioEventSystem_EventListener_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_EventSystem.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/QuickStudioEventSystem_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_qmlcache.dir/.rcc/qmlcache/QuickStudioEventSystem_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystem_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/tools/eventsystem -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystem_resources_2.dir/.rcc/qrc_QuickStudioEventSystem_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin.dir/QuickStudioEventSystemplugin_QtQuick_Studio_EventSystemPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/tools/eventsystem/QuickStudioEventSystemplugin_init.cpp", - "output": "_deps/ds-build/src/imports/tools/eventsystem/CMakeFiles/QuickStudioEventSystemplugin_init.dir/QuickStudioEventSystemplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/QuickStudioApplication_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/quickstudioapplication_qmltyperegistrations.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application/quickstudioapplication.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication.dir/quickstudioapplication.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplication_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-src/src/imports/application -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -I/opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplication_resources_1.dir/.rcc/qrc_qmake_QtQuick_Studio_Application.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin.dir/QuickStudioApplicationplugin_QtQuick_Studio_ApplicationPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/_deps/ds-build/src/imports/application/QuickStudioApplicationplugin_init.cpp", - "output": "_deps/ds-build/src/imports/application/CMakeFiles/QuickStudioApplicationplugin_init.dir/QuickStudioApplicationplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "output": "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "output": "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "output": "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "output": "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "output": "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "output": "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp", - "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/can.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", - "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPlugin.dir/backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", - "output": "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", - "output": "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", - "output": "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" -} -] \ No newline at end of file diff --git a/build/content/.rcc/content_raw_qml_0.qrc b/build/content/.rcc/content_raw_qml_0.qrc deleted file mode 100644 index c5acace..0000000 --- a/build/content/.rcc/content_raw_qml_0.qrc +++ /dev/null @@ -1,13 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf - - - diff --git a/build/content/.rcc/qmake_content.qrc b/build/content/.rcc/qmake_content.qrc deleted file mode 100644 index 77595ae..0000000 --- a/build/content/.rcc/qmake_content.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir - - - diff --git a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp deleted file mode 100644 index 27a04d1..0000000 --- a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp +++ /dev/null @@ -1,6 +0,0 @@ -/content/App.qml -/content/Screen01.ui.qml -/content/Speedometer.qml -/content/BatterySlider.qml -/content/TempSlider.qml -/content/WarningSymbol.qml diff --git a/build/content/.rcc/qmllint/content.rsp b/build/content/.rcc/qmllint/content.rsp deleted file mode 100644 index f09eae5..0000000 --- a/build/content/.rcc/qmllint/content.rsp +++ /dev/null @@ -1,17 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml diff --git a/build/content/.rcc/qmllint/content_json.rsp b/build/content/.rcc/qmllint/content_json.rsp deleted file mode 100644 index f88c02b..0000000 --- a/build/content/.rcc/qmllint/content_json.rsp +++ /dev/null @@ -1,19 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/content_qmllint.json diff --git a/build/content/.rcc/qmllint/content_module.rsp b/build/content/.rcc/qmllint/content_module.rsp deleted file mode 100644 index 111749f..0000000 --- a/build/content/.rcc/qmllint/content_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc ---module -content diff --git a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 5819b47..0000000 --- a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/content/CMakeFiles/content.dir/DependInfo.cmake b/build/content/CMakeFiles/content.dir/DependInfo.cmake deleted file mode 100644 index 6848ad0..0000000 --- a/build/content/CMakeFiles/content.dir/DependInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content.dir/build.make b/build/content/CMakeFiles/content.dir/build.make deleted file mode 100644 index 148be13..0000000 --- a/build/content/CMakeFiles/content.dir/build.make +++ /dev/null @@ -1,316 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content.dir/flags.make - -content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - -content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt -content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes - -qml/content/content.qmltypes: content/content_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/content/content.qmltypes - -content/.rcc/qmlcache/content_App_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_App_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_App_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_App_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/content_App_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/App.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/content_Screen01.ui_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Screen01.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - -content/.rcc/qmlcache/content_Speedometer_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_Speedometer_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_Speedometer_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_Speedometer_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/content_Speedometer_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Speedometer.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/content_BatterySlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - -content/.rcc/qmlcache/content_TempSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_TempSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_TempSlider_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_TempSlider_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/content_TempSlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TempSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: qml/content/content.qmltypes -content/.rcc/qmlcache/content_WarningSymbol_qml.cpp: qml/content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/content_WarningSymbol_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/WarningSymbol.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml - -content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating meta_types/qt6content_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/content_autogen/mocs_compilation.cpp -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp > CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -MF CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp > CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/.rcc/qmlcache/content_App_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/.rcc/qmlcache/content_Speedometer_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_BatterySlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/.rcc/qmlcache/content_TempSlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/.rcc/qmlcache/content_WarningSymbol_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s - -# Object files for target content -content_OBJECTS = \ -"CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" - -# External object files for target content -content_EXTERNAL_OBJECTS = - -content/libcontent.a: content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/build.make -content/libcontent.a: content/CMakeFiles/content.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Linking CXX static library libcontent.a" - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/content.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -content/CMakeFiles/content.dir/build: content/libcontent.a -.PHONY : content/CMakeFiles/content.dir/build - -content/CMakeFiles/content.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content.dir/clean - -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_App_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatterySlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Speedometer_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TempSlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_WarningSymbol_qml.cpp -content/CMakeFiles/content.dir/depend: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json -content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json.gen -content/CMakeFiles/content.dir/depend: qml/content/content.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content.dir/depend - diff --git a/build/content/CMakeFiles/content.dir/cmake_clean.cmake b/build/content/CMakeFiles/content.dir/cmake_clean.cmake deleted file mode 100644 index cfa91a0..0000000 --- a/build/content/CMakeFiles/content.dir/cmake_clean.cmake +++ /dev/null @@ -1,38 +0,0 @@ -file(REMOVE_RECURSE - "../qml/content/content.qmltypes" - ".rcc/qmlcache/content_App_qml.cpp" - ".rcc/qmlcache/content_BatterySlider_qml.cpp" - ".rcc/qmlcache/content_Screen01.ui_qml.cpp" - ".rcc/qmlcache/content_Speedometer_qml.cpp" - ".rcc/qmlcache/content_TempSlider_qml.cpp" - ".rcc/qmlcache/content_WarningSymbol_qml.cpp" - "CMakeFiles/content_autogen.dir/AutogenUsed.txt" - "CMakeFiles/content_autogen.dir/ParseCache.txt" - "content_autogen" - "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o.d" - "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" - "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" - "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" - "content_qmltyperegistrations.cpp" - "libcontent.a" - "libcontent.pdb" - "meta_types/qt6content_debug_metatypes.json" - "meta_types/qt6content_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake deleted file mode 100644 index 8bbd60e..0000000 --- a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libcontent.a" -) diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.make b/build/content/CMakeFiles/content.dir/compiler_depend.make deleted file mode 100644 index 5ebb3e6..0000000 --- a/build/content/CMakeFiles/content.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.ts b/build/content/CMakeFiles/content.dir/compiler_depend.ts deleted file mode 100644 index b42d30e..0000000 --- a/build/content/CMakeFiles/content.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content. diff --git a/build/content/CMakeFiles/content.dir/depend.make b/build/content/CMakeFiles/content.dir/depend.make deleted file mode 100644 index 41ab280..0000000 --- a/build/content/CMakeFiles/content.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/flags.make b/build/content/CMakeFiles/content.dir/flags.make deleted file mode 100644 index 869a657..0000000 --- a/build/content/CMakeFiles/content.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content.dir/link.txt b/build/content/CMakeFiles/content.dir/link.txt deleted file mode 100644 index 64f081b..0000000 --- a/build/content/CMakeFiles/content.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libcontent.a CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libcontent.a diff --git a/build/content/CMakeFiles/content.dir/progress.make b/build/content/CMakeFiles/content.dir/progress.make deleted file mode 100644 index df7d1de..0000000 --- a/build/content/CMakeFiles/content.dir/progress.make +++ /dev/null @@ -1,19 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 93 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = 94 -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = 95 -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = - diff --git a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json deleted file mode 100644 index 85a42ed..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen.dir/build.make b/build/content/CMakeFiles/content_autogen.dir/build.make deleted file mode 100644 index c872bc7..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_autogen.dir/progress.make - -content/CMakeFiles/content_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug - -content_autogen: content/CMakeFiles/content_autogen -content_autogen: content/CMakeFiles/content_autogen.dir/build.make -.PHONY : content_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/content_autogen.dir/build: content_autogen -.PHONY : content/CMakeFiles/content_autogen.dir/build - -content/CMakeFiles/content_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_autogen.dir/clean - -content/CMakeFiles/content_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_autogen.dir/depend - diff --git a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 870483e..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_autogen" - "content_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make deleted file mode 100644 index 6f50c80..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts deleted file mode 100644 index d4a1a6a..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_autogen. diff --git a/build/content/CMakeFiles/content_autogen.dir/progress.make b/build/content/CMakeFiles/content_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake b/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make deleted file mode 100644 index e888f2f..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_automoc_json_extraction.dir/progress.make - -content/CMakeFiles/content_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include - -content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction -content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/build.make -.PHONY : content_automoc_json_extraction - -# Rule to build all files generated by this target. -content/CMakeFiles/content_automoc_json_extraction.dir/build: content_automoc_json_extraction -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/build - -content/CMakeFiles/content_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/clean - -content/CMakeFiles/content_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/depend - diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index 742f2e1..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_automoc_json_extraction" - "meta_types/content_json_file_list.txt" - "meta_types/content_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index c412f83..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts b/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 790fece..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_automoc_json_extraction. diff --git a/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make b/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/content/CMakeFiles/content_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 8a3644e..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp" "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" "gcc" "content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp" "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmlcache.dir/build.make b/build/content/CMakeFiles/content_qmlcache.dir/build.make deleted file mode 100644 index 84b0ce4..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content_qmlcache.dir/flags.make - -content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content_qmlcache.dir/flags.make -content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/content_qmlcache_autogen/mocs_compilation.cpp -content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp - -content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content_qmlcache.dir/flags.make -content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/.rcc/qmlcache/content_qmlcache_loader.cpp -content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -MF CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp - -content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp > CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i - -content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp -o CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s - -content_qmlcache: content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -content_qmlcache: content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -content_qmlcache: content/CMakeFiles/content_qmlcache.dir/build.make -.PHONY : content_qmlcache - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmlcache.dir/build: content_qmlcache -.PHONY : content/CMakeFiles/content_qmlcache.dir/build - -content/CMakeFiles/content_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmlcache.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmlcache.dir/clean - -content/CMakeFiles/content_qmlcache.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmlcache.dir/depend - diff --git a/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index c27caff..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/content_qmlcache_autogen.dir/ParseCache.txt" - "content_qmlcache_autogen" - "CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" - "CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" - "CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make deleted file mode 100644 index f39a886..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index 6653be4..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content_qmlcache. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/depend.make b/build/content/CMakeFiles/content_qmlcache.dir/depend.make deleted file mode 100644 index 17674e5..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache.dir/flags.make b/build/content/CMakeFiles/content_qmlcache.dir/flags.make deleted file mode 100644 index 6eeee77..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content_qmlcache.dir/progress.make b/build/content/CMakeFiles/content_qmlcache.dir/progress.make deleted file mode 100644 index f07b37a..0000000 --- a/build/content/CMakeFiles/content_qmlcache.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 96 - diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index 1f697eb..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make deleted file mode 100644 index c448396..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmlcache_autogen.dir/progress.make - -content/CMakeFiles/content_qmlcache_autogen: content/.rcc/qmlcache/content_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/AutogenInfo.json Debug - -content/.rcc/qmlcache/content_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmlcache/content_qml_loader_file_list.rsp -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/content_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/content_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_content --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp - -content_qmlcache_autogen: content/.rcc/qmlcache/content_qmlcache_loader.cpp -content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen -content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/build.make -.PHONY : content_qmlcache_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmlcache_autogen.dir/build: content_qmlcache_autogen -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/build - -content/CMakeFiles/content_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/clean - -content/CMakeFiles/content_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/depend - diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 96f86e6..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/content_qmlcache_loader.cpp" - "CMakeFiles/content_qmlcache_autogen" - "content_qmlcache_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index 289671b..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 84c20fe..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmlcache_autogen. diff --git a/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make b/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/content/CMakeFiles/content_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint.dir/build.make b/build/content/CMakeFiles/content_qmllint.dir/build.make deleted file mode 100644 index e11d25c..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/build.make +++ /dev/null @@ -1,94 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint.dir/progress.make - -content/CMakeFiles/content_qmllint: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml -content/CMakeFiles/content_qmllint: content/.rcc/qmllint/content.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content.rsp - -content_qmllint: content/CMakeFiles/content_qmllint -content_qmllint: content/CMakeFiles/content_qmllint.dir/build.make -.PHONY : content_qmllint - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint.dir/build: content_qmllint -.PHONY : content/CMakeFiles/content_qmllint.dir/build - -content/CMakeFiles/content_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint.dir/clean - -content/CMakeFiles/content_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 7c52960..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make deleted file mode 100644 index cd46e39..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 8e8f87e..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint. diff --git a/build/content/CMakeFiles/content_qmllint.dir/progress.make b/build/content/CMakeFiles/content_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/build.make b/build/content/CMakeFiles/content_qmllint_json.dir/build.make deleted file mode 100644 index 8b6c433..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/build.make +++ /dev/null @@ -1,94 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint_json. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint_json.dir/progress.make - -content/CMakeFiles/content_qmllint_json: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml -content/CMakeFiles/content_qmllint_json: content/.rcc/qmllint/content_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_json.rsp - -content_qmllint_json: content/CMakeFiles/content_qmllint_json -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/build.make -.PHONY : content_qmllint_json - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint_json.dir/build: content_qmllint_json -.PHONY : content/CMakeFiles/content_qmllint_json.dir/build - -content/CMakeFiles/content_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean - -content/CMakeFiles/content_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint_json.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 3b5be7b..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index c249484..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 9a27907..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint_json. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/build.make b/build/content/CMakeFiles/content_qmllint_module.dir/build.make deleted file mode 100644 index 83134c5..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/build.make +++ /dev/null @@ -1,94 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint_module. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint_module.dir/progress.make - -content/CMakeFiles/content_qmllint_module: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml -content/CMakeFiles/content_qmllint_module: content/.rcc/qmllint/content_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_module.rsp - -content_qmllint_module: content/CMakeFiles/content_qmllint_module -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/build.make -.PHONY : content_qmllint_module - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint_module.dir/build: content_qmllint_module -.PHONY : content/CMakeFiles/content_qmllint_module.dir/build - -content/CMakeFiles/content_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean - -content/CMakeFiles/content_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint_module.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index fc5cd8a..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 3894382..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index c701c55..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint_module. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 6270509..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make deleted file mode 100644 index f302967..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmltyperegistration.dir/progress.make - -content/CMakeFiles/content_qmltyperegistration: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content_qmltyperegistration: qml/content/content.qmltypes - -content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt -content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes - -qml/content/content.qmltypes: content/content_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/content/content.qmltypes - -content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6content_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration -content_qmltyperegistration: content/content_qmltyperegistrations.cpp -content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json -content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json.gen -content_qmltyperegistration: qml/content/content.qmltypes -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/build.make -.PHONY : content_qmltyperegistration - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmltyperegistration.dir/build: content_qmltyperegistration -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/build - -content/CMakeFiles/content_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean - -content/CMakeFiles/content_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/depend - diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 73345da..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../qml/content/content.qmltypes" - "CMakeFiles/content_qmltyperegistration" - "content_qmltyperegistrations.cpp" - "meta_types/qt6content_debug_metatypes.json" - "meta_types/qt6content_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index bcc5759..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index b5ac76f..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmltyperegistration. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 67643d9..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" "gcc" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_1.dir/build.make b/build/content/CMakeFiles/content_resources_1.dir/build.make deleted file mode 100644 index 5a3f51d..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content_resources_1.dir/flags.make - -content/.rcc/qrc_qmake_content.cpp: qml/content/qmldir -content/.rcc/qrc_qmake_content.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qrc_qmake_content.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp --name qmake_content /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content_resources_1.dir/flags.make -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/.rcc/qrc_qmake_content.cpp -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -MF CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp > CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s - -content_resources_1: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -content_resources_1: content/CMakeFiles/content_resources_1.dir/build.make -.PHONY : content_resources_1 - -# Rule to build all files generated by this target. -content/CMakeFiles/content_resources_1.dir/build: content_resources_1 -.PHONY : content/CMakeFiles/content_resources_1.dir/build - -content/CMakeFiles/content_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_1.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_resources_1.dir/clean - -content/CMakeFiles/content_resources_1.dir/depend: content/.rcc/qrc_qmake_content.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_resources_1.dir/depend - diff --git a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 0404d80..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_content.cpp" - "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o" - "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make deleted file mode 100644 index 80fcb9a..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts deleted file mode 100644 index a8149ac..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content_resources_1. diff --git a/build/content/CMakeFiles/content_resources_1.dir/depend.make b/build/content/CMakeFiles/content_resources_1.dir/depend.make deleted file mode 100644 index ec5b3e6..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/flags.make b/build/content/CMakeFiles/content_resources_1.dir/flags.make deleted file mode 100644 index d5532de..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content_resources_1.dir/progress.make b/build/content/CMakeFiles/content_resources_1.dir/progress.make deleted file mode 100644 index cf90e91..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 97 -CMAKE_PROGRESS_2 = - diff --git a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake deleted file mode 100644 index c7d4569..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" "gcc" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_2.dir/build.make b/build/content/CMakeFiles/content_resources_2.dir/build.make deleted file mode 100644 index 1938060..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/build.make +++ /dev/null @@ -1,114 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content_resources_2.dir/flags.make - -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf -content/.rcc/qrc_content_raw_qml_0.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qrc_content_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource content_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp --name content_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content_resources_2.dir/flags.make -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/.rcc/qrc_content_raw_qml_0.cpp -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -MF CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp > CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s - -content_resources_2: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -content_resources_2: content/CMakeFiles/content_resources_2.dir/build.make -.PHONY : content_resources_2 - -# Rule to build all files generated by this target. -content/CMakeFiles/content_resources_2.dir/build: content_resources_2 -.PHONY : content/CMakeFiles/content_resources_2.dir/build - -content/CMakeFiles/content_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_2.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_resources_2.dir/clean - -content/CMakeFiles/content_resources_2.dir/depend: content/.rcc/qrc_content_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_resources_2.dir/depend - diff --git a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index 5d952ba..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_content_raw_qml_0.cpp" - "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make deleted file mode 100644 index 7345f77..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts deleted file mode 100644 index a266955..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content_resources_2. diff --git a/build/content/CMakeFiles/content_resources_2.dir/depend.make b/build/content/CMakeFiles/content_resources_2.dir/depend.make deleted file mode 100644 index b11eccc..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/flags.make b/build/content/CMakeFiles/content_resources_2.dir/flags.make deleted file mode 100644 index d5532de..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content_resources_2.dir/progress.make b/build/content/CMakeFiles/content_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_tooling.dir/build.make b/build/content/CMakeFiles/content_tooling.dir/build.make deleted file mode 100644 index 4d04f43..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/build.make +++ /dev/null @@ -1,123 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_tooling. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_tooling.dir/progress.make - -qml/content/App.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying App.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/App.qml - -qml/content/Screen01.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying Screen01.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/Screen01.ui.qml - -qml/content/Speedometer.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying Speedometer.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/Speedometer.qml - -qml/content/BatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying BatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/BatterySlider.qml - -qml/content/TempSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying TempSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/TempSlider.qml - -qml/content/WarningSymbol.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying WarningSymbol.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/WarningSymbol.qml /Users/mason/Documents/Code/dash-cpp/build/qml/content/WarningSymbol.qml - -qml/content/fonts/fonts.txt: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying fonts/fonts.txt to /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/fonts.txt - -qml/content/fonts/nasalization-rg.otf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying fonts/nasalization-rg.otf to /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf /Users/mason/Documents/Code/dash-cpp/build/qml/content/fonts/nasalization-rg.otf - -content_tooling: qml/content/App.qml -content_tooling: qml/content/BatterySlider.qml -content_tooling: qml/content/Screen01.ui.qml -content_tooling: qml/content/Speedometer.qml -content_tooling: qml/content/TempSlider.qml -content_tooling: qml/content/WarningSymbol.qml -content_tooling: qml/content/fonts/fonts.txt -content_tooling: qml/content/fonts/nasalization-rg.otf -content_tooling: content/CMakeFiles/content_tooling.dir/build.make -.PHONY : content_tooling - -# Rule to build all files generated by this target. -content/CMakeFiles/content_tooling.dir/build: content_tooling -.PHONY : content/CMakeFiles/content_tooling.dir/build - -content/CMakeFiles/content_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_tooling.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_tooling.dir/clean - -content/CMakeFiles/content_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_tooling.dir/depend - diff --git a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 714d3fa..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,15 +0,0 @@ -file(REMOVE_RECURSE - "../qml/content/App.qml" - "../qml/content/BatterySlider.qml" - "../qml/content/Screen01.ui.qml" - "../qml/content/Speedometer.qml" - "../qml/content/TempSlider.qml" - "../qml/content/WarningSymbol.qml" - "../qml/content/fonts/fonts.txt" - "../qml/content/fonts/nasalization-rg.otf" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make deleted file mode 100644 index e0641c5..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_tooling. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts deleted file mode 100644 index f88052a..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_tooling. diff --git a/build/content/CMakeFiles/content_tooling.dir/progress.make b/build/content/CMakeFiles/content_tooling.dir/progress.make deleted file mode 100644 index f9fd3fd..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/progress.make +++ /dev/null @@ -1,9 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 98 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = - diff --git a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake deleted file mode 100644 index ce31d62..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin.dir/build.make b/build/content/CMakeFiles/contentplugin.dir/build.make deleted file mode 100644 index 64db6e0..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/contentplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/contentplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/contentplugin.dir/flags.make - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/contentplugin_autogen/mocs_compilation.cpp -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/contentplugin_contentPlugin.cpp -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp > CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s - -# Object files for target contentplugin -contentplugin_OBJECTS = \ -"CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - -# External object files for target contentplugin -contentplugin_EXTERNAL_OBJECTS = - -qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/build.make -qml/content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../qml/content/libcontentplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/contentplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin.dir/build: qml/content/libcontentplugin.a -.PHONY : content/CMakeFiles/contentplugin.dir/build - -content/CMakeFiles/contentplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin.dir/clean - -content/CMakeFiles/contentplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake deleted file mode 100644 index 479adc9..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../qml/content/libcontentplugin.a" - "../qml/content/libcontentplugin.pdb" - "CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/contentplugin_autogen.dir/ParseCache.txt" - "contentplugin_autogen" - "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/contentplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 3b0c2e9..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../qml/content/libcontentplugin.a" -) diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make deleted file mode 100644 index 78cdb39..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for contentplugin. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts deleted file mode 100644 index 6fe1680..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for contentplugin. diff --git a/build/content/CMakeFiles/contentplugin.dir/depend.make b/build/content/CMakeFiles/contentplugin.dir/depend.make deleted file mode 100644 index 4d6ce9a..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for contentplugin. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/flags.make b/build/content/CMakeFiles/contentplugin.dir/flags.make deleted file mode 100644 index a455f96..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/contentplugin.dir/link.txt b/build/content/CMakeFiles/contentplugin.dir/link.txt deleted file mode 100644 index 7303b6e..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../qml/content/libcontentplugin.a CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../qml/content/libcontentplugin.a diff --git a/build/content/CMakeFiles/contentplugin.dir/progress.make b/build/content/CMakeFiles/contentplugin.dir/progress.make deleted file mode 100644 index 60646ad..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 99 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index c3682db..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=content" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make deleted file mode 100644 index 0e51117..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_autogen.dir/progress.make - -content/CMakeFiles/contentplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json Debug - -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/build.make -.PHONY : contentplugin_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_autogen.dir/build: contentplugin_autogen -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/build - -content/CMakeFiles/contentplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean - -content/CMakeFiles/contentplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 0347408..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_autogen" - "contentplugin_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 49dd693..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index f34cab5..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_autogen. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake deleted file mode 100644 index efcd693..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init.dir/build.make b/build/content/CMakeFiles/contentplugin_init.dir/build.make deleted file mode 100644 index 2a60a39..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/contentplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/contentplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/contentplugin_init.dir/flags.make - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/contentplugin_init_autogen/mocs_compilation.cpp -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/contentplugin_init.cpp -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s - -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/build.make -.PHONY : contentplugin_init - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_init.dir/build: contentplugin_init -.PHONY : content/CMakeFiles/contentplugin_init.dir/build - -content/CMakeFiles/contentplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_init.dir/clean - -content/CMakeFiles/contentplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_init.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index aafae09..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt" - "contentplugin_init_autogen" - "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" - "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/contentplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make deleted file mode 100644 index f2d8920..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for contentplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 09477d2..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for contentplugin_init. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/depend.make b/build/content/CMakeFiles/contentplugin_init.dir/depend.make deleted file mode 100644 index 50d850e..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for contentplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/flags.make b/build/content/CMakeFiles/contentplugin_init.dir/flags.make deleted file mode 100644 index b630a1a..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/progress.make b/build/content/CMakeFiles/contentplugin_init.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 5606966..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_WarningSymbol_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make deleted file mode 100644 index b7adc9f..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_init_autogen.dir/progress.make - -content/CMakeFiles/contentplugin_init_autogen: content/contentplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json Debug - -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/build.make -.PHONY : contentplugin_init_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_init_autogen.dir/build: contentplugin_init_autogen -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/build - -content/CMakeFiles/contentplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean - -content/CMakeFiles/contentplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 1e12c81..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_init_autogen" - "contentplugin_init_autogen/mocs_compilation.cpp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index b45617c..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index c4ddd5e..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_init_autogen. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make deleted file mode 100644 index 7ad5bcb..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 100 - diff --git a/build/content/CMakeFiles/progress.marks b/build/content/CMakeFiles/progress.marks deleted file mode 100644 index 45a4fb7..0000000 --- a/build/content/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -8 diff --git a/build/content/Makefile b/build/content/Makefile deleted file mode 100644 index 438df0b..0000000 --- a/build/content/Makefile +++ /dev/null @@ -1,847 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/content//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -content/CMakeFiles/content.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/rule -.PHONY : content/CMakeFiles/content.dir/rule - -# Convenience name for target. -content: content/CMakeFiles/content.dir/rule -.PHONY : content - -# fast build rule for target. -content/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build -.PHONY : content/fast - -# Convenience name for target. -content/CMakeFiles/content_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_automoc_json_extraction.dir/rule -.PHONY : content/CMakeFiles/content_automoc_json_extraction.dir/rule - -# Convenience name for target. -content_automoc_json_extraction: content/CMakeFiles/content_automoc_json_extraction.dir/rule -.PHONY : content_automoc_json_extraction - -# fast build rule for target. -content_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_automoc_json_extraction.dir/build.make content/CMakeFiles/content_automoc_json_extraction.dir/build -.PHONY : content_automoc_json_extraction/fast - -# Convenience name for target. -content/CMakeFiles/content_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule - -# Convenience name for target. -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content_qmltyperegistration - -# fast build rule for target. -content_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build -.PHONY : content_qmltyperegistration/fast - -# Convenience name for target. -content/CMakeFiles/content_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content/CMakeFiles/content_resources_1.dir/rule - -# Convenience name for target. -content_resources_1: content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content_resources_1 - -# fast build rule for target. -content_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build -.PHONY : content_resources_1/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/rule -.PHONY : content/CMakeFiles/contentplugin.dir/rule - -# Convenience name for target. -contentplugin: content/CMakeFiles/contentplugin.dir/rule -.PHONY : contentplugin - -# fast build rule for target. -contentplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build -.PHONY : contentplugin/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content/CMakeFiles/content_qmllint.dir/rule - -# Convenience name for target. -content_qmllint: content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content_qmllint - -# fast build rule for target. -content_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build -.PHONY : content_qmllint/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule - -# Convenience name for target. -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content_qmllint_json - -# fast build rule for target. -content_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build -.PHONY : content_qmllint_json/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule - -# Convenience name for target. -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content_qmllint_module - -# fast build rule for target. -content_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build -.PHONY : content_qmllint_module/fast - -# Convenience name for target. -content/CMakeFiles/content_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache.dir/rule -.PHONY : content/CMakeFiles/content_qmlcache.dir/rule - -# Convenience name for target. -content_qmlcache: content/CMakeFiles/content_qmlcache.dir/rule -.PHONY : content_qmlcache - -# fast build rule for target. -content_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/build -.PHONY : content_qmlcache/fast - -# Convenience name for target. -content/CMakeFiles/content_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content/CMakeFiles/content_resources_2.dir/rule - -# Convenience name for target. -content_resources_2: content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content_resources_2 - -# fast build rule for target. -content_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build -.PHONY : content_resources_2/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : content/CMakeFiles/contentplugin_init.dir/rule - -# Convenience name for target. -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : contentplugin_init - -# fast build rule for target. -contentplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build -.PHONY : contentplugin_init/fast - -# Convenience name for target. -content/CMakeFiles/content_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/rule -.PHONY : content/CMakeFiles/content_autogen.dir/rule - -# Convenience name for target. -content_autogen: content/CMakeFiles/content_autogen.dir/rule -.PHONY : content_autogen - -# fast build rule for target. -content_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build -.PHONY : content_autogen/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule - -# Convenience name for target. -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : contentplugin_autogen - -# fast build rule for target. -contentplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build -.PHONY : contentplugin_autogen/fast - -# Convenience name for target. -content/CMakeFiles/content_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmlcache_autogen.dir/rule -.PHONY : content/CMakeFiles/content_qmlcache_autogen.dir/rule - -# Convenience name for target. -content_qmlcache_autogen: content/CMakeFiles/content_qmlcache_autogen.dir/rule -.PHONY : content_qmlcache_autogen - -# fast build rule for target. -content_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache_autogen.dir/build.make content/CMakeFiles/content_qmlcache_autogen.dir/build -.PHONY : content_qmlcache_autogen/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule - -# Convenience name for target. -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : contentplugin_init_autogen - -# fast build rule for target. -contentplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build -.PHONY : contentplugin_init_autogen/fast - -.rcc/qmlcache/content_App_qml.o: .rcc/qmlcache/content_App_qml.cpp.o -.PHONY : .rcc/qmlcache/content_App_qml.o - -# target to build an object file -.rcc/qmlcache/content_App_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -.PHONY : .rcc/qmlcache/content_App_qml.cpp.o - -.rcc/qmlcache/content_App_qml.i: .rcc/qmlcache/content_App_qml.cpp.i -.PHONY : .rcc/qmlcache/content_App_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_App_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i -.PHONY : .rcc/qmlcache/content_App_qml.cpp.i - -.rcc/qmlcache/content_App_qml.s: .rcc/qmlcache/content_App_qml.cpp.s -.PHONY : .rcc/qmlcache/content_App_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_App_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s -.PHONY : .rcc/qmlcache/content_App_qml.cpp.s - -.rcc/qmlcache/content_BatterySlider_qml.o: .rcc/qmlcache/content_BatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_BatterySlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.o - -.rcc/qmlcache/content_BatterySlider_qml.i: .rcc/qmlcache/content_BatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BatterySlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.i - -.rcc/qmlcache/content_BatterySlider_qml.s: .rcc/qmlcache/content_BatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BatterySlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.s - -.rcc/qmlcache/content_Screen01.ui_qml.o: .rcc/qmlcache/content_Screen01.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.o - -# target to build an object file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.o - -.rcc/qmlcache/content_Screen01.ui_qml.i: .rcc/qmlcache/content_Screen01.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.i - -.rcc/qmlcache/content_Screen01.ui_qml.s: .rcc/qmlcache/content_Screen01.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.s - -.rcc/qmlcache/content_Speedometer_qml.o: .rcc/qmlcache/content_Speedometer_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Speedometer_qml.o - -# target to build an object file -.rcc/qmlcache/content_Speedometer_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.o - -.rcc/qmlcache/content_Speedometer_qml.i: .rcc/qmlcache/content_Speedometer_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Speedometer_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_Speedometer_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.i - -.rcc/qmlcache/content_Speedometer_qml.s: .rcc/qmlcache/content_Speedometer_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Speedometer_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_Speedometer_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.s - -.rcc/qmlcache/content_TempSlider_qml.o: .rcc/qmlcache/content_TempSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TempSlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_TempSlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.o - -.rcc/qmlcache/content_TempSlider_qml.i: .rcc/qmlcache/content_TempSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TempSlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_TempSlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.i - -.rcc/qmlcache/content_TempSlider_qml.s: .rcc/qmlcache/content_TempSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TempSlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_TempSlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.s - -.rcc/qmlcache/content_WarningSymbol_qml.o: .rcc/qmlcache/content_WarningSymbol_qml.cpp.o -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.o - -# target to build an object file -.rcc/qmlcache/content_WarningSymbol_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.o -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.o - -.rcc/qmlcache/content_WarningSymbol_qml.i: .rcc/qmlcache/content_WarningSymbol_qml.cpp.i -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_WarningSymbol_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.i -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.i - -.rcc/qmlcache/content_WarningSymbol_qml.s: .rcc/qmlcache/content_WarningSymbol_qml.cpp.s -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_WarningSymbol_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_WarningSymbol_qml.cpp.s -.PHONY : .rcc/qmlcache/content_WarningSymbol_qml.cpp.s - -.rcc/qmlcache/content_qmlcache_loader.o: .rcc/qmlcache/content_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/content_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/content_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.o - -.rcc/qmlcache/content_qmlcache_loader.i: .rcc/qmlcache/content_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/content_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/content_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.i - -.rcc/qmlcache/content_qmlcache_loader.s: .rcc/qmlcache/content_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/content_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/content_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.s - -.rcc/qrc_content_raw_qml_0.o: .rcc/qrc_content_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0.o - -# target to build an object file -.rcc/qrc_content_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.o - -.rcc/qrc_content_raw_qml_0.i: .rcc/qrc_content_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_content_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.i - -.rcc/qrc_content_raw_qml_0.s: .rcc/qrc_content_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_content_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.s - -.rcc/qrc_qmake_content.o: .rcc/qrc_qmake_content.cpp.o -.PHONY : .rcc/qrc_qmake_content.o - -# target to build an object file -.rcc/qrc_qmake_content.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.o -.PHONY : .rcc/qrc_qmake_content.cpp.o - -.rcc/qrc_qmake_content.i: .rcc/qrc_qmake_content.cpp.i -.PHONY : .rcc/qrc_qmake_content.i - -# target to preprocess a source file -.rcc/qrc_qmake_content.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.i -.PHONY : .rcc/qrc_qmake_content.cpp.i - -.rcc/qrc_qmake_content.s: .rcc/qrc_qmake_content.cpp.s -.PHONY : .rcc/qrc_qmake_content.s - -# target to generate assembly for a file -.rcc/qrc_qmake_content.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content.cpp.s -.PHONY : .rcc/qrc_qmake_content.cpp.s - -content_autogen/mocs_compilation.o: content_autogen/mocs_compilation.cpp.o -.PHONY : content_autogen/mocs_compilation.o - -# target to build an object file -content_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -.PHONY : content_autogen/mocs_compilation.cpp.o - -content_autogen/mocs_compilation.i: content_autogen/mocs_compilation.cpp.i -.PHONY : content_autogen/mocs_compilation.i - -# target to preprocess a source file -content_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i -.PHONY : content_autogen/mocs_compilation.cpp.i - -content_autogen/mocs_compilation.s: content_autogen/mocs_compilation.cpp.s -.PHONY : content_autogen/mocs_compilation.s - -# target to generate assembly for a file -content_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s -.PHONY : content_autogen/mocs_compilation.cpp.s - -content_qmlcache_autogen/mocs_compilation.o: content_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : content_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -content_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.o - -content_qmlcache_autogen/mocs_compilation.i: content_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : content_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -content_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.i - -content_qmlcache_autogen/mocs_compilation.s: content_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : content_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -content_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmlcache.dir/build.make content/CMakeFiles/content_qmlcache.dir/content_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : content_qmlcache_autogen/mocs_compilation.cpp.s - -content_qmltyperegistrations.o: content_qmltyperegistrations.cpp.o -.PHONY : content_qmltyperegistrations.o - -# target to build an object file -content_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -.PHONY : content_qmltyperegistrations.cpp.o - -content_qmltyperegistrations.i: content_qmltyperegistrations.cpp.i -.PHONY : content_qmltyperegistrations.i - -# target to preprocess a source file -content_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i -.PHONY : content_qmltyperegistrations.cpp.i - -content_qmltyperegistrations.s: content_qmltyperegistrations.cpp.s -.PHONY : content_qmltyperegistrations.s - -# target to generate assembly for a file -content_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s -.PHONY : content_qmltyperegistrations.cpp.s - -contentplugin_autogen/mocs_compilation.o: contentplugin_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_autogen/mocs_compilation.o - -# target to build an object file -contentplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_autogen/mocs_compilation.cpp.o - -contentplugin_autogen/mocs_compilation.i: contentplugin_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -contentplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_autogen/mocs_compilation.cpp.i - -contentplugin_autogen/mocs_compilation.s: contentplugin_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -contentplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_autogen/mocs_compilation.cpp.s - -contentplugin_contentPlugin.o: contentplugin_contentPlugin.cpp.o -.PHONY : contentplugin_contentPlugin.o - -# target to build an object file -contentplugin_contentPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -.PHONY : contentplugin_contentPlugin.cpp.o - -contentplugin_contentPlugin.i: contentplugin_contentPlugin.cpp.i -.PHONY : contentplugin_contentPlugin.i - -# target to preprocess a source file -contentplugin_contentPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i -.PHONY : contentplugin_contentPlugin.cpp.i - -contentplugin_contentPlugin.s: contentplugin_contentPlugin.cpp.s -.PHONY : contentplugin_contentPlugin.s - -# target to generate assembly for a file -contentplugin_contentPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s -.PHONY : contentplugin_contentPlugin.cpp.s - -contentplugin_init.o: contentplugin_init.cpp.o -.PHONY : contentplugin_init.o - -# target to build an object file -contentplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -.PHONY : contentplugin_init.cpp.o - -contentplugin_init.i: contentplugin_init.cpp.i -.PHONY : contentplugin_init.i - -# target to preprocess a source file -contentplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i -.PHONY : contentplugin_init.cpp.i - -contentplugin_init.s: contentplugin_init.cpp.s -.PHONY : contentplugin_init.s - -# target to generate assembly for a file -contentplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s -.PHONY : contentplugin_init.cpp.s - -contentplugin_init_autogen/mocs_compilation.o: contentplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_init_autogen/mocs_compilation.o - -# target to build an object file -contentplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.o - -contentplugin_init_autogen/mocs_compilation.i: contentplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -contentplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.i - -contentplugin_init_autogen/mocs_compilation.s: contentplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -contentplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... content_autogen" - @echo "... content_automoc_json_extraction" - @echo "... content_qmlcache_autogen" - @echo "... content_qmllint" - @echo "... content_qmllint_json" - @echo "... content_qmllint_module" - @echo "... content_qmltyperegistration" - @echo "... contentplugin_autogen" - @echo "... contentplugin_init_autogen" - @echo "... content" - @echo "... content_qmlcache" - @echo "... content_resources_1" - @echo "... content_resources_2" - @echo "... content_tooling" - @echo "... contentplugin" - @echo "... contentplugin_init" - @echo "... .rcc/qmlcache/content_App_qml.o" - @echo "... .rcc/qmlcache/content_App_qml.i" - @echo "... .rcc/qmlcache/content_App_qml.s" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.o" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.i" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.s" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.o" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.i" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.s" - @echo "... .rcc/qmlcache/content_Speedometer_qml.o" - @echo "... .rcc/qmlcache/content_Speedometer_qml.i" - @echo "... .rcc/qmlcache/content_Speedometer_qml.s" - @echo "... .rcc/qmlcache/content_TempSlider_qml.o" - @echo "... .rcc/qmlcache/content_TempSlider_qml.i" - @echo "... .rcc/qmlcache/content_TempSlider_qml.s" - @echo "... .rcc/qmlcache/content_WarningSymbol_qml.o" - @echo "... .rcc/qmlcache/content_WarningSymbol_qml.i" - @echo "... .rcc/qmlcache/content_WarningSymbol_qml.s" - @echo "... .rcc/qmlcache/content_qmlcache_loader.o" - @echo "... .rcc/qmlcache/content_qmlcache_loader.i" - @echo "... .rcc/qmlcache/content_qmlcache_loader.s" - @echo "... .rcc/qrc_content_raw_qml_0.o" - @echo "... .rcc/qrc_content_raw_qml_0.i" - @echo "... .rcc/qrc_content_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_content.o" - @echo "... .rcc/qrc_qmake_content.i" - @echo "... .rcc/qrc_qmake_content.s" - @echo "... content_autogen/mocs_compilation.o" - @echo "... content_autogen/mocs_compilation.i" - @echo "... content_autogen/mocs_compilation.s" - @echo "... content_qmlcache_autogen/mocs_compilation.o" - @echo "... content_qmlcache_autogen/mocs_compilation.i" - @echo "... content_qmlcache_autogen/mocs_compilation.s" - @echo "... content_qmltyperegistrations.o" - @echo "... content_qmltyperegistrations.i" - @echo "... content_qmltyperegistrations.s" - @echo "... contentplugin_autogen/mocs_compilation.o" - @echo "... contentplugin_autogen/mocs_compilation.i" - @echo "... contentplugin_autogen/mocs_compilation.s" - @echo "... contentplugin_contentPlugin.o" - @echo "... contentplugin_contentPlugin.i" - @echo "... contentplugin_contentPlugin.s" - @echo "... contentplugin_init.o" - @echo "... contentplugin_init.i" - @echo "... contentplugin_init.s" - @echo "... contentplugin_init_autogen/mocs_compilation.o" - @echo "... contentplugin_init_autogen/mocs_compilation.i" - @echo "... contentplugin_init_autogen/mocs_compilation.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/content/cmake_install.cmake b/build/content/cmake_install.cmake deleted file mode 100644 index 8cd0576..0000000 --- a/build/content/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/content/contentplugin_contentPlugin.cpp b/build/content/contentplugin_contentPlugin.cpp deleted file mode 100644 index 7af25cd..0000000 --- a/build/content/contentplugin_contentPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_content(); -Q_GHS_KEEP_REFERENCE(qml_register_types_content) - -class contentPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_content; - Q_UNUSED(registration) - } -}; - - - -#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_init.cpp b/build/content/contentplugin_init.cpp deleted file mode 100644 index de63d21..0000000 --- a/build/content/contentplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(contentPlugin) \ No newline at end of file diff --git a/build/content/meta_types/qt6content_debug_metatypes.json b/build/content/meta_types/qt6content_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/content/qmltypes/content_foreign_types.txt b/build/content/qmltypes/content_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/content/qmltypes/content_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Backend/.rcc/qmake_Backend.qrc b/build/imports/Backend/.rcc/qmake_Backend.qrc deleted file mode 100644 index 8d98e2c..0000000 --- a/build/imports/Backend/.rcc/qmake_Backend.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Backend/qmldir - - - diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp deleted file mode 100644 index 2ad2cc8..0000000 --- a/build/imports/Backend/.rcc/qmllint/BackendPlugin.rsp +++ /dev/null @@ -1,9 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp deleted file mode 100644 index a0b21a4..0000000 --- a/build/imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp +++ /dev/null @@ -1,11 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc ---json -/Users/mason/Documents/Code/dash-cpp/build/BackendPlugin_qmllint.json diff --git a/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp b/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp deleted file mode 100644 index fe1d5d6..0000000 --- a/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp +++ /dev/null @@ -1,10 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc ---module -Backend diff --git a/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp b/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp deleted file mode 100644 index 07c2085..0000000 --- a/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_Backend(); -Q_GHS_KEEP_REFERENCE(qml_register_types_Backend) - -class BackendPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - BackendPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_Backend; - Q_UNUSED(registration) - } -}; - - - -#include "BackendPluginplugin_BackendPlugin.moc" diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake deleted file mode 100644 index d3a82b3..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/build.make b/build/imports/Backend/CMakeFiles/Backend.dir/build.make deleted file mode 100644 index eb9c941..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/build.make +++ /dev/null @@ -1,111 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Backend/CMakeFiles/Backend.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/Backend.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Backend/CMakeFiles/Backend.dir/flags.make - -imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/Backend.dir/flags.make -imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/Backend_autogen/mocs_compilation.cpp -imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp - -imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp > CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i - -imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp -o CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s - -# Object files for target Backend -Backend_OBJECTS = \ -"CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" - -# External object files for target Backend -Backend_EXTERNAL_OBJECTS = - -imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/build.make -imports/Backend/libBackend.a: imports/Backend/CMakeFiles/Backend.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libBackend.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Backend.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/Backend.dir/build: imports/Backend/libBackend.a -.PHONY : imports/Backend/CMakeFiles/Backend.dir/build - -imports/Backend/CMakeFiles/Backend.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/Backend.dir/clean - -imports/Backend/CMakeFiles/Backend.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/Backend.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake deleted file mode 100644 index 3fd95e0..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "Backend_autogen" - "CMakeFiles/Backend_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Backend_autogen.dir/ParseCache.txt" - "CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o.d" - "libBackend.a" - "libBackend.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Backend.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake b/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake deleted file mode 100644 index 6417520..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libBackend.a" -) diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make deleted file mode 100644 index 8905c6d..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Backend. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts deleted file mode 100644 index 0b17459..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Backend. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/depend.make b/build/imports/Backend/CMakeFiles/Backend.dir/depend.make deleted file mode 100644 index 47aef3f..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Backend. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/flags.make b/build/imports/Backend/CMakeFiles/Backend.dir/flags.make deleted file mode 100644 index 56f01ba..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include - -CXX_FLAGSarm64 = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/link.txt b/build/imports/Backend/CMakeFiles/Backend.dir/link.txt deleted file mode 100644 index fd67fb4..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libBackend.a CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libBackend.a diff --git a/build/imports/Backend/CMakeFiles/Backend.dir/progress.make b/build/imports/Backend/CMakeFiles/Backend.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/imports/Backend/CMakeFiles/Backend.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake deleted file mode 100644 index 57b6eec..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp" "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make deleted file mode 100644 index ffb7c4c..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/build.make +++ /dev/null @@ -1,211 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make - -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: imports/Backend/meta_types/BackendPlugin_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json - -imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes --import-name=Backend --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated/BackendPlugin.qmltypes - -qml/Backend/BackendPlugin.qmltypes: imports/Backend/backendplugin_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Backend/BackendPlugin.qmltypes - -imports/Backend/.rcc/qrc_qmake_Backend.cpp: qml/Backend/qmldir -imports/Backend/.rcc/qrc_qmake_Backend.cpp: imports/Backend/.rcc/qmake_Backend.qrc -imports/Backend/.rcc/qrc_qmake_Backend.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_Backend" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp --name qmake_Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmake_Backend.qrc - -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating meta_types/qt6backendplugin_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp - -imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp > CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i - -imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp -o CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s - -imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/backendplugin_qmltyperegistrations.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -MF CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp - -imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp > CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i - -imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp -o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s - -imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/.rcc/qrc_qmake_Backend.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -MF CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp - -imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp > CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i - -imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp -o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s - -imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o -MF CMakeFiles/BackendPlugin.dir/can.cpp.o.d -o CMakeFiles/BackendPlugin.dir/can.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp - -imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/can.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp > CMakeFiles/BackendPlugin.dir/can.cpp.i - -imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/can.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp -o CMakeFiles/BackendPlugin.dir/can.cpp.s - -imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o: imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o -MF CMakeFiles/BackendPlugin.dir/backend.cpp.o.d -o CMakeFiles/BackendPlugin.dir/backend.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp - -imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPlugin.dir/backend.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp > CMakeFiles/BackendPlugin.dir/backend.cpp.i - -imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPlugin.dir/backend.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp -o CMakeFiles/BackendPlugin.dir/backend.cpp.s - -# Object files for target BackendPlugin -BackendPlugin_OBJECTS = \ -"CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" \ -"CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" \ -"CMakeFiles/BackendPlugin.dir/can.cpp.o" \ -"CMakeFiles/BackendPlugin.dir/backend.cpp.o" - -# External object files for target BackendPlugin -BackendPlugin_EXTERNAL_OBJECTS = - -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/build.make -imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -imports/Backend/libBackendPlugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -imports/Backend/libBackendPlugin.dylib: imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX shared library libBackendPlugin.dylib" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/BackendPlugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin.dir/build: imports/Backend/libBackendPlugin.dylib -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/build - -imports/Backend/CMakeFiles/BackendPlugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/.rcc/qrc_qmake_Backend.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/backendplugin_qmltyperegistrations.cpp -imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json -imports/Backend/CMakeFiles/BackendPlugin.dir/depend: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen -imports/Backend/CMakeFiles/BackendPlugin.dir/depend: qml/Backend/BackendPlugin.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake deleted file mode 100644 index f8009d2..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,27 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Backend/BackendPlugin.qmltypes" - ".rcc/qrc_qmake_Backend.cpp" - "BackendPlugin_autogen" - "CMakeFiles/BackendPlugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt" - "CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o" - "CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o.d" - "CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/BackendPlugin.dir/backend.cpp.o" - "CMakeFiles/BackendPlugin.dir/backend.cpp.o.d" - "CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o" - "CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o.d" - "CMakeFiles/BackendPlugin.dir/can.cpp.o" - "CMakeFiles/BackendPlugin.dir/can.cpp.o.d" - "backendplugin_qmltyperegistrations.cpp" - "libBackendPlugin.dylib" - "libBackendPlugin.pdb" - "meta_types/qt6backendplugin_debug_metatypes.json" - "meta_types/qt6backendplugin_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/BackendPlugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make deleted file mode 100644 index dd9466e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for BackendPlugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts deleted file mode 100644 index ef33f4c..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for BackendPlugin. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make deleted file mode 100644 index 92ff31c..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for BackendPlugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make deleted file mode 100644 index 2ac9b1f..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DBackendPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt deleted file mode 100644 index 0d325a9..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -dynamiclib -Wl,-headerpad_max_install_names -o libBackendPlugin.dylib -install_name @rpath/libBackendPlugin.dylib CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o CMakeFiles/BackendPlugin.dir/can.cpp.o CMakeFiles/BackendPlugin.dir/backend.cpp.o -iframework /opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make deleted file mode 100644 index a2417ff..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin.dir/progress.make +++ /dev/null @@ -1,11 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = 1 -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 76f7e09..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.h", - "MU", - "EWIEGA46WW/moc_backend.cpp", - null - ], - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.h", - "MU", - "EWIEGA46WW/moc_can.cpp", - null - ] - ], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "BackendPlugin_EXPORTS", - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/backend.cpp", - "MU", - null - ], - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/can.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make deleted file mode 100644 index 29035ae..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json Debug - -BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen -BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make -.PHONY : BackendPlugin_autogen - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build: BackendPlugin_autogen -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 125f4bc..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "BackendPlugin_autogen/mocs_compilation.cpp" - "CMakeFiles/BackendPlugin_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make deleted file mode 100644 index d879455..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 9989741..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_autogen. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make deleted file mode 100644 index 164e1d2..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 2 - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make deleted file mode 100644 index 5576965..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/include - -BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction -BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make -.PHONY : BackendPlugin_automoc_json_extraction - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build: BackendPlugin_automoc_json_extraction -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index b8b0f80..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/BackendPlugin_automoc_json_extraction" - "meta_types/BackendPlugin_json_file_list.txt" - "meta_types/BackendPlugin_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index e5f57a1..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 137e9f7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_automoc_json_extraction. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make deleted file mode 100644 index 3ab3dcd..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_qmllint. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_qmllint: /opt/homebrew/bin/qmllint -imports/Backend/CMakeFiles/BackendPlugin_qmllint: imports/Backend/.rcc/qmllint/BackendPlugin.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E echo Nothing\ to\ do\ for\ target\ BackendPlugin_qmllint. - -BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint -BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make -.PHONY : BackendPlugin_qmllint - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build: BackendPlugin_qmllint -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 09e984e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/BackendPlugin_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make deleted file mode 100644 index 3830d9b..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 7c18794..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make deleted file mode 100644 index 42ad018..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make +++ /dev/null @@ -1,87 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_qmllint_json. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json: /opt/homebrew/bin/qmllint -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json: imports/Backend/.rcc/qmllint/BackendPlugin_json.rsp - -BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json -BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make -.PHONY : BackendPlugin_qmllint_json - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build: BackendPlugin_qmllint_json -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 979c31b..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/BackendPlugin_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index b5b1eae..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 2002b50..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint_json. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make deleted file mode 100644 index 4343999..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_qmllint_module. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module: /opt/homebrew/bin/qmllint -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module: imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qmllint/BackendPlugin_module.rsp - -BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module -BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make -.PHONY : BackendPlugin_qmllint_module - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build: BackendPlugin_qmllint_module -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 87d8e6e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/BackendPlugin_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index d1d4188..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 6d91a8f..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_qmllint_module. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 5cccdc2..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make deleted file mode 100644 index 5690afa..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPlugin_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make - -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration: imports/Backend/backendplugin_qmltyperegistrations.cpp -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration: qml/Backend/BackendPlugin.qmltypes - -imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -imports/Backend/backendplugin_qmltyperegistrations.cpp: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Backend/backendplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Backend/BackendPlugin.qmltypes --import-name=Backend --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.generated/BackendPlugin.qmltypes - -qml/Backend/BackendPlugin.qmltypes: imports/Backend/backendplugin_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Backend/BackendPlugin.qmltypes - -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6backendplugin_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen: imports/Backend/meta_types/BackendPlugin_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target BackendPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/BackendPlugin_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json - -BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration -BackendPlugin_qmltyperegistration: imports/Backend/backendplugin_qmltyperegistrations.cpp -BackendPlugin_qmltyperegistration: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json -BackendPlugin_qmltyperegistration: imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json.gen -BackendPlugin_qmltyperegistration: qml/Backend/BackendPlugin.qmltypes -BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make -.PHONY : BackendPlugin_qmltyperegistration - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build: BackendPlugin_qmltyperegistration -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build - -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/clean - -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 6aa2c90..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Backend/BackendPlugin.qmltypes" - "CMakeFiles/BackendPlugin_qmltyperegistration" - "backendplugin_qmltyperegistrations.cpp" - "meta_types/qt6backendplugin_debug_metatypes.json" - "meta_types/qt6backendplugin_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPlugin_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 6c856ef..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPlugin_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index d2e7f0e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPlugin_qmltyperegistration. diff --git a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake deleted file mode 100644 index 624f189..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make deleted file mode 100644 index ec01350..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make +++ /dev/null @@ -1,130 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp > CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/BackendPluginplugin_BackendPlugin.cpp -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o: imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -MF CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp > CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp -o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s - -# Object files for target BackendPluginplugin -BackendPluginplugin_OBJECTS = \ -"CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" - -# External object files for target BackendPluginplugin -BackendPluginplugin_EXTERNAL_OBJECTS = - -qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make -qml/Backend/libBackendPluginplugin.dylib: imports/Backend/libBackendPlugin.dylib -qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -qml/Backend/libBackendPluginplugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -qml/Backend/libBackendPluginplugin.dylib: imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared module ../../qml/Backend/libBackendPluginplugin.dylib" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/BackendPluginplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPluginplugin.dir/build: qml/Backend/libBackendPluginplugin.dylib -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/build - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/clean - -imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake deleted file mode 100644 index 311364d..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Backend/libBackendPluginplugin.dylib" - "../../qml/Backend/libBackendPluginplugin.pdb" - "BackendPluginplugin_autogen" - "CMakeFiles/BackendPluginplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/BackendPluginplugin_autogen.dir/ParseCache.txt" - "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o" - "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o.d" - "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/BackendPluginplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make deleted file mode 100644 index 301c91e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for BackendPluginplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts deleted file mode 100644 index b1f779b..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for BackendPluginplugin. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make deleted file mode 100644 index 480b00b..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for BackendPluginplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make deleted file mode 100644 index d23c3b6..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DBackendPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt deleted file mode 100644 index 93930e5..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -bundle -Wl,-headerpad_max_install_names -o ../../qml/Backend/libBackendPluginplugin.dylib CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -iframework /opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/Backend -Wl,-rpath,/opt/homebrew/lib libBackendPlugin.dylib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make deleted file mode 100644 index 8163ab4..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 3 -CMAKE_PROGRESS_3 = - diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index a5ab278..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "BackendPluginplugin_EXPORTS", - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=Backend" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPluginplugin_BackendPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/BackendPlugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make deleted file mode 100644 index 07b295c..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for BackendPluginplugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make - -imports/Backend/CMakeFiles/BackendPluginplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target BackendPluginplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/AutogenInfo.json Debug - -BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen -BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make -.PHONY : BackendPluginplugin_autogen - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build: BackendPluginplugin_autogen -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build - -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/clean - -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index ee96981..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "BackendPluginplugin_autogen/mocs_compilation.cpp" - "CMakeFiles/BackendPluginplugin_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/BackendPluginplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 85c6347..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for BackendPluginplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index 571d52e..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for BackendPluginplugin_autogen. diff --git a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json deleted file mode 100644 index dc37356..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : [], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/Backend_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/.rcc/qrc_qmake_Backend.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/backendplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make deleted file mode 100644 index 15d18cf..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Backend_autogen. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make - -imports/Backend/CMakeFiles/Backend_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Backend" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/AutogenInfo.json Debug - -Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen -Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/build.make -.PHONY : Backend_autogen - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/Backend_autogen.dir/build: Backend_autogen -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/build - -imports/Backend/CMakeFiles/Backend_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/Backend_autogen.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/clean - -imports/Backend/CMakeFiles/Backend_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/Backend_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 7eefe09..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "Backend_autogen/mocs_compilation.cpp" - "CMakeFiles/Backend_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Backend_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make deleted file mode 100644 index 5c096ba..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Backend_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts deleted file mode 100644 index d21ac26..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Backend_autogen. diff --git a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make b/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Backend/CMakeFiles/Backend_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 5819b47..0000000 --- a/build/imports/Backend/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Backend/CMakeFiles/progress.marks b/build/imports/Backend/CMakeFiles/progress.marks deleted file mode 100644 index 00750ed..0000000 --- a/build/imports/Backend/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make deleted file mode 100644 index 2b41fd3..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for qt_internal_plugins. - -# Include any custom commands dependencies for this target. -include imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make - -qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make -.PHONY : qt_internal_plugins - -# Rule to build all files generated by this target. -imports/Backend/CMakeFiles/qt_internal_plugins.dir/build: qt_internal_plugins -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/build - -imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Backend && $(CMAKE_COMMAND) -P CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/clean - -imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Backend /Users/mason/Documents/Code/dash-cpp/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/depend - diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake deleted file mode 100644 index d36db1c..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/qt_internal_plugins.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make deleted file mode 100644 index a7eb7e0..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for qt_internal_plugins. -# This may be replaced when dependencies are built. diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts deleted file mode 100644 index 6cd921c..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for qt_internal_plugins. diff --git a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make b/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Backend/CMakeFiles/qt_internal_plugins.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Backend/Makefile b/build/imports/Backend/Makefile deleted file mode 100644 index 529d198..0000000 --- a/build/imports/Backend/Makefile +++ /dev/null @@ -1,585 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Backend//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -imports/Backend/CMakeFiles/Backend.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend.dir/rule -.PHONY : imports/Backend/CMakeFiles/Backend.dir/rule - -# Convenience name for target. -Backend: imports/Backend/CMakeFiles/Backend.dir/rule -.PHONY : Backend - -# fast build rule for target. -Backend/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/build -.PHONY : Backend/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin.dir/rule - -# Convenience name for target. -BackendPlugin: imports/Backend/CMakeFiles/BackendPlugin.dir/rule -.PHONY : BackendPlugin - -# fast build rule for target. -BackendPlugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/build -.PHONY : BackendPlugin/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule - -# Convenience name for target. -BackendPlugin_automoc_json_extraction: imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/rule -.PHONY : BackendPlugin_automoc_json_extraction - -# fast build rule for target. -BackendPlugin_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_automoc_json_extraction.dir/build -.PHONY : BackendPlugin_automoc_json_extraction/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule - -# Convenience name for target. -BackendPlugin_qmltyperegistration: imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/rule -.PHONY : BackendPlugin_qmltyperegistration - -# fast build rule for target. -BackendPlugin_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmltyperegistration.dir/build -.PHONY : BackendPlugin_qmltyperegistration/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule - -# Convenience name for target. -BackendPluginplugin: imports/Backend/CMakeFiles/BackendPluginplugin.dir/rule -.PHONY : BackendPluginplugin - -# fast build rule for target. -BackendPluginplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/build -.PHONY : BackendPluginplugin/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule - -# Convenience name for target. -qt_internal_plugins: imports/Backend/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : qt_internal_plugins - -# fast build rule for target. -qt_internal_plugins/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/qt_internal_plugins.dir/build.make imports/Backend/CMakeFiles/qt_internal_plugins.dir/build -.PHONY : qt_internal_plugins/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint: imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/rule -.PHONY : BackendPlugin_qmllint - -# fast build rule for target. -BackendPlugin_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint.dir/build -.PHONY : BackendPlugin_qmllint/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint_json: imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/rule -.PHONY : BackendPlugin_qmllint_json - -# fast build rule for target. -BackendPlugin_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_json.dir/build -.PHONY : BackendPlugin_qmllint_json/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule - -# Convenience name for target. -BackendPlugin_qmllint_module: imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/rule -.PHONY : BackendPlugin_qmllint_module - -# fast build rule for target. -BackendPlugin_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_qmllint_module.dir/build -.PHONY : BackendPlugin_qmllint_module/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/Backend_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/Backend_autogen.dir/rule -.PHONY : imports/Backend/CMakeFiles/Backend_autogen.dir/rule - -# Convenience name for target. -Backend_autogen: imports/Backend/CMakeFiles/Backend_autogen.dir/rule -.PHONY : Backend_autogen - -# fast build rule for target. -Backend_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend_autogen.dir/build.make imports/Backend/CMakeFiles/Backend_autogen.dir/build -.PHONY : Backend_autogen/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule - -# Convenience name for target. -BackendPlugin_autogen: imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/rule -.PHONY : BackendPlugin_autogen - -# fast build rule for target. -BackendPlugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPlugin_autogen.dir/build -.PHONY : BackendPlugin_autogen/fast - -# Convenience name for target. -imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule -.PHONY : imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule - -# Convenience name for target. -BackendPluginplugin_autogen: imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/rule -.PHONY : BackendPluginplugin_autogen - -# fast build rule for target. -BackendPluginplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin_autogen.dir/build -.PHONY : BackendPluginplugin_autogen/fast - -.rcc/qrc_qmake_Backend.o: .rcc/qrc_qmake_Backend.cpp.o -.PHONY : .rcc/qrc_qmake_Backend.o - -# target to build an object file -.rcc/qrc_qmake_Backend.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.o -.PHONY : .rcc/qrc_qmake_Backend.cpp.o - -.rcc/qrc_qmake_Backend.i: .rcc/qrc_qmake_Backend.cpp.i -.PHONY : .rcc/qrc_qmake_Backend.i - -# target to preprocess a source file -.rcc/qrc_qmake_Backend.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.i -.PHONY : .rcc/qrc_qmake_Backend.cpp.i - -.rcc/qrc_qmake_Backend.s: .rcc/qrc_qmake_Backend.cpp.s -.PHONY : .rcc/qrc_qmake_Backend.s - -# target to generate assembly for a file -.rcc/qrc_qmake_Backend.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/.rcc/qrc_qmake_Backend.cpp.s -.PHONY : .rcc/qrc_qmake_Backend.cpp.s - -BackendPlugin_autogen/mocs_compilation.o: BackendPlugin_autogen/mocs_compilation.cpp.o -.PHONY : BackendPlugin_autogen/mocs_compilation.o - -# target to build an object file -BackendPlugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.o -.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.o - -BackendPlugin_autogen/mocs_compilation.i: BackendPlugin_autogen/mocs_compilation.cpp.i -.PHONY : BackendPlugin_autogen/mocs_compilation.i - -# target to preprocess a source file -BackendPlugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.i -.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.i - -BackendPlugin_autogen/mocs_compilation.s: BackendPlugin_autogen/mocs_compilation.cpp.s -.PHONY : BackendPlugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -BackendPlugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/BackendPlugin_autogen/mocs_compilation.cpp.s -.PHONY : BackendPlugin_autogen/mocs_compilation.cpp.s - -BackendPluginplugin_BackendPlugin.o: BackendPluginplugin_BackendPlugin.cpp.o -.PHONY : BackendPluginplugin_BackendPlugin.o - -# target to build an object file -BackendPluginplugin_BackendPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.o -.PHONY : BackendPluginplugin_BackendPlugin.cpp.o - -BackendPluginplugin_BackendPlugin.i: BackendPluginplugin_BackendPlugin.cpp.i -.PHONY : BackendPluginplugin_BackendPlugin.i - -# target to preprocess a source file -BackendPluginplugin_BackendPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.i -.PHONY : BackendPluginplugin_BackendPlugin.cpp.i - -BackendPluginplugin_BackendPlugin.s: BackendPluginplugin_BackendPlugin.cpp.s -.PHONY : BackendPluginplugin_BackendPlugin.s - -# target to generate assembly for a file -BackendPluginplugin_BackendPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_BackendPlugin.cpp.s -.PHONY : BackendPluginplugin_BackendPlugin.cpp.s - -BackendPluginplugin_autogen/mocs_compilation.o: BackendPluginplugin_autogen/mocs_compilation.cpp.o -.PHONY : BackendPluginplugin_autogen/mocs_compilation.o - -# target to build an object file -BackendPluginplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.o -.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.o - -BackendPluginplugin_autogen/mocs_compilation.i: BackendPluginplugin_autogen/mocs_compilation.cpp.i -.PHONY : BackendPluginplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -BackendPluginplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.i -.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.i - -BackendPluginplugin_autogen/mocs_compilation.s: BackendPluginplugin_autogen/mocs_compilation.cpp.s -.PHONY : BackendPluginplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -BackendPluginplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPluginplugin.dir/build.make imports/Backend/CMakeFiles/BackendPluginplugin.dir/BackendPluginplugin_autogen/mocs_compilation.cpp.s -.PHONY : BackendPluginplugin_autogen/mocs_compilation.cpp.s - -Backend_autogen/mocs_compilation.o: Backend_autogen/mocs_compilation.cpp.o -.PHONY : Backend_autogen/mocs_compilation.o - -# target to build an object file -Backend_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.o -.PHONY : Backend_autogen/mocs_compilation.cpp.o - -Backend_autogen/mocs_compilation.i: Backend_autogen/mocs_compilation.cpp.i -.PHONY : Backend_autogen/mocs_compilation.i - -# target to preprocess a source file -Backend_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.i -.PHONY : Backend_autogen/mocs_compilation.cpp.i - -Backend_autogen/mocs_compilation.s: Backend_autogen/mocs_compilation.cpp.s -.PHONY : Backend_autogen/mocs_compilation.s - -# target to generate assembly for a file -Backend_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/Backend.dir/build.make imports/Backend/CMakeFiles/Backend.dir/Backend_autogen/mocs_compilation.cpp.s -.PHONY : Backend_autogen/mocs_compilation.cpp.s - -backend.o: backend.cpp.o -.PHONY : backend.o - -# target to build an object file -backend.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.o -.PHONY : backend.cpp.o - -backend.i: backend.cpp.i -.PHONY : backend.i - -# target to preprocess a source file -backend.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.i -.PHONY : backend.cpp.i - -backend.s: backend.cpp.s -.PHONY : backend.s - -# target to generate assembly for a file -backend.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backend.cpp.s -.PHONY : backend.cpp.s - -backendplugin_qmltyperegistrations.o: backendplugin_qmltyperegistrations.cpp.o -.PHONY : backendplugin_qmltyperegistrations.o - -# target to build an object file -backendplugin_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.o -.PHONY : backendplugin_qmltyperegistrations.cpp.o - -backendplugin_qmltyperegistrations.i: backendplugin_qmltyperegistrations.cpp.i -.PHONY : backendplugin_qmltyperegistrations.i - -# target to preprocess a source file -backendplugin_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.i -.PHONY : backendplugin_qmltyperegistrations.cpp.i - -backendplugin_qmltyperegistrations.s: backendplugin_qmltyperegistrations.cpp.s -.PHONY : backendplugin_qmltyperegistrations.s - -# target to generate assembly for a file -backendplugin_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/backendplugin_qmltyperegistrations.cpp.s -.PHONY : backendplugin_qmltyperegistrations.cpp.s - -can.o: can.cpp.o -.PHONY : can.o - -# target to build an object file -can.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.o -.PHONY : can.cpp.o - -can.i: can.cpp.i -.PHONY : can.i - -# target to preprocess a source file -can.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.i -.PHONY : can.cpp.i - -can.s: can.cpp.s -.PHONY : can.s - -# target to generate assembly for a file -can.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Backend/CMakeFiles/BackendPlugin.dir/build.make imports/Backend/CMakeFiles/BackendPlugin.dir/can.cpp.s -.PHONY : can.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... BackendPlugin_autogen" - @echo "... BackendPlugin_automoc_json_extraction" - @echo "... BackendPlugin_qmllint" - @echo "... BackendPlugin_qmllint_json" - @echo "... BackendPlugin_qmllint_module" - @echo "... BackendPlugin_qmltyperegistration" - @echo "... BackendPluginplugin_autogen" - @echo "... Backend_autogen" - @echo "... qt_internal_plugins" - @echo "... Backend" - @echo "... BackendPlugin" - @echo "... BackendPluginplugin" - @echo "... .rcc/qrc_qmake_Backend.o" - @echo "... .rcc/qrc_qmake_Backend.i" - @echo "... .rcc/qrc_qmake_Backend.s" - @echo "... BackendPlugin_autogen/mocs_compilation.o" - @echo "... BackendPlugin_autogen/mocs_compilation.i" - @echo "... BackendPlugin_autogen/mocs_compilation.s" - @echo "... BackendPluginplugin_BackendPlugin.o" - @echo "... BackendPluginplugin_BackendPlugin.i" - @echo "... BackendPluginplugin_BackendPlugin.s" - @echo "... BackendPluginplugin_autogen/mocs_compilation.o" - @echo "... BackendPluginplugin_autogen/mocs_compilation.i" - @echo "... BackendPluginplugin_autogen/mocs_compilation.s" - @echo "... Backend_autogen/mocs_compilation.o" - @echo "... Backend_autogen/mocs_compilation.i" - @echo "... Backend_autogen/mocs_compilation.s" - @echo "... backend.o" - @echo "... backend.i" - @echo "... backend.s" - @echo "... backendplugin_qmltyperegistrations.o" - @echo "... backendplugin_qmltyperegistrations.i" - @echo "... backendplugin_qmltyperegistrations.s" - @echo "... can.o" - @echo "... can.i" - @echo "... can.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/Backend/cmake_install.cmake b/build/imports/Backend/cmake_install.cmake deleted file mode 100644 index eed9211..0000000 --- a/build/imports/Backend/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Backend - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json b/build/imports/Backend/meta_types/qt6backendplugin_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt b/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/imports/Backend/qmltypes/BackendPlugin_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc deleted file mode 100644 index 8bf9280..0000000 --- a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +++ /dev/null @@ -1,9 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - - - diff --git a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc deleted file mode 100644 index 1558c36..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir - - - diff --git a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp deleted file mode 100644 index 1fef7d8..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp +++ /dev/null @@ -1,4 +0,0 @@ -/Bolt_Dash/Constants.qml -/Bolt_Dash/DirectoryFontLoader.qml -/Bolt_Dash/EventListModel.qml -/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp deleted file mode 100644 index c88e7bb..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp +++ /dev/null @@ -1,15 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp deleted file mode 100644 index 7a78980..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp +++ /dev/null @@ -1,17 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/Bolt_Dash_qmllint.json diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp deleted file mode 100644 index e0cdcdb..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/Users/mason/Documents/Code/dash-cpp/build/qml --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc ---module -Bolt_Dash diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp deleted file mode 100644 index af2bea2..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include - -extern void qml_register_types_Bolt_Dash(); -Q_GHS_KEEP_REFERENCE(qml_register_types_Bolt_Dash) - -class Bolt_DashPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - volatile auto registration = &qml_register_types_Bolt_Dash; - Q_UNUSED(registration) - } -}; - - - -#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp deleted file mode 100644 index b405372..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(Bolt_DashPlugin) \ No newline at end of file diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake deleted file mode 100644 index 08af34d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake +++ /dev/null @@ -1,30 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make deleted file mode 100644 index 984c8a8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make +++ /dev/null @@ -1,262 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes - -qml/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: qml/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Generating .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/Constants.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: qml/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/DirectoryFontLoader.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: qml/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListModel.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: qml/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: qml/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/qml/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp > CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s - -# Object files for target Bolt_Dash -Bolt_Dash_OBJECTS = \ -"CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" - -# External object files for target Bolt_Dash -Bolt_Dash_EXTERNAL_OBJECTS = - -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Linking CXX static library libBolt_Dash.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dash.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build: imports/Bolt_Dash/libBolt_Dash.a -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: qml/Bolt_Dash/Bolt_Dash.qmltypes - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake deleted file mode 100644 index e33ccc8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake +++ /dev/null @@ -1,32 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Bolt_Dash/Bolt_Dash.qmltypes" - ".rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" - "Bolt_Dash_autogen" - "CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" - "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" - "bolt_dash_qmltyperegistrations.cpp" - "libBolt_Dash.a" - "libBolt_Dash.pdb" - "meta_types/qt6bolt_dash_debug_metatypes.json" - "meta_types/qt6bolt_dash_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake deleted file mode 100644 index bff356f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libBolt_Dash.a" -) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make deleted file mode 100644 index 25601d2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts deleted file mode 100644 index 1271544..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make deleted file mode 100644 index 1044e3c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make deleted file mode 100644 index 99637f4..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt deleted file mode 100644 index 66b2ff2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dash.a CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dash.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make deleted file mode 100644 index 41645ea..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make +++ /dev/null @@ -1,15 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 4 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 5 -CMAKE_PROGRESS_11 = -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = -CMAKE_PROGRESS_14 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json deleted file mode 100644 index 2fd170c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make deleted file mode 100644 index 784f4c6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug - -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make -.PHONY : Bolt_Dash_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build: Bolt_Dash_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 69d3da0..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dash_autogen/mocs_compilation.cpp" - "CMakeFiles/Bolt_Dash_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make deleted file mode 100644 index a5fe86e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts deleted file mode 100644 index 22459ea..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make deleted file mode 100644 index cc67811..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_automoc_json_extraction. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction: /opt/homebrew/share/qt/libexec/cmake_automoc_parser - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running AUTOMOC file extraction for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include - -Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction -Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make -.PHONY : Bolt_Dash_automoc_json_extraction - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build: Bolt_Dash_automoc_json_extraction -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake deleted file mode 100644 index fbd6902..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_automoc_json_extraction" - "meta_types/Bolt_Dash_json_file_list.txt" - "meta_types/Bolt_Dash_json_file_list.txt.timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make deleted file mode 100644 index dd5d03c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_automoc_json_extraction. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts deleted file mode 100644 index 92804fa..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_automoc_json_extraction. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake deleted file mode 100644 index 61e9fc4..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make deleted file mode 100644 index 4815cce..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp > CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -o CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s - -Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make -.PHONY : Bolt_Dash_qmlcache - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build: Bolt_Dash_qmlcache -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake deleted file mode 100644 index 623a8ce..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dash_qmlcache_autogen" - "CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" - "CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" - "CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash_qmlcache.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make deleted file mode 100644 index 2c2d023..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts deleted file mode 100644 index d66b26d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash_qmlcache. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make deleted file mode 100644 index 3d1f8c7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash_qmlcache. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make deleted file mode 100644 index 31972e9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make deleted file mode 100644 index e7f7e99..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 10 -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json deleted file mode 100644 index f5e9b27..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make deleted file mode 100644 index e31f130..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmlcache_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash_qmlcache" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/AutogenInfo.json Debug - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_Dash --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp - -Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen -Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make -.PHONY : Bolt_Dash_qmlcache_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build: Bolt_Dash_qmlcache_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 3958351..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" - "Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp" - "CMakeFiles/Bolt_Dash_qmlcache_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make deleted file mode 100644 index c947d59..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmlcache_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts deleted file mode 100644 index 8239d2d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmlcache_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make deleted file mode 100644 index 2196ea6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp - -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make -.PHONY : Bolt_Dash_qmllint - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build: Bolt_Dash_qmllint -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 463a13e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make deleted file mode 100644 index 5f5570c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 112cb0c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make deleted file mode 100644 index d04831e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint_json. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp - -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make -.PHONY : Bolt_Dash_qmllint_json - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build: Bolt_Dash_qmllint_json -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index b86f4a9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 28c8d6d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 2bb34d5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_json. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make deleted file mode 100644 index 8875490..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint_module. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp - -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make -.PHONY : Bolt_Dash_qmllint_module - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build: Bolt_Dash_qmllint_module -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 1b59bb9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 473476b..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index a08bc79..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_module. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 82ee166..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make deleted file mode 100644 index 52ef3b0..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: qml/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes - -qml/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate qml/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E true - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen -Bolt_Dash_qmltyperegistration: qml/Bolt_Dash/Bolt_Dash.qmltypes -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make -.PHONY : Bolt_Dash_qmltyperegistration - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build: Bolt_Dash_qmltyperegistration -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 1e8412f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Bolt_Dash/Bolt_Dash.qmltypes" - "CMakeFiles/Bolt_Dash_qmltyperegistration" - "bolt_dash_qmltyperegistrations.cpp" - "meta_types/qt6bolt_dash_debug_metatypes.json" - "meta_types/qt6bolt_dash_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 83877ca..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index d1aa310..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmltyperegistration. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make deleted file mode 100644 index 6a4c96c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 11 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 2a81866..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make deleted file mode 100644 index 3fbe9cc..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make +++ /dev/null @@ -1,107 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make - -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: qml/Bolt_Dash/qmldir -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource qmake_Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp --name qmake_Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -MF CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp > CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s - -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make -.PHONY : Bolt_Dash_resources_1 - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build: Bolt_Dash_resources_1 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index ca4684a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_Bolt_Dash.cpp" - "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" - "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make deleted file mode 100644 index 9f34916..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 1471eb2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_1. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make deleted file mode 100644 index 3e9abce..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make deleted file mode 100644 index 8640213..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 3ab17e4..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make deleted file mode 100644 index 8f5ef36..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make +++ /dev/null @@ -1,110 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make - -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running rcc for resource Bolt_Dash_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp --name Bolt_Dash_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp > CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s - -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make -.PHONY : Bolt_Dash_resources_2 - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build: Bolt_Dash_resources_2 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index 592a8c1..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_Bolt_Dash_raw_qml_0.cpp" - "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make deleted file mode 100644 index 421a8fa..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 26925a3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_2. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make deleted file mode 100644 index 9d32419..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make deleted file mode 100644 index 8640213..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.6.2/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.6.2/QtCore -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make deleted file mode 100644 index 6c287f1..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make deleted file mode 100644 index 34e7924..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make +++ /dev/null @@ -1,103 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_tooling. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make - -qml/Bolt_Dash/Constants.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying Constants.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/Constants.qml - -qml/Bolt_Dash/DirectoryFontLoader.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying DirectoryFontLoader.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/DirectoryFontLoader.qml - -qml/Bolt_Dash/EventListModel.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying EventListModel.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListModel.qml - -qml/Bolt_Dash/EventListSimulator.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying EventListSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash/EventListSimulator.qml - -Bolt_Dash_tooling: qml/Bolt_Dash/Constants.qml -Bolt_Dash_tooling: qml/Bolt_Dash/DirectoryFontLoader.qml -Bolt_Dash_tooling: qml/Bolt_Dash/EventListModel.qml -Bolt_Dash_tooling: qml/Bolt_Dash/EventListSimulator.qml -Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make -.PHONY : Bolt_Dash_tooling - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build: Bolt_Dash_tooling -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake deleted file mode 100644 index e937611..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Bolt_Dash/Constants.qml" - "../../qml/Bolt_Dash/DirectoryFontLoader.qml" - "../../qml/Bolt_Dash/EventListModel.qml" - "../../qml/Bolt_Dash/EventListSimulator.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make deleted file mode 100644 index f1a0682..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_tooling. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts deleted file mode 100644 index fed7193..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_tooling. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make deleted file mode 100644 index e22cc86..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 12 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake deleted file mode 100644 index 9927c2c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make deleted file mode 100644 index 4caedb6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s - -# Object files for target Bolt_Dashplugin -Bolt_Dashplugin_OBJECTS = \ -"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - -# External object files for target Bolt_Dashplugin -Bolt_Dashplugin_EXTERNAL_OBJECTS = - -qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make -qml/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library ../../qml/Bolt_Dash/libBolt_Dashplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dashplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build: qml/Bolt_Dash/libBolt_Dashplugin.a -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake deleted file mode 100644 index c864620..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Bolt_Dash/libBolt_Dashplugin.a" - "../../qml/Bolt_Dash/libBolt_Dashplugin.pdb" - "Bolt_Dashplugin_autogen" - "CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 2df8e64..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "../../qml/Bolt_Dash/libBolt_Dashplugin.a" -) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make deleted file mode 100644 index 6c17ab3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dashplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts deleted file mode 100644 index 7866f98..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make deleted file mode 100644 index 8c10503..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dashplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make deleted file mode 100644 index f30dff8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt deleted file mode 100644 index 48d23b3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc ../../qml/Bolt_Dash/libBolt_Dashplugin.a CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib ../../qml/Bolt_Dash/libBolt_Dashplugin.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make deleted file mode 100644 index 8eb4b49..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 5b1b407..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [ "-Muri=Bolt_Dash" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make deleted file mode 100644 index a641c84..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json Debug - -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make -.PHONY : Bolt_Dashplugin_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build: Bolt_Dashplugin_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index e8ccc56..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_autogen/mocs_compilation.cpp" - "CMakeFiles/Bolt_Dashplugin_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 77a2a8d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index fe735a7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake deleted file mode 100644 index dab5079..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make deleted file mode 100644 index 0b4107a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s - -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make -.PHONY : Bolt_Dashplugin_init - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build: Bolt_Dashplugin_init -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 6a9b604..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_init_autogen" - "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make deleted file mode 100644 index 88959e8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dashplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 31dd117..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin_init. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make deleted file mode 100644 index 086af44..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dashplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make deleted file mode 100644 index 8397517..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make deleted file mode 100644 index 6c86c2b..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 13 -CMAKE_PROGRESS_2 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index e3f8e4d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.27.8/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "DEP_FILE" : "", - "DEP_FILE_RULE_NAME" : "", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.27.8/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 6, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 45a25b7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make deleted file mode 100644 index b4cb6a8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json Debug - -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make -.PHONY : Bolt_Dashplugin_init_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build: Bolt_Dashplugin_init_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index ed59258..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" - "CMakeFiles/Bolt_Dashplugin_init_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index b7a01da..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index b0d50c8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 5819b47..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Bolt_Dash/CMakeFiles/progress.marks b/build/imports/Bolt_Dash/CMakeFiles/progress.marks deleted file mode 100644 index 7ed6ff8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/build/imports/Bolt_Dash/Makefile b/build/imports/Bolt_Dash/Makefile deleted file mode 100644 index 6f869c3..0000000 --- a/build/imports/Bolt_Dash/Makefile +++ /dev/null @@ -1,793 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule - -# Convenience name for target. -Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : Bolt_Dash - -# fast build rule for target. -Bolt_Dash/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build -.PHONY : Bolt_Dash/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule - -# Convenience name for target. -Bolt_Dash_automoc_json_extraction: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/rule -.PHONY : Bolt_Dash_automoc_json_extraction - -# fast build rule for target. -Bolt_Dash_automoc_json_extraction/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_automoc_json_extraction.dir/build -.PHONY : Bolt_Dash_automoc_json_extraction/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : Bolt_Dash_qmltyperegistration - -# fast build rule for target. -Bolt_Dash_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build -.PHONY : Bolt_Dash_qmltyperegistration/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : Bolt_Dash_resources_1 - -# fast build rule for target. -Bolt_Dash_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build -.PHONY : Bolt_Dash_resources_1/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule - -# Convenience name for target. -Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : Bolt_Dashplugin - -# fast build rule for target. -Bolt_Dashplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build -.PHONY : Bolt_Dashplugin/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : Bolt_Dash_qmllint - -# fast build rule for target. -Bolt_Dash_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build -.PHONY : Bolt_Dash_qmllint/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : Bolt_Dash_qmllint_json - -# fast build rule for target. -Bolt_Dash_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build -.PHONY : Bolt_Dash_qmllint_json/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : Bolt_Dash_qmllint_module - -# fast build rule for target. -Bolt_Dash_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build -.PHONY : Bolt_Dash_qmllint_module/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule - -# Convenience name for target. -Bolt_Dash_qmlcache: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/rule -.PHONY : Bolt_Dash_qmlcache - -# fast build rule for target. -Bolt_Dash_qmlcache/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build -.PHONY : Bolt_Dash_qmlcache/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : Bolt_Dash_resources_2 - -# fast build rule for target. -Bolt_Dash_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build -.PHONY : Bolt_Dash_resources_2/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : Bolt_Dashplugin_init - -# fast build rule for target. -Bolt_Dashplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build -.PHONY : Bolt_Dashplugin_init/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : Bolt_Dash_autogen - -# fast build rule for target. -Bolt_Dash_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build -.PHONY : Bolt_Dash_autogen/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : Bolt_Dashplugin_autogen - -# fast build rule for target. -Bolt_Dashplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build -.PHONY : Bolt_Dashplugin_autogen/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_qmlcache_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/rule -.PHONY : Bolt_Dash_qmlcache_autogen - -# fast build rule for target. -Bolt_Dash_qmlcache_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache_autogen.dir/build -.PHONY : Bolt_Dash_qmlcache_autogen/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen - -# fast build rule for target. -Bolt_Dashplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build -.PHONY : Bolt_Dashplugin_init_autogen/fast - -.rcc/qmlcache/Bolt_Dash_Constants_qml.o: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_Constants_qml.i: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_Constants_qml.s: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.o: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.i: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.s: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.o: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.i: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.s: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s - -.rcc/qrc_Bolt_Dash_raw_qml_0.o: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.o - -# target to build an object file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o - -.rcc/qrc_Bolt_Dash_raw_qml_0.i: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i - -.rcc/qrc_Bolt_Dash_raw_qml_0.s: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s - -.rcc/qrc_qmake_Bolt_Dash.o: .rcc/qrc_qmake_Bolt_Dash.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash.o - -# target to build an object file -.rcc/qrc_qmake_Bolt_Dash.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.o - -.rcc/qrc_qmake_Bolt_Dash.i: .rcc/qrc_qmake_Bolt_Dash.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash.i - -# target to preprocess a source file -.rcc/qrc_qmake_Bolt_Dash.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.i - -.rcc/qrc_qmake_Bolt_Dash.s: .rcc/qrc_qmake_Bolt_Dash.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash.s - -# target to generate assembly for a file -.rcc/qrc_qmake_Bolt_Dash.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.s - -Bolt_Dash_autogen/mocs_compilation.o: Bolt_Dash_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dash_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.o - -Bolt_Dash_autogen/mocs_compilation.i: Bolt_Dash_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dash_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.i - -Bolt_Dash_autogen/mocs_compilation.s: Bolt_Dash_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dash_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.s - -Bolt_Dash_qmlcache_autogen/mocs_compilation.o: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.o - -Bolt_Dash_qmlcache_autogen/mocs_compilation.i: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.i - -Bolt_Dash_qmlcache_autogen/mocs_compilation.s: Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmlcache.dir/Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_qmlcache_autogen/mocs_compilation.cpp.s - -Bolt_Dashplugin_Bolt_DashPlugin.o: Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.o - -# target to build an object file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.o - -Bolt_Dashplugin_Bolt_DashPlugin.i: Bolt_Dashplugin_Bolt_DashPlugin.cpp.i -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.i - -# target to preprocess a source file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.i - -Bolt_Dashplugin_Bolt_DashPlugin.s: Bolt_Dashplugin_Bolt_DashPlugin.cpp.s -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.s - -# target to generate assembly for a file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.s - -Bolt_Dashplugin_autogen/mocs_compilation.o: Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.o - -Bolt_Dashplugin_autogen/mocs_compilation.i: Bolt_Dashplugin_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.i - -Bolt_Dashplugin_autogen/mocs_compilation.s: Bolt_Dashplugin_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.s - -Bolt_Dashplugin_init.o: Bolt_Dashplugin_init.cpp.o -.PHONY : Bolt_Dashplugin_init.o - -# target to build an object file -Bolt_Dashplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -.PHONY : Bolt_Dashplugin_init.cpp.o - -Bolt_Dashplugin_init.i: Bolt_Dashplugin_init.cpp.i -.PHONY : Bolt_Dashplugin_init.i - -# target to preprocess a source file -Bolt_Dashplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i -.PHONY : Bolt_Dashplugin_init.cpp.i - -Bolt_Dashplugin_init.s: Bolt_Dashplugin_init.cpp.s -.PHONY : Bolt_Dashplugin_init.s - -# target to generate assembly for a file -Bolt_Dashplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s -.PHONY : Bolt_Dashplugin_init.cpp.s - -Bolt_Dashplugin_init_autogen/mocs_compilation.o: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o - -Bolt_Dashplugin_init_autogen/mocs_compilation.i: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i - -Bolt_Dashplugin_init_autogen/mocs_compilation.s: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s - -bolt_dash_qmltyperegistrations.o: bolt_dash_qmltyperegistrations.cpp.o -.PHONY : bolt_dash_qmltyperegistrations.o - -# target to build an object file -bolt_dash_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -.PHONY : bolt_dash_qmltyperegistrations.cpp.o - -bolt_dash_qmltyperegistrations.i: bolt_dash_qmltyperegistrations.cpp.i -.PHONY : bolt_dash_qmltyperegistrations.i - -# target to preprocess a source file -bolt_dash_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i -.PHONY : bolt_dash_qmltyperegistrations.cpp.i - -bolt_dash_qmltyperegistrations.s: bolt_dash_qmltyperegistrations.cpp.s -.PHONY : bolt_dash_qmltyperegistrations.s - -# target to generate assembly for a file -bolt_dash_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s -.PHONY : bolt_dash_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... Bolt_Dash_autogen" - @echo "... Bolt_Dash_automoc_json_extraction" - @echo "... Bolt_Dash_qmlcache_autogen" - @echo "... Bolt_Dash_qmllint" - @echo "... Bolt_Dash_qmllint_json" - @echo "... Bolt_Dash_qmllint_module" - @echo "... Bolt_Dash_qmltyperegistration" - @echo "... Bolt_Dashplugin_autogen" - @echo "... Bolt_Dashplugin_init_autogen" - @echo "... Bolt_Dash" - @echo "... Bolt_Dash_qmlcache" - @echo "... Bolt_Dash_resources_1" - @echo "... Bolt_Dash_resources_2" - @echo "... Bolt_Dash_tooling" - @echo "... Bolt_Dashplugin" - @echo "... Bolt_Dashplugin_init" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.o" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.i" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.s" - @echo "... .rcc/qrc_qmake_Bolt_Dash.o" - @echo "... .rcc/qrc_qmake_Bolt_Dash.i" - @echo "... .rcc/qrc_qmake_Bolt_Dash.s" - @echo "... Bolt_Dash_autogen/mocs_compilation.o" - @echo "... Bolt_Dash_autogen/mocs_compilation.i" - @echo "... Bolt_Dash_autogen/mocs_compilation.s" - @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.o" - @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.i" - @echo "... Bolt_Dash_qmlcache_autogen/mocs_compilation.s" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.o" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.i" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.s" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.o" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.i" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.s" - @echo "... Bolt_Dashplugin_init.o" - @echo "... Bolt_Dashplugin_init.i" - @echo "... Bolt_Dashplugin_init.s" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.o" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.i" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.s" - @echo "... bolt_dash_qmltyperegistrations.o" - @echo "... bolt_dash_qmltyperegistrations.i" - @echo "... bolt_dash_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/Bolt_Dash/cmake_install.cmake b/build/imports/Bolt_Dash/cmake_install.cmake deleted file mode 100644 index e477d59..0000000 --- a/build/imports/Bolt_Dash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json b/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt deleted file mode 100644 index 3e857de..0000000 --- a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 5819b47..0000000 --- a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/CMakeFiles/progress.marks b/build/imports/CMakeFiles/progress.marks deleted file mode 100644 index 45a4fb7..0000000 --- a/build/imports/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -8 diff --git a/build/imports/Makefile b/build/imports/Makefile deleted file mode 100644 index c7aebfd..0000000 --- a/build/imports/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.27 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.27.8/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/cmake_install.cmake b/build/imports/cmake_install.cmake deleted file mode 100644 index 9fdb1a4..0000000 --- a/build/imports/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/opt/homebrew") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/Backend/cmake_install.cmake") -endif() - diff --git a/build/meta_types/qt6bolt_dashapp_debug_metatypes.json b/build/meta_types/qt6bolt_dashapp_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc b/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc deleted file mode 100644 index 2c84e73..0000000 --- a/build/qml/Backend/BackendPlugin_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Backend - - - diff --git a/build/qml/Backend/qmldir b/build/qml/Backend/qmldir deleted file mode 100644 index c3a9c4a..0000000 --- a/build/qml/Backend/qmldir +++ /dev/null @@ -1,7 +0,0 @@ -module Backend -linktarget BackendPluginplugin -optional plugin BackendPluginplugin -classname BackendPlugin -typeinfo BackendPlugin.qmltypes -prefer :/Backend/ - diff --git a/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc b/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc deleted file mode 100644 index 7dbbe00..0000000 --- a/build/qml/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Bolt_Dash - - - diff --git a/build/qml/Bolt_Dash/Constants.qml b/build/qml/Bolt_Dash/Constants.qml deleted file mode 100644 index cb27244..0000000 --- a/build/qml/Bolt_Dash/Constants.qml +++ /dev/null @@ -1,27 +0,0 @@ -pragma Singleton -import QtQuick 6.2 -import QtQuick.Studio.Application - -QtObject { - readonly property int width: 800 - readonly property int height: 480 - - property string relativeFontDirectory: "fonts" - - /* Edit this comment to add your custom font */ - readonly property font font: Qt.font({ - family: Qt.application.font.family, - pixelSize: Qt.application.font.pixelSize - }) - readonly property font largeFont: Qt.font({ - family: Qt.application.font.family, - pixelSize: Qt.application.font.pixelSize * 1.6 - }) - - readonly property color backgroundColor: "#c2c2c2" - - - property StudioApplication application: StudioApplication { - fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) - } -} diff --git a/build/qml/Bolt_Dash/DirectoryFontLoader.qml b/build/qml/Bolt_Dash/DirectoryFontLoader.qml deleted file mode 100644 index aa22eac..0000000 --- a/build/qml/Bolt_Dash/DirectoryFontLoader.qml +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (C) 2019 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import Qt.labs.folderlistmodel 6.2 - -QtObject { - id: loader - - property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) - property string relativeFontDirectory: "fonts" - - function loadFont(url) { - var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', - loader, - "dynamicFontLoader"); - } - - property FolderListModel folderModel: FolderListModel { - id: folderModel - folder: loader.fontDirectory - nameFilters: [ "*.ttf", "*.otf" ] - showDirs: false - - onStatusChanged: { - if (folderModel.status == FolderListModel.Ready) { - var i - for (i = 0; i < count; i++) { - loadFont(folderModel.get(i, "fileURL")) - } - } - } - } -} diff --git a/build/qml/Bolt_Dash/EventListModel.qml b/build/qml/Bolt_Dash/EventListModel.qml deleted file mode 100644 index bd5e5c3..0000000 --- a/build/qml/Bolt_Dash/EventListModel.qml +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (C) 2018 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 - -ListModel { - id: eventListModel - - ListElement { - eventId: "enterPressed" - eventDescription: "Emitted when pressing the enter button" - shortcut: "Return" - parameters: "Enter" - } -} diff --git a/build/qml/Bolt_Dash/EventListSimulator.qml b/build/qml/Bolt_Dash/EventListSimulator.qml deleted file mode 100644 index b7724cb..0000000 --- a/build/qml/Bolt_Dash/EventListSimulator.qml +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (C) 2018 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import QtQuick.Studio.EventSimulator 1.0 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: simulator - property bool active: true - - property Timer __timer: Timer { - id: timer - interval: 100 - onTriggered: { - EventSimulator.show() - } - } - - Component.onCompleted: { - EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) - if (simulator.active) - timer.start() - } -} diff --git a/build/qml/Bolt_Dash/qmldir b/build/qml/Bolt_Dash/qmldir deleted file mode 100644 index 6e42ed5..0000000 --- a/build/qml/Bolt_Dash/qmldir +++ /dev/null @@ -1,11 +0,0 @@ -module Bolt_Dash -linktarget Bolt_Dashplugin -optional plugin Bolt_Dashplugin -classname Bolt_DashPlugin -typeinfo Bolt_Dash.qmltypes -prefer :/Bolt_Dash/ -singleton Constants 1.0 Constants.qml -DirectoryFontLoader 1.0 DirectoryFontLoader.qml -EventListModel 1.0 EventListModel.qml -EventListSimulator 1.0 EventListSimulator.qml - diff --git a/build/qml/FlowView/+DesignMode/FlowItem.qml b/build/qml/FlowView/+DesignMode/FlowItem.qml deleted file mode 100644 index b988b02..0000000 --- a/build/qml/FlowView/+DesignMode/FlowItem.qml +++ /dev/null @@ -1,100 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - - -import QtQuick 2.12 -import FlowView 1.0 - -Item { - id: flowItem - - width: 400 - height: 400 - - property var flowView: Item {} - - property string __designer_url__ - - property alias loaderSource: loader.source - - property var stateChangeTarget - - property string defaultState - - clip: true - - function setState(state) { - - } - - onStateChangeTargetChanged: { - loader.source = stateChangeTarget['__designer_url__'] - loader.item.state = flowItem.targetState - flowItem.width = flowItem.stateChangeTarget.width - flowItem.height = flowItem.stateChangeTarget.height - } - - - property string targetState - - onTargetStateChanged: { - loader.active = false - loader.active = true - loader.item.state = flowItem.targetState - } - - Text { - text: flowItem.targetState - } - - property bool active: false - - - function init() { - flowItem.defaultState = flowItem.state - if (FlowState.loading) - return - - if (loader.source == "") - return - - FlowState.loading = true - flowItem.active = true - } - - Loader { - id: loader - active: flowItem.active - onLoaded: { - flowItem.width = loader.item.childrenRect.width - flowItem.height = loader.item.childrenRect.height - FlowState.loading = false - } - } -} diff --git a/build/qml/FlowView/+DesignMode/FlowView.qml b/build/qml/FlowView/+DesignMode/FlowView.qml deleted file mode 100644 index cfd2720..0000000 --- a/build/qml/FlowView/+DesignMode/FlowView.qml +++ /dev/null @@ -1,311 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -Item { - id: root - width: 200 - height: 200 - - property FlowTransition defaultTransition - - property FlowTransition currentTransition - - property FlowTransition __forceTransition - - property list flowTransitions - property list flowDecisions - property list flowWildcards - - property Item interaction: Item { - } - - enum EffectEnum { - Instant, - Dissolve, - Fade, - Pop - } - - property bool __blockHistory: false - - property bool __isFlowView: true - - function goBack() { - if (root.__history.length === 0) - return - - var poppedItem = root.__history.pop() - - root.__blockHistory = true - root.activatedItem = poppedItem - root.__activateItem() - root.__blockHistory = false - - - if (root.__history.length > 0) - root.lastItem = root.__history.slice(-1)[0] - else - root.lastItem = null - } - - function __activateItem() { - if (!__isCompleted) - return - - if (root.activatedItem === root.currentItem) - return; - - if (root.activatedItem === root.nextItem) - return; - - root.nextItem = root.activatedItem - - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === root.activatedItem) - root.currentIndex = i - } - - } - - default property alias item: stack.data - - property Item nextItem - - property Item currentItem - property Item activatedItem - property Item lastItem - property int currentIndex: 0 - - //property list __history - property var __history: [] - - property int maxIndex: 0 - - signal transitionFinished - - property alias __stack: stack - - Item { - id: stack - visible: true - } - - property bool __isCompleted: false - - property real progress: 0 - - property bool __blockSchedule: false - - onActivatedItemChanged: { - root.__activateItem() - } - - function resetCurrentIndex() { - root.__blockSchedule = true - root.lastItem = root.currentItem - root.__history.push(root.lastItem) - - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === root.currentItem) - root.currentIndex = i - } - root.__blockSchedule = false - } - - Component.onCompleted: { - root.maxIndex = stack.children.length - 1 - - root.allChildren = [] - - for (var i = 0; i < stack.children.length; ++i) { - root.allChildren.push(stack.children[i]) - if (stack.children[i].flowView !== undefined) { - stack.children[i].flowView = root - stack.children[i].init() - } - } - - /* Assign view to all flowTransitions */ - if (defaultTransition) { - defaultTransition.transitionView = root - } - - for (i = 0; i < root.flowWildcards.length; ++i) { - var w = root.flowWildcards[i] - w.transitionView = root - } - - var t - - for (i = 0; i < root.flowTransitions.length; ++i) { - t = root.flowTransitions[i] - t.transitionView = root - } - - for (i = 0; i < root.flowTransitions.length; ++i) { - t = root.flowTransitions[i] - if (root.checkInclude(t.from, root)) { - root.currentItem = t.to[0] - if (root.currentItem.stateChangeTarget !== undefined) { - root.currentItem.stateChangeTarget.setState(root.currentItem.targetState) - root.currentItem = root.currentItem.stateChangeTarget - } - } - } - - root.resetCurrentIndex() - - __setupCurrentItem() - __isCompleted = true - } - - function checkInclude(list, item) - { - for (var i = 0; i < list.length; ++i) { - if (list[i] === item) - return true - } - return false - } - - function scheduleTransition() - { - root.progress = 0 - - var pageTransition = null - - /* find correct transition */ - for (var i = 0; i < root.flowTransitions.length; ++i) { - var t = root.flowTransitions[i] - if (checkInclude(t.from, root.currentItem) && checkInclude(t.to, root.nextItem)) { - pageTransition = t - } - } - - if (pageTransition !== null) { - - } else { - pageTransition = root.defaultTransition - } - - if (root.currentTransition) - root.currentTransition.__stop() - - /* If a specific transition is forced then use this one. */ - if (__forceTransition) - pageTransition = __forceTransition - __forceTransition = null - - root.currentTransition = pageTransition - if (root.currentTransition) - root.currentTransition.__reset(root.currentItem, root.nextItem) - - root.progress = Qt.binding(function () { - if (root.currentTransition) - return root.currentTransition.progress - return 0 - }) - } - - onCurrentIndexChanged: { - root.nextItem = root.allChildren[root.currentIndex] - - if (root.nextItem === root.currentItem) - return - - if (root.__blockSchedule) - return - - if (root.nextItem.stateChangeTarget !== undefined) { - var itemVar = root.nextItem.stateChangeTarget - var stateVar = root.nextItem.targetState - itemVar.state = stateVar - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === itemVar) - root.currentIndex = i - } - } - - scheduleTransition() - - if (!root.__blockHistory) { - root.lastItem = root.currentItem - if (!Array.isArray(root.__history)) - root.__history = [] - - root.__history.push(root.lastItem) - } - - root.currentTransition.__start() - } - - function __setupCurrentItem() { - if (root.currentItem) - root.currentItem.parent = stack - - if (root.nextItem) - root.currentItem = root.nextItem - else - root.currentItem = root.allChildren[root.currentIndex] - - - root.currentItem.parent = root - root.currentTransition = null - transitionFinished() - } - - function gotoPage(transition) { - var page = transition.to[0] - /* There might be another transition that fits. We are forcing this one. */ - __forceTransition = transition - for (var i = 0; i < root.allChildren.length; ++i) { - if (page === root.allChildren[i]) { - root.currentIndex = i - } - } - } - - property var allChildren - - property Item __fromContentItem: Item { - width: root.width - height: root.height - parent: root - } - - property Item __toContentItem: Item { - width: root.width - height: root.height - parent: root - } -} - - diff --git a/build/qml/FlowView/DefaultFlowEffect.qml b/build/qml/FlowView/DefaultFlowEffect.qml deleted file mode 100644 index 0c1a306..0000000 --- a/build/qml/FlowView/DefaultFlowEffect.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.15 - -FlowEffect { - //No Effect - duration: 0 -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowActionArea.qml b/build/qml/FlowView/FlowActionArea.qml deleted file mode 100644 index 6852d83..0000000 --- a/build/qml/FlowView/FlowActionArea.qml +++ /dev/null @@ -1,213 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 -import QtQuick.Studio.EventSystem 1.0 - -Item { - width: 80 - height: 40 - - id: root - - enum ActionType{ - LeftPress = 0, - LeftDoublePress = 1, - LeftLongPress = 2, - RightPress = 3, - RightDoublePress = 4, - RightLongPress = 5, - FlickUp = 6, - FlickDown = 7, - FlickLeft = 8, - FlickRight = 9, - PinchIn = 10, - PinchOut = 11 - } - - Item { - id: priv - - property double dragStartTime; - property point dragStartPoint; - } - - signal triggered - - property real maxDragTime: 500 - property real minDragDistance: 50 - property real minPinchFactor: 2.0 - - property int eventType: FlowActionArea.LeftPress - - TapHandler { - enabled: (root.eventType >= FlowActionArea.LeftPress && root.eventType <= FlowActionArea.LeftLongPress) - acceptedButtons: Qt.LeftButton - onTapped: if (root.eventType === FlowActionArea.LeftPress) { root.trigger(); } - onDoubleTapped: if (root.eventType === FlowActionArea.LeftDoublePress) { root.trigger(); } - onLongPressed: if (root.eventType === FlowActionArea.LeftLongPress) { root.trigger(); } - } - - TapHandler { - enabled: (root.eventType >= FlowActionArea.RightPress && root.eventType <= FlowActionArea.RightLongPress) - acceptedButtons: Qt.RightButton - onTapped: if (root.eventType === FlowActionArea.RightPress) { root.trigger(); } - onDoubleTapped: if (root.eventType === FlowActionArea.RightDoublePress) { root.trigger(); } - onLongPressed: if (root.eventType === FlowActionArea.RightLongPress) { root.trigger(); } - } - - PointHandler { - enabled: (root.eventType >= FlowActionArea.FlickUp && root.eventType <= FlowActionArea.FlickRight) - target: null - - onActiveChanged: { - if (active) { - priv.dragStartTime = Date.now(); - priv.dragStartPoint = point.position; - } else { - var time = Date.now() - priv.dragStartTime; - var distance = root.moveDistance(priv.dragStartPoint, point.position); - if (time < root.maxDragTime && distance > root.minDragDistance){ - var angle = root.moveAngle(priv.dragStartPoint, point.position); - - switch (root.eventType){ - case FlowActionArea.FlickUp: - if (angle > 2.618 || angle < -2.618) { - root.trigger(); - } - break; - case FlowActionArea.FlickDown: - if (angle < 0.524 && angle > -0.524) { - root.trigger(); - } - break; - case FlowActionArea.FlickLeft: - if (angle < -1.047 && angle > -2.094) { - root.trigger(); - } - break; - case FlowActionArea.FlickRight: - if (angle < 2.094 && angle > 1.047) { - root.trigger(); - } - break; - } - } - } - } - } - - PinchHandler { - enabled: (root.eventType === FlowActionArea.PinchIn || root.eventType === FlowActionArea.PinchOut) - target: null - - onActiveChanged: { - if (active) { - priv.dragStartTime = Date.now(); - } else { - var time = Date.now() - priv.dragStartTime; - if (time < root.maxDragTime) { - if (root.eventType === FlowActionArea.PinchIn && activeScale < (1.0 / root.minPinchFactor)) { - root.trigger(); - } else if (root.eventType === FlowActionArea.PinchOut && activeScale > root.minPinchFactor) { - root.trigger(); - } - } - } - } - } - - function moveDistance(start, end){ - var x = end.x - start.x; - var y = end.y - start.y; - return Math.sqrt(x*x+y*y); - } - - function moveAngle(start, end){ - var x = end.x - start.x; - var y = end.y - start.y; - return Math.atan2(x,y); - } - - function trigger() { - - var one = root.activeState - var two = root.parent.state - - if (one !== two) - return - - if (root.goBack) { - var par = root.parent - while (par) { - if (par.__isFlowView) { - par.goBack() - return - } - par = par.parent - } - } else { - target.trigger() - } - - root.triggered() - } - - property Connections connections : Connections { - id: connections - } - - property QtObject target - - readonly property bool isActionArea: true - property bool fromStateChange: false - - property string activeState: "" - - enabled: (target !== null || root.goBack) && (root.activeState === root.parent.state) - - property bool goBack: false - - property alias eventIds: eventListener.eventIds - - function __receiveEvent(parameters) { - var flowItem = root.parent - var flow = flowItem.parent - - if (flow.currentItem !== flowItem) - return; - - root.trigger() - } - - EventListener { - id: eventListener - onTriggered: root.__receiveEvent(parameters) - } -} diff --git a/build/qml/FlowView/FlowDecision.qml b/build/qml/FlowView/FlowDecision.qml deleted file mode 100644 index bec7a92..0000000 --- a/build/qml/FlowView/FlowDecision.qml +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.15 -import QtQuick.Window 2.14 -import QtQuick.Controls 2.15 - -QtObject { - id: root - - property list targets - - readonly property bool isFlowDecision: true - - property string dialogTitle: qsTr("Title") - - function trigger() { - var hasDialog = false - for (var i = 0; i < root.targets.length; ++i) { - if (root.targets[i].question !== "") - hasDialog = true - } - - if (hasDialog) { - loader.show() - } - } - - property Loader loader: Loader { - active: false - function show() { - active = true - item.show() - item.raise() - item.requestActivate() - } - - sourceComponent: windowComponent - } - - property Component windowComponent: Component { - - Window { - - id: dialog - - title: root.dialogTitle - modality: Qt.WindowModal - transientParent: root.Window.window - - width: 400 - height: column.height - - minimumWidth: 400 - minimumHeight: 100 - flags: Qt.Dialog | Qt.WindowStaysOnTopHint | Qt.WindowTitleHint - - Rectangle { - id: background - anchors.fill: parent - - ScrollView { - anchors.fill: parent - - - Column { - id: column - Repeater { - model: targets - Rectangle { - visible: root.targets[index].question !== "" - width: background.width - height: 20 - opacity: mouseArea.containsMouse ? 1 : 0.8 - color: index / 2 ? "#ebecf0" : "white" - MouseArea { - id: mouseArea - hoverEnabled: true - onClicked: { - root.targets[index].__decisionTrigger() - loader.item.close() - loader.active = false - } - anchors.fill: parent - } - - Text { - height: 20 - text: root.targets[index].question - verticalAlignment: Text.AlignVCenter - } - } - } - } - } - } - } - - } -} diff --git a/build/qml/FlowView/FlowEffect.qml b/build/qml/FlowView/FlowEffect.qml deleted file mode 100644 index 08bafc0..0000000 --- a/build/qml/FlowView/FlowEffect.qml +++ /dev/null @@ -1,161 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ -import QtQuick 2.15 -import QtQuick.Timeline 1.0 - -QtObject { - id: root - signal finished - signal started - signal reseted - function reset() { - /* - if (root.duration === 0) { - root.transitionView.__setupCurrentItem() - return - }*/ - - /* We set the parents to the content items to apply effects */ - - resetProperties() - - from.parent = transitionView.__fromContentItem - to.parent = transitionView.__toContentItem - root.progress = root.backwards ? 100 : 0 - - enable() - root.progress = -1 - root.progress = 0 - } - - property bool __aborted: false - - function enable() { - timeline.enabled = true - root.started() - } - - function start() { - anim.from = Math.min(root.progress, 100) - anim.to = root.backwards ? 0 : 100 - anim.duration = root.duration * Math.abs(anim.to - anim.from) / 100 - - root.__aborted = false - - anim.start() - } - - function abort() { - - anim.from = root.progress - anim.to = root.backwards ? 100 : 0 - - anim.duration = root.duration * Math.abs(anim.from - anim.to) / 100 - - root.__aborted = true - anim.restart() - - } - - function stop() { - anim.stop() - } - - property Item from - property Item to - - property Item transitionView - - property real duration: 250 - property alias easing: anim.easing - - property Timeline timeline: Timeline { - - } - - property real progress: 0 - - property bool backwards: false - - property Binding timelineBinding: Binding { - target: timeline - property: "currentFrame" - value: root.progress * 10 - } - - function resetProperties() { - transitionView.__fromContentItem.opacity = 1 - transitionView.__fromContentItem.x = 0 - transitionView.__fromContentItem.y = 0 - transitionView.__fromContentItem.z = 0 - transitionView.__fromContentItem.scale = 1 - - transitionView.__toContentItem.opacity = 1 - transitionView.__toContentItem.x = 0 - transitionView.__toContentItem.y = 0 - transitionView.__toContentItem.z = 0 - transitionView.__toContentItem.scale = 1 - } - - property PropertyAnimation __anim: PropertyAnimation { - id: anim - duration: 250 - loops: 1 - target: root - property: "progress" - onStopped: { - timeline.enabled = false - /* reset all typical properties */ - - resetProperties() - - root.finished() - - if (!root.__aborted) { - root.transitionView.__setupCurrentItem() - } else { - if (root.transitionView.nextItem) { - root.transitionView.nextItem.parent = transitionView.__stack - root.transitionView.nextItem = root.transitionView.currentItem - } - root.transitionView.__setupCurrentItem() - root.transitionView.nextItem = null - } - - root.progress = 0 - } - } - -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowFadeEffect.qml b/build/qml/FlowView/FlowFadeEffect.qml deleted file mode 100644 index 6797b1f..0000000 --- a/build/qml/FlowView/FlowFadeEffect.qml +++ /dev/null @@ -1,80 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - //Fade Effect - duration: 250 - onStarted: { - group01.target = transitionView.__fromContentItem - group02.target = transitionView.__toContentItem - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "opacity" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - } -} diff --git a/build/qml/FlowView/FlowItem.qml b/build/qml/FlowView/FlowItem.qml deleted file mode 100644 index b87007a..0000000 --- a/build/qml/FlowView/FlowItem.qml +++ /dev/null @@ -1,116 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 - -Item { - id: flowItem - - width: 400 - height: 400 - - property var flowView: Item {} - - property alias loaderSource: loader.source - - property var stateChangeTarget - - property string targetState - - property string defaultState: undefined - - property bool forceActive: false - - property bool __isFlowItem: true - - function setState(newState) { - flowItem.state = newState - } - - property bool active: { - if (flowItem.forceActive) - return true; - if (flowItem.flowView !== null - && flowItem.flowView.currentItem !== undefined - && flowItem.flowView.currentItem === flowItem) - return true - - if (flowItem.flowView !== null - && flowItem.flowView.nextItem !== undefined - && flowItem.flowView.nextItem === flowItem) - return true - - return false - } - - Loader { - id: loader - active: flowItem.active - } - - - function init() { - - flowItem.x = 0 - flowItem.y = 0 - - flowItem.defaultState = flowItem.state - var itemVar - var i - - if (flowItem.stateChangeTarget === undefined) { - - for (i = 0; i < flowItem.children.length; ++i) { - itemVar = flowItem.children[i] - if (itemVar.isActionArea === true - && !itemVar.fromStateChange) { - itemVar.activeState = flowItem.state - } - - } - } else { - var childNum = flowItem.children.length - var childArray = [] - - for (i = 0; i < flowItem.children.length; ++i) { - childArray.push(flowItem.children[i]) - } - - for (i = 0; i < childNum; ++i) { - itemVar = childArray[i] - - if (itemVar.isActionArea === true) { - itemVar.fromStateChange = true - itemVar.activeState = flowItem.targetState - itemVar.parent = flowItem.stateChangeTarget - } - } - } - } -} diff --git a/build/qml/FlowView/FlowMoveEffect.qml b/build/qml/FlowView/FlowMoveEffect.qml deleted file mode 100644 index de3ecda..0000000 --- a/build/qml/FlowView/FlowMoveEffect.qml +++ /dev/null @@ -1,102 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real itemHeight: transitionView.height - property int direction: 0 - //left, right, up, down - - duration: 250 - onStarted: { - group01.target = effect.transitionView.__toContentItem - group02.target = effect.transitionView.__toContentItem - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - - value: { - if (effect.direction === 0) - return -effect.transitionView.width - if (effect.direction === 1) - return effect.transitionView.width - return 0 - } - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - - KeyframeGroup { - id: group02 - - property: "y" - - Keyframe { - frame: 0 - - value: { - if (effect.direction === 2) - return -effect.itemHeight - if (effect.direction === 3) - return effect.itemHeight - return 0 - } - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - - - } -} diff --git a/build/qml/FlowView/FlowPushEffect.qml b/build/qml/FlowView/FlowPushEffect.qml deleted file mode 100644 index 3fb911a..0000000 --- a/build/qml/FlowView/FlowPushEffect.qml +++ /dev/null @@ -1,231 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real scale: 1 - property real inOpacity: 1 - property real outOpacity: 1 - - property int direction: 0 - //left, right, up, down - - property bool revealCurrent: false - property int itemHeight: effect.transitionView.height - - duration: 250 - onStarted: { - group01.target = transitionView.__fromContentItem - group02.target = transitionView.__toContentItem - group03.target = transitionView.__fromContentItem - group04.target = transitionView.__toContentItem - group05.target = transitionView.__fromContentItem - group06.target = transitionView.__toContentItem - group07.target = transitionView.__fromContentItem - group08.target = transitionView.__toContentItem - if (effect.revealCurrent) - group01.target.z = 1 - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - value: { - if (effect.direction === 0) - return effect.transitionView.width - if (effect.direction === 1) - return -effect.transitionView.width - return 0 - } - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "x" - - Keyframe { - frame: 0 - value: { - if (effect.revealCurrent) - return 0 - if (effect.direction === 0) - return -effect.transitionView.width - if (effect.direction === 1) - return effect.transitionView.width - return 0 - } - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group03 - - property: "scale" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.scale - easing: effect.easing - } - } - - KeyframeGroup { - id: group04 - - property: "scale" - - Keyframe { - frame: 0 - value: effect.scale - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - - KeyframeGroup { - id: group05 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.outOpacity - easing: effect.easing - } - } - - KeyframeGroup { - id: group06 - - property: "opacity" - - Keyframe { - frame: 0 - value: effect.inOpacity - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - - KeyframeGroup { - id: group07 - - property: "y" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - - value: { - if (effect.direction === 2) - return -effect.itemHeight - if (effect.direction === 3) - return effect.itemHeight - return 0 - } - - easing: effect.easing - } - } - - KeyframeGroup { - id: group08 - - property: "y" - - Keyframe { - frame: 0 - - value: { - if (effect.revealCurrent) - return 0 - if (effect.direction === 2) - return effect.itemHeight - if (effect.direction === 3) - return -effect.itemHeight - return 0 - } - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - } -} diff --git a/build/qml/FlowView/FlowPushLeftEffect.qml b/build/qml/FlowView/FlowPushLeftEffect.qml deleted file mode 100644 index 886228c..0000000 --- a/build/qml/FlowView/FlowPushLeftEffect.qml +++ /dev/null @@ -1,155 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real scale: 1 - property real opacity: 1 - - duration: 250 - onStarted: { - group01.target = transitionView.__fromContentItem - group02.target = transitionView.__toContentItem - group03.target = transitionView.__fromContentItem - group04.target = transitionView.__toContentItem - group05.target = transitionView.__fromContentItem - group06.target = transitionView.__toContentItem - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - value: effect.transitionView.width - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "x" - - Keyframe { - frame: 0 - value: -effect.transitionView.width - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group03 - - property: "scale" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.scale - easing: effect.easing - } - } - - KeyframeGroup { - id: group04 - - property: "scale" - - Keyframe { - frame: 0 - value: effect.scale - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - - KeyframeGroup { - id: group05 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.opacity - easing: effect.easing - } - } - - KeyframeGroup { - id: group06 - - property: "opacity" - - Keyframe { - frame: 0 - value: effect.opacity - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - } -} diff --git a/build/qml/FlowView/FlowPushRightEffect.qml b/build/qml/FlowView/FlowPushRightEffect.qml deleted file mode 100644 index cb169d4..0000000 --- a/build/qml/FlowView/FlowPushRightEffect.qml +++ /dev/null @@ -1,155 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real scale: 1 - property real opacity: 1 - - duration: 250 - onStarted: { - group01.target = transitionView.__fromContentItem - group02.target = transitionView.__toContentItem - group03.target = transitionView.__fromContentItem - group04.target = transitionView.__toContentItem - group05.target = transitionView.__fromContentItem - group06.target = transitionView.__toContentItem - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - value: -effect.transitionView.width - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "x" - - Keyframe { - frame: 0 - value: effect.transitionView.width - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group03 - - property: "scale" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.scale - easing: effect.easing - } - } - - KeyframeGroup { - id: group04 - - property: "scale" - - Keyframe { - frame: 0 - value: effect.scale - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - - KeyframeGroup { - id: group05 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.opacity - easing: effect.easing - } - } - - KeyframeGroup { - id: group06 - - property: "opacity" - - Keyframe { - frame: 0 - value: effect.opacity - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - } -} diff --git a/build/qml/FlowView/FlowPushUpEffect.qml b/build/qml/FlowView/FlowPushUpEffect.qml deleted file mode 100644 index 888d72c..0000000 --- a/build/qml/FlowView/FlowPushUpEffect.qml +++ /dev/null @@ -1,162 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real scale: 1 - property real inOpacity: 1 - property real outOpacity: 1 - - property int fromItemHeight: effect.transitionView.height - - property bool revealCurrent: false - - duration: 250 - onStarted: { - group01.target = transitionView.__fromContentItem - group02.target = transitionView.__toContentItem - group03.target = transitionView.__fromContentItem - group04.target = transitionView.__toContentItem - group05.target = transitionView.__fromContentItem - group06.target = transitionView.__toContentItem - if (effect.revealCurrent) - group01.target.z = 1 - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "y" - - Keyframe { - frame: 0 - value: 0 - } - - Keyframe { - frame: 1000 - value: -fromItemHeight - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "y" - - Keyframe { - frame: 0 - value: effect.revealCurrent ? 0 : effect.transitionView.height - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group03 - - property: "scale" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.scale - easing: effect.easing - } - } - - KeyframeGroup { - id: group04 - - property: "scale" - - Keyframe { - frame: 0 - value: effect.scale - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - - KeyframeGroup { - id: group05 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.outOpacity - easing: effect.easing - } - } - - KeyframeGroup { - id: group06 - - property: "opacity" - - Keyframe { - frame: 0 - value: effect.inOpacity - } - - Keyframe { - frame: 1000 - value: 1 - easing: effect.easing - } - } - } -} diff --git a/build/qml/FlowView/FlowSlideDownEffect.qml b/build/qml/FlowView/FlowSlideDownEffect.qml deleted file mode 100644 index 88ff610..0000000 --- a/build/qml/FlowView/FlowSlideDownEffect.qml +++ /dev/null @@ -1,90 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - property real itemHeight: transitionView.height - property real outOpacity: 1 - - duration: 250 - onStarted: { - group01.target = transitionView.__toContentItem - group02.target = transitionView.__fromContentItem - group01.target.z = 1 - } - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "y" - - Keyframe { - frame: 0 - value: -effect.itemHeight - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - - KeyframeGroup { - id: group02 - - property: "opacity" - - Keyframe { - frame: 0 - value: 1 - } - - Keyframe { - frame: 1000 - value: effect.outOpacity - easing: effect.easing - } - } - } -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowSlideLeftEffect.qml b/build/qml/FlowView/FlowSlideLeftEffect.qml deleted file mode 100644 index 21a3027..0000000 --- a/build/qml/FlowView/FlowSlideLeftEffect.qml +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - duration: 250 - onStarted: group01.target = transitionView.__toContentItem - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - value: -transitionView.width - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - } -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowSlideRightEffect.qml b/build/qml/FlowView/FlowSlideRightEffect.qml deleted file mode 100644 index 12d3262..0000000 --- a/build/qml/FlowView/FlowSlideRightEffect.qml +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - duration: 250 - onStarted: group01.target = transitionView.__toContentItem - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "x" - - Keyframe { - frame: 0 - value:transitionView.width - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - } -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowSlideUpEffect.qml b/build/qml/FlowView/FlowSlideUpEffect.qml deleted file mode 100644 index aa06c93..0000000 --- a/build/qml/FlowView/FlowSlideUpEffect.qml +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Timeline 1.0 - -FlowEffect { - id: effect - - duration: 250 - onStarted: group01.target = transitionView.__toContentItem - - timeline: Timeline { - startFrame: 0 - endFrame: 1000 - - KeyframeGroup { - id: group01 - - property: "y" - - Keyframe { - frame: 0 - value: transitionView.height - } - - Keyframe { - frame: 1000 - value: 0 - easing: effect.easing - } - } - } -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/FlowView/FlowState.qml b/build/qml/FlowView/FlowState.qml deleted file mode 100644 index 6f16db7..0000000 --- a/build/qml/FlowView/FlowState.qml +++ /dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ -pragma Singleton -import QtQuick 2.15 - -QtObject { - id: object - - property bool loading: false -} diff --git a/build/qml/FlowView/FlowTransition.qml b/build/qml/FlowView/FlowTransition.qml deleted file mode 100644 index 5ff1d27..0000000 --- a/build/qml/FlowView/FlowTransition.qml +++ /dev/null @@ -1,154 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.15 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: root - - signal finished - - /* Those should be lists that allow a n*n mappings. */ - //property Item from: null - //property Item to: null - property list from - property list to - property int duration - - property var transitionView: Item {} - - property real progress: effect.progress - - property bool condition: true - - property string question - - function __start() { - root.effect.start() - } - - function __enable() { - effect.enable() - } - - function __reset(current, next) { - root.effect.from = current - root.effect.to = next - root.effect.transitionView = root.transitionView - - root.effect.reset() - } - - function __stop(current, next) { - root.effect.stop() - } - - function __checkInclude(list, item) { - for (var i = 0; i < list.length; ++i) { - if (list[i] === item) - return true - } - return false - } - - property alias eventIds: eventListener.eventIds - - function __receiveEvent(parameters) { - var flowItem = root.from[0] - var flow = root.transitionView - - if (flowItem.stateChangeTarget !== undefined - && flowItem.stateChangeTarget === flow.currentItem) { - if (flowItem.targetState === flow.currentItem.state) - flowItem = flowItem.stateChangeTarget - } - - if (flow.currentItem !== flowItem) - return; - - root.trigger() - } - - property EventListener eventListener: EventListener { - id: eventListener - onTriggered: root.__receiveEvent(parameters) - } - - function trigger() { - var fromEmpty = root.from.length === 0 - - if (to[0].isFlowDecision === true) - to[0].trigger(); - - var stateChanger = false - - if (root.from[0] !== undefined) - stateChanger = root.from[0].stateChangeTarget !== undefined - - var toStateChanger = false - - if (root.to[0] !== undefined) - toStateChanger = root.to[0].stateChangeTarget !== undefined - - if (!toStateChanger && root.to[0].defaultState !== undefined) - root.to[0].state = root.to[0].defaultState - - if (stateChanger || fromEmpty || __checkInclude(root.from, transitionView.currentItem)) - timer.restart() - } - - function __decisionTrigger() { - /* Workaround for flowDecisions with multiple sources */ - if (!__checkInclude(root.from, transitionView.currentItem) && root.from.length !== 0) - root.from = [] - root.trigger() - } - - property Timer timer: Timer { - interval: 1 - running: false - repeat: false - onTriggered: transitionView.gotoPage(root) - } - - property FlowEffect effect: DefaultFlowEffect { - transitionView: transitionView - - } - - onEffectChanged: { - root.effect.transitionView = root.transitionView - } - - property Connections effectConnection: Connections { - target: root.effect - function onFinished() { root.finished() } - } -} diff --git a/build/qml/FlowView/FlowTransitionList.qml b/build/qml/FlowView/FlowTransitionList.qml deleted file mode 100644 index e2aa4ae..0000000 --- a/build/qml/FlowView/FlowTransitionList.qml +++ /dev/null @@ -1,101 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 - -QtObject { - id: list - property Item intialItem - //has next prev and most likely currentIndex, count - property var items - - property Item nextItem - property Item prevItem - - property Item currentItem - - onCurrentItemChanged: { - - var currentIndex = list.__indexForCurrentItem() - - if (currentIndex < (list.items.length - 1)) - list.nextItem = list.items[currentIndex + 1] - if (currentIndex > 0) - list.prevItem = list.items[currentIndex - 1] - - } - - function __indexForCurrentItem() { - var currentIndex = -1 - for (var i = 0; i < list.items.length; ++i) { - var item = list.items[i] - if (item === list.currentItem) - currentIndex = i - } - return currentIndex - } - - property int length: items.length - - function next() { - var currentIndex = list.__indexForCurrentItem() - - list.nextItem = null - - if (currentIndex > -1 && (currentIndex < list.items.length - 1)) { - list.prevItem = list.items[currentIndex] - list.currentItem = list.items[currentIndex + 1] - if (currentIndex + 2 < list.items.length) - list.nextItem = list.items[currentIndex + 2] - } - } - - function prev() { - var currentIndex = list.__indexForCurrentItem() - - list.prevItem = null - - if (currentIndex > 0 && currentIndex < (list.items.length)) { - if (currentIndex - 2 >= 0) - list.prevItem = list.items[currentIndex - 2] - list.currentItem = list.items[currentIndex - 1] - - list.nextItem = list.items[currentIndex] - } - } - - Component.onCompleted: { - list.currentItem = list.intialItem - var currentIndex = list.__indexForCurrentItem() - if (currentIndex < (list.items.length - 1)) - list.nextItem = list.items[currentIndex + 1] - if (currentIndex > 0) - list.prevItem = list.items[currentIndex - 1] - } -} diff --git a/build/qml/FlowView/FlowView.qml b/build/qml/FlowView/FlowView.qml deleted file mode 100644 index ab4002f..0000000 --- a/build/qml/FlowView/FlowView.qml +++ /dev/null @@ -1,348 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -Item { - id: root - width: 200 - height: 200 - - property FlowTransition defaultTransition - - property FlowTransition currentTransition - - property FlowTransition __forceTransition - - property list flowTransitions - property list flowDecisions - property list flowWildcards - - property Item interaction: Item { - } - - property bool __parentFlowChanged: false - - enum EffectEnum { - Instant, - Dissolve, - Fade, - Pop - } - - property bool __blockHistory: false - - property bool __isFlowView: true - - function goBack() { - if (root.__history.length === 0) - return - - if (root.__parentFlowChanged) { - root.__parentFlowChanged = false - parentFlowView().goBack() - } - - var poppedItem = root.__history.pop() - - root.__blockHistory = true - root.activatedItem = poppedItem - root.__activateItem() - root.__blockHistory = false - - - if (root.__history.length > 0) - root.lastItem = root.__history.slice(-1)[0] - else - root.lastItem = null - } - - function __activateItem() { - if (!__isCompleted) - return - - if (root.activatedItem === root.currentItem) - return; - - if (root.activatedItem === root.nextItem) - return; - - root.nextItem = root.activatedItem - - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === root.activatedItem) - root.currentIndex = i - } - - } - - function parentFlowView() { - var par = root.parent - while (par) { - if (par.__isFlowView) - return par - par = par.parent - } - return null - } - - function parentFlowItem() { - var par = root.parent - while (par) { - if (par.__isFlowItem) - return par - par = par.parent - } - return null - - } - - default property alias item: stack.data - - property Item nextItem - - property Item currentItem - property Item activatedItem - property Item lastItem - property int currentIndex: 0 - - //property list __history - property var __history: [] - - property int maxIndex: 0 - - signal transitionFinished - - property alias __stack: stack - - Item { - id: stack - visible: false - } - - property bool __isCompleted: false - - property real progress: 0 - - property bool __blockSchedule: false - - onActivatedItemChanged: { - root.__activateItem() - } - - function resetCurrentIndex() { - root.__blockSchedule = true - root.lastItem = root.currentItem - root.__history.push(root.lastItem) - - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === root.currentItem) - root.currentIndex = i - } - root.__blockSchedule = false - } - - Component.onCompleted: { - root.maxIndex = stack.children.length - 1 - - root.allChildren = [] - - for (var i = 0; i < stack.children.length; ++i) { - root.allChildren.push(stack.children[i]) - if (stack.children[i].flowView !== undefined) { - stack.children[i].flowView = root - stack.children[i].init() - } - } - - /* Assign view to all flowTransitions */ - if (defaultTransition) { - defaultTransition.transitionView = root - } - - for (i = 0; i < root.flowWildcards.length; ++i) { - var w = root.flowWildcards[i] - w.transitionView = root - } - - var t - - for (i = 0; i < root.flowTransitions.length; ++i) { - t = root.flowTransitions[i] - t.transitionView = root - } - - for (i = 0; i < root.flowTransitions.length; ++i) { - t = root.flowTransitions[i] - if (root.checkInclude(t.from, root)) { - root.currentItem = t.to[0] - if (root.currentItem.stateChangeTarget !== undefined) { - root.currentItem.stateChangeTarget.setState(root.currentItem.targetState) - root.currentItem = root.currentItem.stateChangeTarget - } - } - } - - root.resetCurrentIndex() - - __setupCurrentItem() - __isCompleted = true - } - - function checkInclude(list, item) - { - for (var i = 0; i < list.length; ++i) { - if (list[i] === item) - return true - } - return false - } - - function scheduleTransition() - { - root.progress = 0 - - var pageTransition = null - - /* find correct transition */ - for (var i = 0; i < root.flowTransitions.length; ++i) { - var t = root.flowTransitions[i] - if (checkInclude(t.from, root.currentItem) && checkInclude(t.to, root.nextItem)) { - pageTransition = t - } - } - - if (pageTransition !== null) { - - } else { - pageTransition = root.defaultTransition - } - - if (root.currentTransition) - root.currentTransition.__stop() - - /* If a specific transition is forced then use this one. */ - if (__forceTransition) - pageTransition = __forceTransition - __forceTransition = null - - root.currentTransition = pageTransition - if (root.currentTransition) - root.currentTransition.__reset(root.currentItem, root.nextItem) - - root.progress = Qt.binding(function () { - if (root.currentTransition) - return root.currentTransition.progress - return 0 - }) - } - - onCurrentIndexChanged: { - root.nextItem = root.allChildren[root.currentIndex] - - if (root.nextItem === root.currentItem) - return - - if (root.__blockSchedule) - return - - if (root.nextItem.stateChangeTarget !== undefined) { - var itemVar = root.nextItem.stateChangeTarget - var stateVar = root.nextItem.targetState - itemVar.state = stateVar - for (var i = 0; i < root.allChildren.length; ++i) { - if (root.allChildren[i] === itemVar) - root.currentIndex = i - } - } - - scheduleTransition() - - if (!root.__blockHistory) { - root.lastItem = root.currentItem - if (!Array.isArray(root.__history)) - root.__history = [] - - root.__history.push(root.lastItem) - } - - root.currentTransition.__start() - } - - function __setupCurrentItem() { - if (root.currentItem) - root.currentItem.parent = stack - - if (root.nextItem) - root.currentItem = root.nextItem - else - root.currentItem = root.allChildren[root.currentIndex] - - - root.currentItem.parent = root - root.currentTransition = null - transitionFinished() - } - - function gotoPage(transition) { - var page = transition.to[0] - /* There might be another transition that fits. We are forcing this one. */ - __forceTransition = transition - for (var i = 0; i < root.allChildren.length; ++i) { - if (page === root.allChildren[i]) { - root.currentIndex = i - } - } - } - - function gotoItem(item) { - for (var i = 0; i < root.allChildren.length; ++i) { - if (item === root.allChildren[i]) { - root.currentIndex = i - print("index " + i ) - } - } - } - - property var allChildren - - property Item __fromContentItem: Item { - width: root.width - height: root.height - parent: root - } - - property Item __toContentItem: Item { - width: root.width - height: root.height - parent: root - } -} - - diff --git a/build/qml/FlowView/FlowView_qml_module_dir_map.qrc b/build/qml/FlowView/FlowView_qml_module_dir_map.qrc deleted file mode 100644 index 3eaf335..0000000 --- a/build/qml/FlowView/FlowView_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/FlowView - - - diff --git a/build/qml/FlowView/FlowWildcard.qml b/build/qml/FlowView/FlowWildcard.qml deleted file mode 100644 index b814c52..0000000 --- a/build/qml/FlowView/FlowWildcard.qml +++ /dev/null @@ -1,77 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.15 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: root - - property list positivelist - property list negativelist - - default property list data - - property FlowTransition target - - property var transitionView: Item {} - - property bool globalWildcard: false - - function trigger() { - var cItem = root.transitionView.currentItem - - if (root.globalWildcard && root.transitionView.parentFlowView()) { - root.transitionView.__parentFlowChanged = true - root.transitionView.parentFlowView().gotoItem(root.transitionView.parentFlowItem()) - } - - if (cItem === undefined) - return - - if (root.transitionView.checkInclude(root.negativelist, cItem)) - return; - - if (root.positivelist.length !== 0) { - if (!root.transitionView.checkInclude(root.positivelist, cItem)) - return; - } - - root.target.trigger() - } - - property EventListener eventListener: EventListener { - id: eventListener - onTriggered: root.trigger() - } - - property alias eventIds: eventListener.eventIds -} - - diff --git a/build/qml/FlowView/SwipeInteraction.qml b/build/qml/FlowView/SwipeInteraction.qml deleted file mode 100644 index 7c7472e..0000000 --- a/build/qml/FlowView/SwipeInteraction.qml +++ /dev/null @@ -1,118 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - - -import QtQuick 2.12 -import TransitionItem 1.0 -import QtQuick.Controls 2.3 -import QtQuick.Timeline 1.0 - -Item { - id: root - property var transitionView - property var list - parent: transitionView - anchors.fill: parent - z: -1 - - property real threshold: 35 - property bool horizontal: true - property Item __activeItem - property bool __reactToTransition: false - - Timer { - id: blocker - running: false - interval: 200 - repeat: false - onTriggered: handler.enabled = true - } - - Connections { - target: transitionView - function onTransitionFinished() { - if (!root.__reactToTransition) - return - /* This is a tricky one. We have to also update the list. - The connection could be also done the other way around */ - list.currentItem = root.__activeItem - root.__reactToTransition = false - } - } - - DragHandler { - id: handler - xAxis.enabled: root.horizontal - yAxis.enabled: !root.horizontal - target: null - enabled: true - - function distance() { - if (root.horizontal) - return (centroid.position.x - centroid.pressPosition.x) / transitionView.width - return -(centroid.position.y - centroid.pressPosition.y) / transitionView.height - } - - onActiveChanged: { - if (handler.active) { - if (distance() < 0) - transitionView.nextItem = list.nextItem - else - transitionView.nextItem = list.prevItem - - transitionView.scheduleTransition() - if (transitionView.currentTransition) - transitionView.currentTransition.effect.enable() - } else { - var p = Math.abs(distance()) * 100 - if (transitionView.currentTransition && transitionView.currentTransition.effect.progress > root.threshold) { - root.__activeItem = transitionView.nextItem - root.__reactToTransition = true - transitionView.currentTransition.__start() - } else { /* Drag was released, but threshold was not passed */ - if (transitionView.currentTransition) - transitionView.currentTransition.effect.abort() - } - /* Block for 100ms */ - handler.enabled = false - blocker.start() - } - } - - onCentroidChanged: { - if (!handler.enabled) - return - - var p = Math.abs(distance()) * 100 - - if (transitionView.currentTransition) - transitionView.currentTransition.effect.progress = p * 2 - } - } -} diff --git a/build/qml/FlowView/qmldir b/build/qml/FlowView/qmldir deleted file mode 100644 index d46e216..0000000 --- a/build/qml/FlowView/qmldir +++ /dev/null @@ -1,46 +0,0 @@ -module FlowView -designersupported -typeinfo FlowView.qmltypes -DefaultFlowEffect 6.0 DefaultFlowEffect.qml -DefaultFlowEffect 1.0 DefaultFlowEffect.qml -SwipeInteraction 6.0 SwipeInteraction.qml -SwipeInteraction 1.0 SwipeInteraction.qml -FlowEffect 6.0 FlowEffect.qml -FlowEffect 1.0 FlowEffect.qml -FlowFadeEffect 6.0 FlowFadeEffect.qml -FlowFadeEffect 1.0 FlowFadeEffect.qml -FlowPushLeftEffect 6.0 FlowPushLeftEffect.qml -FlowPushLeftEffect 1.0 FlowPushLeftEffect.qml -FlowPushRightEffect 6.0 FlowPushRightEffect.qml -FlowPushRightEffect 1.0 FlowPushRightEffect.qml -FlowSlideDownEffect 6.0 FlowSlideDownEffect.qml -FlowSlideDownEffect 1.0 FlowSlideDownEffect.qml -FlowSlideLeftEffect 6.0 FlowSlideLeftEffect.qml -FlowSlideLeftEffect 1.0 FlowSlideLeftEffect.qml -FlowSlideRightEffect 6.0 FlowSlideRightEffect.qml -FlowSlideRightEffect 1.0 FlowSlideRightEffect.qml -FlowSlideUpEffect 6.0 FlowSlideUpEffect.qml -FlowSlideUpEffect 1.0 FlowSlideUpEffect.qml -FlowMoveEffect 6.0 FlowMoveEffect.qml -FlowMoveEffect 1.0 FlowMoveEffect.qml -FlowPushEffect 6.0 FlowPushEffect.qml -FlowPushEffect 1.0 FlowPushEffect.qml -FlowTransition 6.0 FlowTransition.qml -FlowTransition 1.0 FlowTransition.qml -FlowTransitionList 6.0 FlowTransitionList.qml -FlowTransitionList 1.0 FlowTransitionList.qml -FlowView 6.0 FlowView.qml -FlowView 1.0 FlowView.qml -FlowPushUpEffect 6.0 FlowPushUpEffect.qml -FlowPushUpEffect 1.0 FlowPushUpEffect.qml -FlowItem 6.0 FlowItem.qml -FlowItem 1.0 FlowItem.qml -FlowDecision 6.0 FlowDecision.qml -FlowDecision 1.0 FlowDecision.qml -FlowWildcard 6.0 FlowWildcard.qml -FlowWildcard 1.0 FlowWildcard.qml -FlowActionArea 6.0 FlowActionArea.qml -FlowActionArea 1.0 FlowActionArea.qml -singleton FlowState 6.0 FlowState.qml -singleton FlowState 1.0 FlowState.qml - diff --git a/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc b/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc deleted file mode 100644 index cf95706..0000000 --- a/build/qml/Main/Bolt_DashApp_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/Main - - - diff --git a/build/qml/Main/main.qml b/build/qml/Main/main.qml deleted file mode 100644 index 14ce61a..0000000 --- a/build/qml/Main/main.qml +++ /dev/null @@ -1,9 +0,0 @@ -/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based -C++ project. */ - -import QtQuick -import content - -App { - visibility: "FullScreen" -} diff --git a/build/qml/Main/qmldir b/build/qml/Main/qmldir deleted file mode 100644 index ecfe06b..0000000 --- a/build/qml/Main/qmldir +++ /dev/null @@ -1,4 +0,0 @@ -module Main -typeinfo Bolt_DashApp.qmltypes -prefer :/Main/ - diff --git a/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc deleted file mode 100644 index 44323cf..0000000 --- a/build/qml/QtQuick/Studio/Application/QuickStudioApplication_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Application - - - diff --git a/build/qml/QtQuick/Studio/Application/qmldir b/build/qml/QtQuick/Studio/Application/qmldir deleted file mode 100644 index 58c391b..0000000 --- a/build/qml/QtQuick/Studio/Application/qmldir +++ /dev/null @@ -1,8 +0,0 @@ -module QtQuick.Studio.Application -linktarget QuickStudioApplicationplugin -optional plugin QuickStudioApplicationplugin -classname QtQuick_Studio_ApplicationPlugin -designersupported -typeinfo QuickStudioApplication.qmltypes -prefer :/QtQuick/Studio/Application/ - diff --git a/build/qml/QtQuick/Studio/Components/ArcArrow.qml b/build/qml/QtQuick/Studio/Components/ArcArrow.qml deleted file mode 100644 index 08fdd2d..0000000 --- a/build/qml/QtQuick/Studio/Components/ArcArrow.qml +++ /dev/null @@ -1,83 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.15 - -GroupItem { - id: root - - property int thickness: 45 - - property int arrowSize: 80 - - property int radius: 5 - property color color: "#b6b3b3" - - property alias begin: arc.begin - property alias end: arc.end - - property bool flip: false - - transform: Scale { - xScale: root.flip ? -1 : 1 - origin.x: root.width / 2 - origin.y: root.height / 2 - } - - ArcItem { - id: arc - x: 0 - y: 16 - width: 300 - height: 300 - capStyle: root.radius > 2 ? 32 : 0 - end: 180 - strokeWidth: root.thickness - strokeColor: root.color - fillColor: "#00000000" - - Item { - anchors.fill: parent - rotation: arc.end - TriangleItem { - id: triangle3 - x: root.width / 2 - - y: -root.thickness / 2 - width: root.arrowSize - height: root.arrowSize - strokeWidth: -1 - rotation: 90 - radius: root.radius - - fillColor: root.color - } - } - } -} diff --git a/build/qml/QtQuick/Studio/Components/ArcItem.qml b/build/qml/QtQuick/Studio/Components/ArcItem.qml deleted file mode 100644 index a1c8f2e..0000000 --- a/build/qml/QtQuick/Studio/Components/ArcItem.qml +++ /dev/null @@ -1,494 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.9 -import QtQuick.Shapes 1.12 - -/*! - \qmltype ArcItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief An arc that ends at the specified position and uses the specified - radius. - - An arc is specified by setting values in degrees for the \l begin and - \l end properties. The arc can be just a line or a filled outline. - The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify - the appearance of the line or outline. The \l dashPattern and \l dashOffset - properties specify the appearance of dashed lines. - - The area between the arc's start and end points or the area inside the - outline are painted using either a solid fill color, specified using the - \l fillColor property, or a gradient, defined using one of the - \l ShapeGradient subtypes and set using the \l gradient property. - If both a color and a gradient are specified, the gradient is used. - - To create an arc with an outline, set the \l outlineArc property to \c true. - The \l arcWidth property specifies the width of the arc outline, including - the stroke. The \l arcWidthBegin and \l arcWidthEnd properties can be used - to specify the width of the start and end points of the outline separately. - The width of the outline between the start and end points is calculated - automatically. The inner and outer curves or the outline can be adjusted by - specifying values for the \l radiusInnerAdjust and \l radiusOuterAdjust - properties. - - The \l round, \l roundBegin, and \l roundEnd properties specify whether the - end points of the arc outline have rounded caps. For an arc that does not - have an outline, the \l capStyle property specifies whether the line ends - are square or rounded. - - Because an arc has curves, it may be appropriate to set the \c antialiasing - property that is inherited from \l Item to improve its appearance. - - \section2 Example Usage - - You can use the Arc component in \QDS to create different kinds of arcs. - - \image studio-arc.png - - The QML code looks as follows: - - \code - ArcItem { - id: arc - x: 31 - y: 31 - capStyle: 32 - end: 180 - strokeWidth: 6 - strokeColor: "#000000" - } - - ArcItem { - id: arcOutline - strokeColor: "gray" - arcWidth: 13 - end: 180 - fillColor: "light gray" - antialiasing: true - round: true - outlineArc: true - } - - ArcItem { - id: circle - end: 360 - strokeWidth: 5 - strokeColor: "#000000" - } - - ArcItem { - id: circleOutline - outlineArc: true - round: true - strokeColor: "gray" - fillColor: "light gray" - strokeWidth: 1 - end: 360 - } - \endcode -*/ - -Shape { - id: root - - implicitWidth: 100 - implicitHeight: 100 - -/*! - The gradient of the arc fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the arc line or outline. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the arc line or outline. - - When set to a negative value, no line is drawn. - - The default value is 4. - - The total width of an arc that has an outline (that is, the outline and the - fill) is specified by \l arcWidth. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color of the arc line or outline. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the arc or arc outline specified as the dashes and the - gaps between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - Each dash is also subject to cap styles, and therefore a dash of 1 with - square cap set will extend 0.5 pixels out in each direction resulting in - a total width of 2. - - The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square - line end covers the end point and extends beyond it by half the line width. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - - property alias joinStyle: path.joinStyle - -/*! - The arc fill color. - - If the arc is just a line, the area between its \l begin and \l end - points is filled. - - If the arc has an outline, the area within the outline is filled. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The cap style of the line if the arc does not have an outline. - - \value ShapePath.FlatCap - A square line end that does not cover the end point of the line. - \value ShapePath.SquareCap - A square line end that covers the end point and extends beyond it - by half the line width. This is the default value. - \value ShapePath.RoundCap - A rounded line end. - - \sa round, roundBegin, roundEnd, Qt::PenCapStyle -*/ - property alias capStyle: path.capStyle - -/*! - The starting point of the dash pattern for the arc or arc outline. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - -/*! - The position in degrees where the arc begins. - - The default value is 0. - - To create a circle, set the value of this property to 0 and the value - of the \l end property to 360. -*/ - property real begin: 0 - -/*! - The position in degrees where the arc ends. - - The default value is 90. - - To create a circle, set the value of this property to 360 and the value of - the \l begin property to 0. -*/ - property real end: 90 - -/*! - The total width of an arc that has an outline, including the outline and - fill. - - The default value is 10. - - \sa arcWidthBegin, arcWidthEnd, strokeWidth -*/ - property real arcWidth: 10 - -/*! - The area between the \l begin and \l end points of the arc. -*/ - property real alpha: root.clamp(root.sortedEnd() - root.sortedBegin(), 0, 359.9) - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - -/*! - Whether the arc has an outline. - - \sa arcWidth, arcWidthBegin, arcWidthEnd, round, roundBegin, roundEnd, -*/ - property bool outlineArc: false - -/*! - Whether the arc outline end points have round caps. - - The \l roundBegin and \l roundEnd properties can be used to specify the - caps separately for the end points. -*/ - property bool round: false - -/*! - Whether the arc outline ends with a round cap. - - \sa Qt::PenCapStyle, round, roundBegin -*/ - property bool roundEnd: root.round - -/*! - Whether the arc outline begins with a round cap. - - \sa Qt::PenCapStyle, round, roundEnd -*/ - property bool roundBegin: root.round - - function clamp(num, min, max) { - return Math.max(min, Math.min(num, max)) - } - - function toRadians(degrees) { - return degrees * (Math.PI / 180.0) - } - - function myCos(angleInDegrees) { - return Math.cos(root.toRadians(angleInDegrees)) - } - - function mySin(angleInDegrees) { - return Math.sin(root.toRadians(angleInDegrees)) - } - - function polarToCartesianX(centerX, centerY, radius, angleInDegrees) { - return centerX + radius * Math.cos(root.toRadians(angleInDegrees)) - } - - function polarToCartesianY(centerX, centerY, radius, angleInDegrees) { - return centerY + radius * Math.sin(root.toRadians(angleInDegrees)) - } - - function sortedBegin() { - return Math.min(root.begin, root.end) - } - - function sortedEnd() { - return Math.min(Math.max(root.begin, root.end), root.sortedBegin() + 359.9) - } - - function isArcFull() { - return root.alpha > 359.5 - } - - onAlphaChanged: { - if (root.__wasFull !== root.isArcFull()) - root.constructArcItem() - - root.__wasFull = root.isArcFull() - } - onOutlineArcChanged: root.constructArcItem() - onRoundChanged: root.constructArcItem() - onRoundBeginChanged: root.constructArcItem() - onRoundEndChanged: root.constructArcItem() - - property bool __wasFull: false - - property real maxArcWidth: Math.min(path.__xRadius, path.__yRadius) - - ShapePath { - id: path - - property real __xRadius: root.width / 2 - root.strokeWidth / 2 - property real __yRadius: root.height / 2 - root.strokeWidth / 2 - - property real __arcWidth: Math.min(Math.min(path.__xRadius, path.__yRadius), root.arcWidth) - - property real __xCenter: root.width / 2 - property real __yCenter: root.height / 2 - - strokeColor: "red" - strokeWidth: 4 - capStyle: ShapePath.FlatCap - - startX: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.sortedBegin() - 90) - startY: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.sortedBegin() - 90) - } - - function constructArcItem() { - root.clearPathElements() - - // Outer arc - let outerArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - outerArc.x = Qt.binding(function() { - return root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.sortedEnd() - 90) - }) - outerArc.y = Qt.binding(function() { - return root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.sortedEnd() - 90) - }) - outerArc.radiusX = Qt.binding(function() { return path.__xRadius }) - outerArc.radiusY = Qt.binding(function() { return path.__yRadius }) - outerArc.useLargeArc = Qt.binding(function() { return root.alpha > 180 }) - path.pathElements.push(outerArc) - - // Straight end - if (!root.roundEnd && root.outlineArc && !root.isArcFull()) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.relativeX = Qt.binding(function() { - return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) - }) - pathLine.relativeY = Qt.binding(function() { - return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) - }) - path.pathElements.push(pathLine) - } - - // Round end - if (root.roundEnd && root.outlineArc && !root.isArcFull()) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.relativeX = Qt.binding(function() { - return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) - }) - pathArc.relativeY = Qt.binding(function() { - return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) - }) - pathArc.radiusX = Qt.binding(function() { return path.__arcWidth / 2 }) - pathArc.radiusY = Qt.binding(function() { return path.__arcWidth / 2 }) - path.pathElements.push(pathArc) - } - - // Open end - if (root.outlineArc && root.isArcFull()) { - let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) - pathMove.relativeX = Qt.binding(function() { - return -path.__arcWidth * root.myCos(root.sortedEnd() - 90) - }) - pathMove.relativeY = Qt.binding(function() { - return -path.__arcWidth * root.mySin(root.sortedEnd() - 90) - }) - path.pathElements.push(pathMove) - } - - // Inner arc - if (root.outlineArc) { - let innerArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - innerArc.x = Qt.binding(function() { - return path.startX - path.__arcWidth * root.myCos(root.sortedBegin() - 90) - }) - innerArc.y = Qt.binding(function() { - return path.startY - path.__arcWidth * root.mySin(root.sortedBegin() - 90) - }) - innerArc.radiusX = Qt.binding(function() { return path.__xRadius - path.__arcWidth }) - innerArc.radiusY = Qt.binding(function() { return path.__yRadius - path.__arcWidth }) - innerArc.useLargeArc = Qt.binding(function() { return root.alpha > 180 }) - innerArc.direction = PathArc.Counterclockwise - path.pathElements.push(innerArc) - } - - // Straight begin - if (!root.roundBegin && root.outlineArc && !root.isArcFull()) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { return path.startX }) - pathLine.y = Qt.binding(function() { return path.startY }) - path.pathElements.push(pathLine) - } - - // Round begin - if (root.roundBegin && root.outlineArc && !root.isArcFull()) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.x = Qt.binding(function() { return path.startX }) - pathArc.y = Qt.binding(function() { return path.startY }) - pathArc.radiusX = Qt.binding(function() { return path.__arcWidth / 2 }) - pathArc.radiusY = Qt.binding(function() { return path.__arcWidth / 2 }) - path.pathElements.push(pathArc) - } - - // Open begin - if (root.outlineArc && root.isArcFull()) { - let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) - pathMove.x = Qt.binding(function() { return path.startX }) - pathMove.y = Qt.binding(function() { return path.startY }) - path.pathElements.push(pathMove) - } - } - - function clearPathElements() { - for (var i = 0; i !== path.pathElements.length; ++i) - path.pathElements[i].destroy() - - path.pathElements = [] - } - - Component.onCompleted: { - root.__wasFull = root.isArcFull() - root.constructArcItem() - } -} diff --git a/build/qml/QtQuick/Studio/Components/BorderItem.qml b/build/qml/QtQuick/Studio/Components/BorderItem.qml deleted file mode 100644 index 5644bbf..0000000 --- a/build/qml/QtQuick/Studio/Components/BorderItem.qml +++ /dev/null @@ -1,506 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Shapes 1.12 - -/*! - \qmltype BorderItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A border drawn in four segments: left, top, right, and bottom. - - The Border type is used to create borders out of four segments: left, - top, right, and bottom. The \l drawLeft, \l drawTop, \l drawRight, and - \l drawBottom properties can be used to determine whether each of the - segments is visible. - - The \l borderMode property determines whether the border is drawn along - the inside or outside edge of the item, or on top of the edge. - - The \l radius property specifies whether the border corners are rounded. - The radius can also be specified separately for each corner. Because this - introduces curved edges to the corners, it may be appropriate to set the - \c antialiasing property that is inherited from \l Item to improve the - appearance of the border. - - The \l joinStyle property specifies how to connect two border line segments. - - The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify - the appearance of the border line. The \l dashPattern and \l dashOffset - properties specify the appearance of dashed lines. - - The \l capStyle property specifies whether line ends are square or - rounded. - - \section2 Example Usage - - You can use the Border component in \QDS to create different kinds of - borders. - - \image studio-border.png - - The QML code looks as follows: - - \code - BorderItem { - id: openLeft - width: 99 - height: 99 - antialiasing: true - drawLeft: false - strokeColor: "gray" - } - - BorderItem { - id: openTop - width: 99 - height: 99 - antialiasing: true - strokeColor: "#808080" - drawTop: false - } - - BorderItem { - id: asymmetricalCorners - width: 99 - height: 99 - antialiasing: true - bottomLeftRadius: 0 - topRightRadius: 0 - strokeColor: "#808080" - } - - BorderItem { - id: dashedBorder - width: 99 - height: 99 - antialiasing: true - strokeStyle: 4 - strokeColor: "#808080" - } - \endcode -*/ - -Shape { - id: root - width: 200 - height: 150 - -/*! - The radius used to draw rounded corners. - - The default value is 10. - - If radius is non-zero, the corners will be rounded, otherwise they will - be sharp. The radius can also be specified separately for each corner by - using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and - \l topRightRadius properties. -*/ - property int radius: 10 - -/*! - The radius of the top left border corner. - - \sa radius -*/ - property int topLeftRadius: root.radius - -/*! - The radius of the bottom left border corner. - - \sa radius -*/ - property int bottomLeftRadius: root.radius - -/*! - The radius of the top right border corner. - - \sa radius -*/ - property int topRightRadius: root.radius - -/*! - The radius of the bottom right border corner. - - \sa radius -*/ - property int bottomRightRadius: root.radius - -/*! - Whether the border corner is beveled. -*/ - property bool bevel: false - -/*! - The bevel of the top left border corner. - - \sa bevel -*/ - property bool topLeftBevel: root.bevel - -/*! - The bevel of the top right border corner. - - \sa bevel -*/ - property bool topRightBevel: root.bevel - -/*! - The bevel of the bottom right border corner. - - \sa bevel -*/ - property bool bottomRightBevel: root.bevel - -/*! - The bevel of the bottom left border corner. - - \sa bevel -*/ - property bool bottomLeftBevel: root.bevel - -/*! - The style of the border line. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the border line. - - When set to a negative value, no line is drawn. - - The default value is 4. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color of the border line. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the border line specified as the dashes and the gaps - between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - Each dash is also subject to cap styles, and therefore a dash of 1 with - square cap set will extend 0.5 pixels out in each direction resulting in - a total width of 2. - - The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square - line end covers the end point and extends beyond it by half the line width. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - -/*! - The join style used to connect two border line segments. - - \value ShapePath.MiterJoin - The outer edges of the lines are extended to meet at an angle, and - this area is filled. - \value ShapePath.BevelJoin - The triangular notch between the two lines is filled. - This is the default value. - \value ShapePath.RoundJoin - A circular arc between the two lines is filled. - - \sa Qt::PenJoinStyle -*/ - property alias joinStyle: path.joinStyle - -/*! - The starting point of the dash pattern for the border line. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - -/*! - The cap style of the line. - - \value ShapePath.FlatCap - A square line end that does not cover the end point of the line. - \value ShapePath.SquareCap - A square line end that covers the end point and extends beyond it - by half the line width. This is the default value. - \value ShapePath.RoundCap - A rounded line end. - - \sa Qt::PenCapStyle -*/ - property alias capStyle: path.capStyle - - //property alias fillColor: path.fillColor - -/*! - Whether the top border is visible. - - The border segment is drawn if this property is set to \c true. -*/ - property bool drawTop: true - -/*! - Whether the bottom border is visible. - - The border segment is drawn if this property is set to \c true. -*/ - property bool drawBottom: true - -/*! - Whether the right border is visible. - - The border segment is drawn if this property is set to \c true. -*/ - property bool drawRight: true - -/*! - Whether the left border is visible. - - The border segment is drawn if this property is set to \c true. -*/ - property bool drawLeft: true - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - -/*! - Where the border is drawn. - - \value Border.Inside - The border is drawn along the inside edge of the item and does not - affect the item width. - This is the default value. - \value Border.Middle - The border is drawn over the edge of the item and does not - affect the item width. - \value Border.Outside - The border is drawn along the outside edge of the item and increases - the item width by the value of \l strokeWidth. - - \sa strokeWidth -*/ - property int borderMode: 0 - - property real borderOffset: { - if (root.borderMode === 0) - return root.strokeWidth * 0.5 - if (root.borderMode === 1) - return 0 - - return -root.strokeWidth * 0.5 - } - -/*! - The property changes the way border radius is calculated. - Deactivated by default. -*/ - property bool adjustBorderRadius: false - - Item { - anchors.fill: parent - anchors.margins: { - if (root.borderMode === 0) - return 0 - if (root.borderMode === 1) - return -root.strokeWidth * 0.5 - - return -root.strokeWidth - } - } - - ShapePath { - id: path - - property int __maxRadius: Math.floor(Math.min(root.width, root.height) / 2) - property int __topLeftRadius: Math.min(root.topLeftRadius, path.__maxRadius) - property int __topRightRadius: Math.min(root.topRightRadius, path.__maxRadius) - property int __bottomRightRadius: Math.min(root.bottomRightRadius, path.__maxRadius) - property int __bottomLeftRadius: Math.min(root.bottomLeftRadius, path.__maxRadius) - - readonly property real __borderRadiusAdjustment: { - if (root.adjustBorderRadius) { - if (root.borderMode === 1) - return (root.strokeWidth * 0.5) - if (root.borderMode === 2) - return root.strokeWidth - } - return 0 - } - - joinStyle: ShapePath.MiterJoin - - strokeWidth: 4 - strokeColor: "red" - fillColor: "transparent" - - startX: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment - startY: root.borderOffset - } - - onDrawTopChanged: root.constructBorderItem() - onDrawRightChanged: root.constructBorderItem() - onDrawBottomChanged: root.constructBorderItem() - onDrawLeftChanged: root.constructBorderItem() - - function constructBorderItem() { - root.clearPathElements() - - // Top line - if (root.drawTop) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { return root.width - path.__topRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) - pathLine.y = Qt.binding(function() { return root.borderOffset }) - path.pathElements.push(pathLine) - } else { - let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) - pathMove.x = Qt.binding(function() { return root.width - root.borderOffset }) - pathMove.y = Qt.binding(function() { return path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment }) - path.pathElements.push(pathMove) - } - - // Top right corner - if (root.drawTop && root.drawRight) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.x = Qt.binding(function() { return root.width - root.borderOffset }) - pathArc.y = Qt.binding(function() { return path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment }) - pathArc.radiusX = Qt.binding(function() { return root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment }) - pathArc.radiusY = Qt.binding(function() { return root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment }) - path.pathElements.push(pathArc) - } - - // Right line - if (root.drawRight) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { return root.width - root.borderOffset }) - pathLine.y = Qt.binding(function() { return root.height - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) - path.pathElements.push(pathLine) - } else { - let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) - pathMove.x = Qt.binding(function() { return root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) - pathMove.y = Qt.binding(function() { return root.height - root.borderOffset }) - path.pathElements.push(pathMove) - } - - // Bottom right corner - if (root.drawBottom && root.drawRight) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.x = Qt.binding(function() { return root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment }) - pathArc.y = Qt.binding(function() { return root.height - root.borderOffset }) - pathArc.radiusX = Qt.binding(function() { return root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment }) - pathArc.radiusY = Qt.binding(function() { return root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment }) - path.pathElements.push(pathArc) - } - - // Bottom line - if (root.drawBottom) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { return path.__bottomLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) - pathLine.y = Qt.binding(function() { return root.height - root.borderOffset }) - path.pathElements.push(pathLine) - } else { - let pathMove = Qt.createQmlObject('import QtQuick 2.15; PathMove {}', path) - pathMove.x = Qt.binding(function() { return root.borderOffset }) - pathMove.y = Qt.binding(function() { return root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment }) - path.pathElements.push(pathMove) - } - - // Bottom left corner - if (root.drawBottom && root.drawLeft) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.x = Qt.binding(function() { return root.borderOffset }) - pathArc.y = Qt.binding(function() { return root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment }) - pathArc.radiusX = Qt.binding(function() { return root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment }) - pathArc.radiusY = Qt.binding(function() { return root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment }) - path.pathElements.push(pathArc) - } - - // Left line - if (root.drawLeft) { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { return root.borderOffset }) - pathLine.y = Qt.binding(function() { return path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) - path.pathElements.push(pathLine) - } - // No need to use PathMove, if left line shouldn't be drawn we just leave the shape open. - - // Top left corner - if (root.drawTop && root.drawLeft) { - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc {}', path) - pathArc.x = Qt.binding(function() { return path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment }) - pathArc.y = Qt.binding(function() { return root.borderOffset }) - pathArc.radiusX = Qt.binding(function() { return root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment }) - pathArc.radiusY = Qt.binding(function() { return root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment }) - path.pathElements.push(pathArc) - } - } - - function clearPathElements() { - for (var i = 0; i !== path.pathElements.length; ++i) - path.pathElements[i].destroy() - - path.pathElements = [] - } - - Component.onCompleted: root.constructBorderItem() -} diff --git a/build/qml/QtQuick/Studio/Components/EllipseItem.qml b/build/qml/QtQuick/Studio/Components/EllipseItem.qml deleted file mode 100644 index b005285..0000000 --- a/build/qml/QtQuick/Studio/Components/EllipseItem.qml +++ /dev/null @@ -1,201 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Shapes 1.12 - -/*! - \qmltype EllipseItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A filled ellipse with an optional border. -*/ - -Shape { - id: root - width: 200 - height: 150 - -/*! - The gradient of the rectangle fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the rectangle border. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the border of the rectangle. - - The default value is 4. - - A width of 1 creates a thin line. For no line, use a negative value or a - transparent color. - - \note The width of the rectangle's border does not affect the geometry of - the rectangle itself or its position relative to other items if anchors are - used. - - The border is rendered within the rectangle's boundaries. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color used to draw the border of the rectangle. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the rectangle border specified as the dashes and the - gaps between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - -/*! - The rectangle fill color. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The starting point of the dash pattern for the rectangle border. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - -/*! - The border is rendered within the rectangle's boundaries, outside of them, - or on top of them. -*/ - property int borderMode: 0 - - property real borderOffset: { - if (root.borderMode === 0) - return root.strokeWidth * 0.5 - if (root.borderMode === 1) - return 0 - - return -root.strokeWidth * 0.5 - } - - Item { - anchors.fill: parent - anchors.margins: { - if (root.borderMode === 0) - return 0 - if (root.borderMode === 1) - return -root.strokeWidth * 0.5 - - return -root.strokeWidth - } - } - - ShapePath { - id: path - - joinStyle: ShapePath.MiterJoin - strokeWidth: 4 - strokeColor: "red" - startX: root.width * 0.5 - startY: root.borderOffset - - PathArc { - x: path.startX - y: root.height - root.borderOffset - radiusX: root.width * 0.5 - root.borderOffset - radiusY: root.height * 0.5 - root.borderOffset - useLargeArc: true - } - - PathArc { - x: path.startX - y: path.startY - radiusX: root.width * 0.5 - root.borderOffset - radiusY: root.height * 0.5 - root.borderOffset - useLargeArc: true - } - - } -} diff --git a/build/qml/QtQuick/Studio/Components/FlipableItem.qml b/build/qml/QtQuick/Studio/Components/FlipableItem.qml deleted file mode 100644 index b731fe0..0000000 --- a/build/qml/QtQuick/Studio/Components/FlipableItem.qml +++ /dev/null @@ -1,153 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.9 - -/*! - \qmltype FlipableItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - - \brief Provides a surface that can be flipped. - - A Flipable type can be visibly \e flipped between its front and back sides, - like a card. The front and back sides are specified by using any two types - inside the Flipable type. The type with the higher z-order is the front - side. The \l opacityFront and \l opacityBack properties are used to hide - and show either the front or back side of the item at a time. - - The \l flipAngle property is used to animate the angle of the type to - produce the flipping effect. The value of the \l rotationalAxis property - determines which axis the type is rotated around. - - \section2 Example Usage - - You can use the Flipable component in \QDS to create an item that can be - flipped. In this example, the two sides of the item show ISO 7000 icons. - - \image studio-flipable.png - - The QML code looks as follows: - - \code - FlipableItem { - id: flipable - width: 90 - height: 89 - opacityBack: 0 - - IsoItem { - id: arrowIsoIcon - color: "#808080" - anchors.fill: parent - source: "./iso-icons/iso_grs_7000_4_0251.dat" - } - - IsoItem { - id: questionIsoIcon - color: "#808080" - anchors.fill: parent - source: "./iso-icons/iso_grs_7000_4_0435.dat" - } - } - \endcode -*/ - -Flipable { - id: flipable - width: 240 - height: 240 - -/*! - The flip angle in degrees. - - The minimum value is -360 and the maximum value is 360 degrees. -*/ - property alias flipAngle: rotation.angle - -/*! - The opacity of the front side of the type. - - The opacity can be set between 0 and 1 to hide or show the items on the - front side of the type. -*/ - property real opacityFront: 1 - -/*! - The opacity of the back side of the type. - - The opacity can be set between 0 and 1 to hide or show the items on the - back side of the type. -*/ - property real opacityBack: 1 - -/*! - Whether the type is rotated around the x-axis or y-axis. - - This property is set to 0 to rotate the type around the x-axis or to - 1 to rotate around the y-axis. -*/ - property int rotationalAxis: 1 // 0: x-axis, 1: y-axis - - Binding { - target: flipable.front - value: opacityFront - property: "opacity" - when: flipable.front !== undefined - } - - Binding { - target: flipable.back - value: opacityBack - property: "opacity" - when: flipable.back !== undefined - } - -/*! - Whether the type has been flipped. - - This property is set to \c true when the type is flipped. -*/ - property bool flipped: false - - Component.onCompleted: { - flipable.front = flipable.children[0] - flipable.back = flipable.children[1] - } - - transform: Rotation { - id: rotation - origin.x: flipable.width/2 - origin.y: flipable.height/2 - axis.x: flipable.rotationalAxis === 0 ? 1 : 0 - axis.y: flipable.rotationalAxis === 1 ? 1 : 0 - axis.z: 0 - angle: 0 // the default angle - } -} diff --git a/build/qml/QtQuick/Studio/Components/GroupItem.qml b/build/qml/QtQuick/Studio/Components/GroupItem.qml deleted file mode 100644 index 4f46717..0000000 --- a/build/qml/QtQuick/Studio/Components/GroupItem.qml +++ /dev/null @@ -1,77 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 - -/*! - \qmltype GroupItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Item - - \brief A group item that gets its size from its children. - - The Group type is an \l Item type extended with the size property. The value - of size is automatically calculated to fit the children of the group. - - \section2 Example Usage - - You can use the Group type to specify the size of one or several items. - - \image studio-group.png - - The QML code looks as follows: - - \code - GroupItem { - id: group - - Rectangle { - id: rectangle - width: 200 - height: 200 - color: "#c2c2c2" - } - - Rectangle { - id: rectangle1 - x: 140 - y: 140 - width: 200 - height: 200 - color: "#000000" - } - } - \endcode -*/ - -Item { - implicitWidth: Math.max(16, childrenRect.width + childrenRect.x) - implicitHeight: Math.max(16, childrenRect.height + childrenRect.y) -} diff --git a/build/qml/QtQuick/Studio/Components/IsoItem.qml b/build/qml/QtQuick/Studio/Components/IsoItem.qml deleted file mode 100644 index c217ba3..0000000 --- a/build/qml/QtQuick/Studio/Components/IsoItem.qml +++ /dev/null @@ -1,67 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import QtQuick 2.9 -import QtQuick.Extras 1.4 - -/*! - \qmltype IsoItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits ShapePath - \ingroup qtquickstudio-components - - \brief An ISO 7000 icon. - - The IsoItem type specifies an icon from an ISO 7000 icon library as a - \l [QtQuickExtras] {Picture} type. The icon to use for the type and its - color can be specified. - - \section2 Example Usage - - You can use the IsoItem type in \QDS to add ISO 7000 icons. - - \image studio-flipable.png - - The QML code looks as follows: - - \code - IsoItem { - id: arrowIsoIcon - color: "#808080" - anchors.fill: parent - source: "./iso-icons/iso_grs_7000_4_0251.dat" - } - \endcode -*/ - -Picture { - -} diff --git a/build/qml/QtQuick/Studio/Components/PieItem.qml b/build/qml/QtQuick/Studio/Components/PieItem.qml deleted file mode 100644 index 1dc0cdd..0000000 --- a/build/qml/QtQuick/Studio/Components/PieItem.qml +++ /dev/null @@ -1,322 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.9 -import QtQuick.Shapes 1.12 - -/*! - \qmltype PieItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A pie. - - The Pie type is used to create a pie slice, a pie that is missing slices, - or just the pie rind (similar to an \l ArcItem), depending on the \l begin - and \l end property values and the \l hideLine value. - - The filling of the pie is painted using either a solid fill color, specified - using the \l fillColor property, or a gradient, defined using one of the - \l ShapeGradient subtypes and set using the \l gradient property. - If both a color and a gradient are specified, the gradient is used. - - The \l strokeColor, \l strokeWidth, and \l strokeStyle properties specify - the appearance of the pie outline. The \l dashPattern and \l dashOffset - properties specify the appearance of dashed lines. - - The \l capStyle property specifies whether line ends are square or - rounded. - - Because a pie has curved edges, it may be appropriate to set the - \c antialiasing property that is inherited from \l Item to improve - its appearance. - - \section2 Example Usage - - You can use the Pie component in \QDS to create different kinds of pies. - - \image studio-pie.png - - The QML code looks as follows: - - \code - PieItem { - id: pieSlice - antialiasing: true - strokeColor: "gray" - fillColor: "light gray" - } - - PieItem { - id: pie - end: 300 - fillColor: "#d3d3d3" - strokeColor: "#808080" - antialiasing: true - } - - PieItem { - id: pieRind - strokeWidth: 4 - capStyle: 32 - hideLine: true - end: 300 - strokeColor: "#808080" - antialiasing: true - } - \endcode -*/ - -Shape { - id: root - - implicitWidth: 100 - implicitHeight: 100 - -/*! - The gradient of the pie fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the border line. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the line. - - When set to a negative value, no line is drawn. - - The default value is 4. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color of the line. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the line specified as the dashes and the gaps between - them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - Each dash is also subject to cap styles, and therefore a dash of 1 with - square cap set will extend 0.5 pixels out in each direction resulting in - a total width of 2. - - The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square - line end covers the end point and extends beyond it by half the line width. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - property alias joinStyle: path.joinStyle - -/*! - The pie fill color. - - If \l hideLine is \c false, a pie slice is drawn using the values of the - \l begin and \l end properties and filled with this color. - - If \l hideLine is \c true, just the pie rind is drawn and the area between - the \l begin and \l end points is filled. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The starting point of the dash pattern for the line. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - -/*! - The cap style of the line. - - \value ShapePath.FlatCap - A square line end that does not cover the end point of the line. - \value ShapePath.SquareCap - A square line end that covers the end point and extends beyond it - by half the line width. This is the default value. - \value ShapePath.RoundCap - A rounded line end. - - \sa Qt::PenCapStyle -*/ - property alias capStyle: path.capStyle - -/*! - The position in degrees where the pie begins. - - The default value is 0. - - To create a circle, set the value of this property to 0 and the value of the - \l end property to 360. -*/ - property real begin: 0 - -/*! - The position in degrees where the pie ends. - - The default value is 90. - - To create a circle, set the value of this property to 360 and the value of - the \l begin property to 0. -*/ - property real end: 90 - -/*! - The area between \l begin and \l end. -*/ - property real alpha: root.clamp(root.end - root.begin, 0, 359.9) - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - - function clamp(num, min, max) { - return Math.max(min, Math.min(num, max)) - } - -/*! - Whether to draw a pie slice or just the pie rind (similar to an \l ArcItem). -*/ - property bool hideLine: { - if (root.alpha <= 0) - return true - if (root.alpha >= 359) - return true - return false - } - - function toRadians(degrees) { - return degrees * (Math.PI / 180.0) - } - - function polarToCartesianX(centerX, centerY, radius, angleInDegrees) { - return centerX + radius * Math.cos(root.toRadians(angleInDegrees)) - } - - function polarToCartesianY(centerX, centerY, radius, angleInDegrees) { - return centerY + radius * Math.sin(root.toRadians(angleInDegrees)) - } - - ShapePath { - id: path - - property real __xRadius: root.width / 2 - root.strokeWidth / 2 - property real __yRadius: root.height / 2 - root.strokeWidth / 2 - - property real __xCenter: root.width / 2 - property real __yCenter: root.height / 2 - - strokeColor: "red" - capStyle: ShapePath.FlatCap - - strokeWidth: 4 - - startX: root.hideLine ? root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin - 90) - : path.__xCenter - startY: root.hideLine ? root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin - 90) - : path.__yCenter - - PathLine { - x: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin - 90) - y: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin - 90) - } - - PathArc { - id: arc - - x: root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin + root.alpha - 90) - y: root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin + root.alpha - 90) - - radiusY: path.__yRadius; - radiusX: path.__xRadius; - - useLargeArc: root.alpha > 180 - } - - PathLine { - x: root.hideLine ? root.polarToCartesianX(path.__xCenter, path.__yCenter, path.__xRadius, root.begin + root.alpha - 90) - : path.__xCenter - y: root.hideLine ? root.polarToCartesianY(path.__xCenter, path.__yCenter, path.__yRadius, root.begin + root.alpha - 90) - : path.__yCenter - } - } -} - diff --git a/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc deleted file mode 100644 index b735b0b..0000000 --- a/build/qml/QtQuick/Studio/Components/QuickStudioComponents_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Components - - - diff --git a/build/qml/QtQuick/Studio/Components/RectangleItem.qml b/build/qml/QtQuick/Studio/Components/RectangleItem.qml deleted file mode 100644 index 7d95d77..0000000 --- a/build/qml/QtQuick/Studio/Components/RectangleItem.qml +++ /dev/null @@ -1,434 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Shapes 1.12 - -/*! - \qmltype RectangleItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A filled rectangle with an optional border. - - Rectangle items are used to fill areas with solid color or gradients and - to provide a rectangular border. - - Each Rectangle item is painted using either a solid fill color, specified - using the \l fillColor property, or a gradient, defined using one of the - \l ShapeGradient subtypes and set using the \l gradient property. - If both a color and a gradient are specified, the gradient is used. - - An optional border can be added to a rectangle with its own color and - thickness by setting the \l strokeColor and \l strokeWidth properties. - Setting the color to \c transparent creates a border without a fill color. - - Rounded rectangles can be drawn using the \l radius property. The radius - can also be specified separately for each corner. Because this introduces - curved edges to the corners of a rectangle, it may be appropriate to set - the \c antialiasing property that is inherited from \l Item to improve the - appearance of the rectangle. - - \section2 Example Usage - - You can use the Rectangle component in \QDS to create different kinds of - rectangles. - - \image studio-rectangle.png - - The QML code looks as follows: - - \code - RectangleItem { - id: rectangle - gradient: RadialGradient { - focalRadius: 0 - centerY: 38.5 - focalY: 38.5 - centerX: 51.5 - centerRadius: 38.5 - GradientStop { - position: 0 - color: "#ffffff" - } - - GradientStop { - position: 1 - color: "#000000" - } - focalX: 51.5 - } - bottomRightRadius: 0 - topLeftRadius: 0 - strokeColor: "gray" - } - - RectangleItem { - id: rectangle1 - gradient: LinearGradient { - y1: 0 - y2: 77 - x2: 103 - x1: 0 - GradientStop { - position: 0 - color: "#ffffff" - } - - GradientStop { - position: 1 - color: "#000000" - } - } - topRightRadius: 0 - bottomLeftRadius: 0 - strokeColor: "#808080" - } - - RectangleItem { - id: rectangle2 - topLeftRadius: 0 - bottomRightRadius: 0 - fillColor: "#d3d3d3" - strokeColor: "#808080" - } - - RectangleItem { - id: rectangle3 - fillColor: "#000000" - gradient: LinearGradient { - y1: 0 - y2: 77 - x2: 103 - x1: 0 - GradientStop { - position: 0 - color: "#000000" - } - - GradientStop { - position: 1 - color: "#fdf9f9" - } - } - topRightRadius: 0 - bottomLeftRadius: 0 - strokeColor: "#808080" - } - \endcode -*/ - -Shape { - id: root - width: 200 - height: 150 - -/*! - The radius used to draw rounded corners. - - The default value is 10. - - If radius is non-zero, the corners will be rounded, otherwise they will - be sharp. The radius can also be specified separately for each corner by - using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and - \l topRightRadius properties. -*/ - property int radius: 10 - -/*! - The radius of the top left rectangle corner. -*/ - property int topLeftRadius: root.radius - -/*! - The radius of the bottom left rectangle corner. -*/ - property int bottomLeftRadius: root.radius - -/*! - The radius of the top right rectangle corner. -*/ - property int topRightRadius: root.radius - -/*! - The radius of the bottom right rectangle corner. -*/ - property int bottomRightRadius: root.radius - -/*! - The gradient of the rectangle fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the rectangle border. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the border of the rectangle. - - The default value is 4. - - A width of 1 creates a thin line. For no line, use a negative value or a - transparent color. - - \note The width of the rectangle's border does not affect the geometry of - the rectangle itself or its position relative to other items if anchors are - used. - - The border is rendered within the rectangle's boundaries. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color used to draw the border of the rectangle. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the rectangle border specified as the dashes and the - gaps between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - - - property alias joinStyle: path.joinStyle - -/*! - The rectangle fill color. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The starting point of the dash pattern for the rectangle border. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - -/*! - Whether the border corner is beveled. -*/ - property bool bevel: false - -/*! - The bevel of the top left border corner. - - \sa bevel -*/ - property bool topLeftBevel: root.bevel - -/*! - The bevel of the top right border corner. - - \sa bevel -*/ - property bool topRightBevel: root.bevel - -/*! - The bevel of the bottom right border corner. - - \sa bevel -*/ - property bool bottomRightBevel: root.bevel - -/*! - The bevel of the bottom left border corner. - - \sa bevel -*/ - property bool bottomLeftBevel: root.bevel - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - -/*! - The border is rendered within the rectangle's boundaries, outside of them, - or on top of them. -*/ - property int borderMode: 0 - - property real borderOffset: { - if (root.borderMode === 0) - return root.strokeWidth * 0.5 - if (root.borderMode === 1) - return 0 - - return -root.strokeWidth * 0.5 - } - -/*! - The property changes the way border radius is calculated. - Deactivated by default. -*/ - property bool adjustBorderRadius: false - - Item { - anchors.fill: parent - anchors.margins: { - if (root.borderMode === 0) - return 0 - if (root.borderMode === 1) - return -root.strokeWidth * 0.5 - - return -root.strokeWidth - } - } - - ShapePath { - id: path - - property int __maxRadius: Math.floor(Math.min(root.width, root.height) / 2) - property int __topLeftRadius: Math.min(root.topLeftRadius, path.__maxRadius) - property int __topRightRadius: Math.min(root.topRightRadius, path.__maxRadius) - property int __bottomRightRadius: Math.min(root.bottomRightRadius, path.__maxRadius) - property int __bottomLeftRadius: Math.min(root.bottomLeftRadius, path.__maxRadius) - - readonly property real __borderRadiusAdjustment: { - if (root.adjustBorderRadius) { - if (root.borderMode === 1) - return (root.strokeWidth * 0.5) - if (root.borderMode === 2) - return root.strokeWidth - } - return 0 - } - - joinStyle: ShapePath.MiterJoin - - strokeWidth: 4 - strokeColor: "red" - - startX: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment - startY: root.borderOffset - - PathLine { - x: root.width - path.__topRightRadius - root.borderOffset - path.__borderRadiusAdjustment - y: root.borderOffset - } - - PathArc { - x: root.width - root.borderOffset - y: path.__topRightRadius + root.borderOffset + path.__borderRadiusAdjustment - - radiusX: root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment - radiusY: root.topRightBevel ? 50000 : path.__topRightRadius + path.__borderRadiusAdjustment - } - - PathLine { - x: root.width - root.borderOffset - y: root.height - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment - } - - PathArc { - x: root.width - path.__bottomRightRadius - root.borderOffset - path.__borderRadiusAdjustment - y: root.height - root.borderOffset - - radiusX: root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment - radiusY: root.bottomRightBevel ? 50000 : path.__bottomRightRadius + path.__borderRadiusAdjustment - } - - PathLine { - x: path.__bottomLeftRadius + root.borderOffset + path.__borderRadiusAdjustment - y: root.height - root.borderOffset - } - - PathArc { - x: root.borderOffset - y: root.height - path.__bottomLeftRadius - root.borderOffset - path.__borderRadiusAdjustment - - radiusX: root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment - radiusY: root.bottomLeftBevel ? 50000 : path.__bottomLeftRadius + path.__borderRadiusAdjustment - } - - PathLine { - x: root.borderOffset - y: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment - } - - PathArc { - x: path.__topLeftRadius + root.borderOffset + path.__borderRadiusAdjustment - y: root.borderOffset - - radiusX: root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment - radiusY: root.topLeftBevel ? 50000 : path.__topLeftRadius + path.__borderRadiusAdjustment - } - } -} diff --git a/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml b/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml deleted file mode 100644 index 555d73f..0000000 --- a/build/qml/QtQuick/Studio/Components/RegularPolygonItem.qml +++ /dev/null @@ -1,318 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Shapes 1.12 - -/*! - \qmltype RegularPolygon - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A filled regular polygon with an optional border. -*/ - -Shape { - id: root - width: 200 - height: 200 - -/*! - The radius used to draw rounded corners. - - The default value is 10. - - If radius is non-zero, the corners will be rounded, otherwise they will - be sharp. The radius can also be specified separately for each corner by - using the \l bottomLeftRadius, \l bottomRightRadius, \l topLeftRadius, and - \l topRightRadius properties. -*/ - property int radius: 10 - -/*! - The gradient of the regular polygon fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the regular polygon border. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the border of the regular polygon. - - The default value is 4. - - A width of 1 creates a thin line. For no line, use a negative value or a - transparent color. - - \note The width of the regular polygon's border does not affect the geometry of - the regular polygon itself or its position relative to other items if anchors are - used. - - The border is rendered within the regular polygon's boundaries. -*/ - property alias strokeWidth: path.strokeWidth - -/*! - The color used to draw the border of the regular polygon. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the regular polygon border specified as the dashes and the - gaps between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - - - property alias joinStyle: path.joinStyle - -/*! - The regular polygon fill color. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The starting point of the dash pattern for the regular polygon border. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - -/*! - Number of sides on the polygon. -*/ - property int sideCount: 6 - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - - // This is used to make the bounding box of the item a bit bigger so it will draw sharp edges - // in case of large stroke width instead of cutting it off. - Item { - anchors.fill: parent - anchors.margins: -root.strokeWidth - } - - ShapePath { - id: path - - joinStyle: ShapePath.MiterJoin - strokeWidth: 4 - strokeColor: "red" - startX: 0 - startY: 0 - } - - onSideCountChanged: root.constructPolygon() - onRadiusChanged: { - // Only construct polygon if radius changed from 0 to 1 or vice versa. - if ((root.radius + root.__previousRadius) === 1) - root.constructPolygon() - - root.__previousRadius = root.radius - } - Component.onCompleted: root.constructPolygon() - - property real __centerX: root.width / 2 - property real __centerY: root.height / 2 - property real __radius: Math.min(root.width, root.height) / 2 - - property int __previousRadius: root.radius - - property int minRadius: 0 - property int maxRadius: root.__radius * Math.cos(root.toRadians(180.0 / root.sideCount)) - - property int __actualRadius: Math.max(root.minRadius, Math.min(root.maxRadius, root.radius)) - - function constructPolygon() { - root.clearPathElements() - - if (root.radius === 0) - root.constructNonRoundedPolygonPath() - else - root.constructRoundedPolygonPath() - } - - function toRadians(degrees) { - return degrees * (Math.PI / 180.0) - } - - function constructNonRoundedPolygonPath() { - for (var cornerNumber = 0; cornerNumber < root.sideCount; cornerNumber++) { - let angleToCorner = root.toRadians(cornerNumber * (360.0 / root.sideCount)) - - if (cornerNumber === 0) { - path.startX = Qt.binding(function() { - return root.__centerX + root.__radius * Math.cos(0) - }) - path.startY = Qt.binding(function() { - return root.__centerY + root.__radius * Math.sin(0) - }) - } else { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { - return root.__centerX + root.__radius * Math.cos(angleToCorner) - }) - pathLine.y = Qt.binding(function() { - return root.__centerY + root.__radius * Math.sin(angleToCorner) - }) - path.pathElements.push(pathLine) - } - } - - // Close the polygon - var pathLineClose = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLineClose.x = Qt.binding(function() { return path.startX } ) - pathLineClose.y = Qt.binding(function() { return path.startY } ) - path.pathElements.push(pathLineClose) - } - - property real __halfInteriorCornerAngle: 90 - (180.0 / root.sideCount) - property real __halfCornerArcSweepAngle: 90 - root.__halfInteriorCornerAngle - property real __distanceToCornerArcCenter: root.__radius - root.__actualRadius / - Math.sin(root.toRadians(root.__halfInteriorCornerAngle)) - - function constructRoundedPolygonPath() { - for (var cornerNumber = 0; cornerNumber < root.sideCount; cornerNumber++) { - let angleToCorner = cornerNumber * (360.0 / root.sideCount) - - let pathArc = Qt.createQmlObject('import QtQuick 2.15; PathArc { - property real centerX; - property real centerY }', path) - pathArc.centerX = Qt.binding(function() { - return root.__centerX + root.__distanceToCornerArcCenter - * Math.cos(root.toRadians(angleToCorner)) - }) - pathArc.centerY = Qt.binding(function() { - return root.__centerY + root.__distanceToCornerArcCenter - * Math.sin(root.toRadians(angleToCorner)) - }) - pathArc.x = Qt.binding(function() { - return pathArc.centerX + root.__actualRadius - * (Math.cos(root.toRadians(angleToCorner + root.__halfCornerArcSweepAngle))) - }) - pathArc.y = Qt.binding(function() { - return pathArc.centerY + root.__actualRadius - * (Math.sin(root.toRadians(angleToCorner + root.__halfCornerArcSweepAngle))) - }) - pathArc.radiusX = Qt.binding(function() { return root.__actualRadius }) - pathArc.radiusY = Qt.binding(function() { return root.__actualRadius }) - - if (cornerNumber === 0) { - path.startX = Qt.binding(function() { - return pathArc.centerX + root.__actualRadius - * (Math.cos(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) - }) - path.startY = Qt.binding(function() { - return pathArc.centerY + root.__actualRadius - * (Math.sin(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) - }) - } else { - let pathLine = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLine.x = Qt.binding(function() { - return pathArc.centerX + root.__actualRadius - * (Math.cos(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) - }) - pathLine.y = Qt.binding(function() { - return pathArc.centerY + root.__actualRadius - * (Math.sin(root.toRadians(angleToCorner - root.__halfCornerArcSweepAngle))) - }) - path.pathElements.push(pathLine) - } - - path.pathElements.push(pathArc) - } - - // Close the polygon - var pathLineClose = Qt.createQmlObject('import QtQuick 2.15; PathLine {}', path) - pathLineClose.x = Qt.binding(function() { return path.startX} ) - pathLineClose.y = Qt.binding(function() { return path.startY} ) - path.pathElements.push(pathLineClose) - } - - function clearPathElements() { - for (var i = 0; i !== path.pathElements.length; ++i) - path.pathElements[i].destroy() - - path.pathElements = [] - } -} diff --git a/build/qml/QtQuick/Studio/Components/StraightArrow.qml b/build/qml/QtQuick/Studio/Components/StraightArrow.qml deleted file mode 100644 index 6926ec5..0000000 --- a/build/qml/QtQuick/Studio/Components/StraightArrow.qml +++ /dev/null @@ -1,97 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 - -Item { - - width: 200 - height: 200 - id: root - property bool flip: false - property bool rotate: false - - property int thickness: 45 - - property int arrowSize: 80 - - property int radius: 5 - property color color: "#b6b3b3" - - property bool corner: false - - property bool flipCorner: false - - Item { - id: content - implicitWidth: Math.max(16, childrenRect.width + childrenRect.x) - implicitHeight: Math.max(16, childrenRect.height + childrenRect.y) - anchors.centerIn: parent - - scale: root.flip ? -1 : 1 - rotation: root.rotate ? 90 : 0 - - TriangleItem { - id: triangle - x: 0 - y: 0 - anchors.verticalCenter: rectangle.verticalCenter - rotation: -90 - strokeWidth: -1 - width: root.arrowSize - height: root.arrowSize - radius: root.radius - fillColor: root.color - } - - RectangleItem { - id: rectangle - x: root.arrowSize - root.radius * 2 - //y: ((root.rotate ? root.width : root.height) - root.thickness) / 2 - width: (root.rotate ? root.height : root.width) - (root.arrowSize - root.radius * 2) - height: root.thickness - strokeWidth: -1 - radius: root.radius - fillColor: root.color - } - RectangleItem { - id: rectangle1 - x: 260 - y: 202 - width: root.corner ? root.thickness : 0 - strokeWidth: -1 - height: root.corner ? (root.rotate ? root.width : root.height) / 2 : 0 - anchors.bottom: root.flipCorner ? undefined : rectangle.verticalCenter - anchors.top: root.flipCorner ? rectangle.verticalCenter : undefined - anchors.right: rectangle.right - fillColor: root.color - visible: root.corner - } - } -} diff --git a/build/qml/QtQuick/Studio/Components/SvgPathItem.qml b/build/qml/QtQuick/Studio/Components/SvgPathItem.qml deleted file mode 100644 index 6bd1950..0000000 --- a/build/qml/QtQuick/Studio/Components/SvgPathItem.qml +++ /dev/null @@ -1,221 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import QtQuick.Timeline 1.0 -import QtQuick.Shapes 1.12 - -/*! - \qmltype SvgPathItem - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A path defined using an SVG path data string. - - The SvgPathItem type uses an SVG path data string to draw a path as a line. - - The \l strokeColor, \l strokeWidth, and \l strokeStyle, properties specify - the appearance of the path. The \l dashPattern and \l dashOffset properties - specify the appearance of dashed lines. - - The \l capStyle property specifies whether line ends are square or - rounded. - - The \l joinStyle property specifies how to connect two path segments. - If the path segments enclose areas, they can be painted using either - a solid fill color, specified using the \l fillColor property, or a - gradient, defined using one of the \l ShapeGradient subtypes and set - using the \l gradient property. If both a color and a gradient are - specified, the gradient is used. - - If the path has curves, it may be appropriate to set the \c antialiasing - property that is inherited from \l Item to improve its appearance. -*/ - -Shape { - id: root - width: 200 - height: 200 - -/*! - The gradient of the fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: shape.fillGradient - -/*! - The style of the line. - - \value Shape.SolidLine - A solid line. This is the default value. - \value Shape.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: shape.strokeStyle - -/*! - The width of the line. - - When set to a negative value, no line is drawn. - - The default value is 4. -*/ - property alias strokeWidth: shape.strokeWidth - -/*! - The color of the line. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: shape.strokeColor - -/*! - The dash pattern of the line specified as the dashes and the gaps between - them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - Each dash is also subject to cap styles, and therefore a dash of 1 with - square cap set will extend 0.5 pixels out in each direction resulting in - a total width of 2. - - The default \l capStyle is \c {ShapePath.SquareCap}, meaning that a square - line end covers the end point and extends beyond it by half the line width. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: shape.dashPattern - -/*! - The join style used to connect two path segments. - - \value Shape.MiterJoin - The outer edges of the lines are extended to meet at an angle, and - this area is filled. - \value Shape.BevelJoin - The triangular notch between the two lines is filled. - This is the default value. - \value Shape.RoundJoin - A circular arc between the two lines is filled. - - \sa Qt::PenJoinStyle -*/ - property alias joinStyle: shape.joinStyle - -/*! - The fill color of enclosed path segments. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: shape.fillColor - -/*! - \qmlproperty string SvgPathItem::path - - The SVG path data string specifying the path. - - For more information, see \l{https://www.w3.org/TR/SVG/paths.html#PathData} - {W3C SVG Path Data}. -*/ - property alias path: pathSvg.path - -/*! - The starting point of the dash pattern for the line. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: shape.dashOffset - -/*! - The cap style of the line. - - \value Shape.FlatCap - A square line end that does not cover the end point of the line. - \value Shape.SquareCap - A square line end that covers the end point and extends beyond it - by half the line width. This is the default value. - \value Shape.RoundCap - A rounded line end. - - \sa Qt::PenCapStyle -*/ - property alias capStyle: shape.capStyle - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - - ShapePath { - id: shape - strokeWidth: 4 - strokeColor: "red" - joinStyle: ShapePath.MiterJoin - - PathSvg { - id: pathSvg - - path: "M91,70.6c4.6,0,8.6,2.4,10.9,6.3l19.8,34.2c2.3,3.9,2.3,8.7,0,12.6c-2.3,3.9-6.4,6.3-10.9,6.3H71.2 c-4.6,0-8.6-2.4-10.9-6.3c-2.3-3.9-2.3-8.7,0-12.6l19.8-34.2C82.4,72.9,86.4,70.6,91,70.6z" - } - } -} diff --git a/build/qml/QtQuick/Studio/Components/TriangleItem.qml b/build/qml/QtQuick/Studio/Components/TriangleItem.qml deleted file mode 100644 index 8dc57a1..0000000 --- a/build/qml/QtQuick/Studio/Components/TriangleItem.qml +++ /dev/null @@ -1,496 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Studio Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.9 -import QtQuick.Shapes 1.12 - -/*! - \qmltype Triangle - \inqmlmodule QtQuick.Studio.Components - \since QtQuick.Studio.Components 1.0 - \inherits Shape - - \brief A triangle. - - The Triangle type can be used to draw triangles with different dimensions - and shapes. The type is enclosed in an invisible \l Rectangle type. The size - of the triangle is determined by the size of the bounding rectangle. The - dimensions of the triangle can be changed to make it elongated or squat - with space around it by using the \l leftMargin, \l topMargin, - \l rightMargin, and \l bottomMargin properties. The margins are set between - the triangle and the edges of the parent rectangle. - - Each Triangle item is painted using either a solid fill color, specified - using the \l fillColor property, or a gradient, defined using one of the - \l ShapeGradient subtypes and set using the \l gradient property. - If both a color and a gradient are specified, the gradient is used. - - An optional border can be added to a triangle with its own color and - thickness by setting the \l strokeColor and \l strokeWidth properties. - Setting the color to \c transparent creates a border without a fill color. - - \section2 Example Usage - - You can use the Triangle component in \QDS to create triangles in different - shapes and colors. - - \image studio-triangle.png - - The QML code looks as follows: - - \code - TriangleItem { - id: triangle - strokeColor: "gray" - fillColor: "light gray" - } - - TriangleItem { - id: squatTriangle - bottomMargin: 10 - topMargin: 30 - fillColor: "#d3d3d3" - strokeColor: "#808080" - } - - TriangleItem { - id: elongatedTriangle - leftMargin: 15 - rightMargin: 15 - fillColor: "#d3d3d3" - strokeColor: "#808080" - } - - TriangleItem { - id: pear - radius: 20 - fillColor: "light gray" - bottomMargin: 10 - arcRadius: 20 - strokeColor: "#808080" - } - \endcode -*/ - -Shape { - id: root - - implicitWidth: 100 - implicitHeight: 100 - -/*! - The gradient of the triangle fill color. - - By default, no gradient is enabled and the value is null. In this case, the - fill uses a solid color based on the value of \l fillColor. - - When set, \l fillColor is ignored and filling is done using one of the - \l ShapeGradient subtypes. - - \note The \l Gradient type cannot be used here. Rather, prefer using one of - the advanced subtypes, like \l LinearGradient. -*/ - property alias gradient: path.fillGradient - -/*! - The style of the triangle border. - - \value ShapePath.SolidLine - A solid line. This is the default value. - \value ShapePath.DashLine - Dashes separated by a few pixels. - The \l dashPattern property specifies the dash pattern. - - \sa Qt::PenStyle -*/ - property alias strokeStyle: path.strokeStyle - -/*! - The width of the border of the rectangle. - - The default value is 4. - - A width of 1 creates a thin line. For no line, use a negative value or a - transparent color. - - \note The width of the rectangle's border does not affect the geometry of - the rectangle itself or its position relative to other items if anchors are - used. - - The border is rendered within the rectangle's boundaries. -*/ - - property alias strokeWidth: path.strokeWidth - -/*! - The color used to draw the border of the triangle. - - When set to \c transparent, no line is drawn. - - The default value is \c red. - - \sa QColor -*/ - property alias strokeColor: path.strokeColor - -/*! - The dash pattern of the triangle border specified as the dashes and the - gaps between them. - - The dash pattern is specified in units of the pen's width. That is, a dash - with the length 5 and width 10 is 50 pixels long. - - The default value is (4, 2), meaning a dash of 4 * \l strokeWidth pixels - followed by a space of 2 * \l strokeWidth pixels. - - \sa QPen::setDashPattern() -*/ - property alias dashPattern: path.dashPattern - -/*! - The join style used to connect two triangle line segments. - - \value ShapePath.MiterJoin - The outer edges of the lines are extended to meet at an angle, and - this area is filled. - \value ShapePath.BevelJoin - The triangular notch between the two lines is filled. - This is the default value. - \value ShapePath.RoundJoin - A circular arc between the two lines is filled. - - \sa Qt::PenJoinStyle -*/ - property alias joinStyle: path.joinStyle - -/*! - The triangle fill color. - - A gradient for the fill can be specified by using \l gradient. If both a - color and a gradient are specified, the gradient is used. - - When set to \c transparent, no filling occurs. - - The default value is \c white. -*/ - property alias fillColor: path.fillColor - -/*! - The starting point of the dash pattern for the triangle border. - - The offset is measured in terms of the units used to specify the dash - pattern. For example, a pattern where each stroke is four units long, - followed by a gap of two units, will begin with the stroke when drawn - as a line. However, if the dash offset is set to 4.0, any line drawn - will begin with the gap. Values of the offset up to 4.0 will cause part - of the stroke to be drawn first, and values of the offset between 4.0 and - 6.0 will cause the line to begin with part of the gap. - - The default value is 0. - - \sa QPen::setDashOffset() -*/ - property alias dashOffset: path.dashOffset - - property int pLineXStart - property int pLineXEnd - property int pLineYStart - property int pLineYEnd - - property point topIntersection1 - property point topIntersection2 - property point leftIntersection1 - property point leftIntersection2 - property point rightIntersection1 - property point rightIntersection2 - -/*! - The radius used to draw rounded corners. - - The default value is 5. - - If radius is non-zero, the corners will be rounded, otherwise they will - be sharp. - - This property can be used together with the \l arcRadius property to - determine the shape of the triangle. - - \sa arcRadius -*/ - property int radius: 5 - -/*! - The radius used to draw rounded corners. - - The default value is 5. - - If radius is non-zero, the corners will be rounded, otherwise they will - be sharp. - - This property can be used together with the \l radius property to - determine the shape of the triangle. -*/ - property real arcRadius: root.radius - -/*! - The left margin between the triangle and the bounding rectangle. - - Setting the left and right margins makes the triangle thinner and moves it - away from the edge. - - \sa rightMargin, topMargin, bottomMargin -*/ - property real leftMargin: 0 - -/*! - The top margin between the triangle and the bounding rectangle. - - Setting the top and bottom margins makes the triangle lower and moves it - away from the edge. - - \sa bottomMargin, leftMargin, rightMargin -*/ - property real topMargin: 0 - -/*! - The left margin between the triangle and the bounding rectangle. - - Setting the left and right margins makes the triangle thinner and moves it - away from the edge. - - \sa leftMargin, topMargin, bottomMargin -*/ - property real rightMargin: 0 - -/*! - \qmlproperty real Triangle::bottomMargin - - The top margin between the triangle and the bounding rectangle. - - Setting the top and bottom margins makes the triangle shorter and moves it - away from the edge. - - \sa topMargin, leftMargin, rightMargin -*/ - property real bottomMargin: 0 - - property int maxRadius: 0 - - layer.enabled: root.antialiasing - layer.smooth: root.antialiasing - layer.samples: root.antialiasing ? 4 : 0 - - // This is used to make the bounding box of the item a bit bigger so it will draw sharp edges - // in case of large stroke width instead of cutting it off. - Item { - anchors.fill: parent - anchors.margins: -root.strokeWidth - } - - ShapePath { - id: path - - //property real __width: root.width - root.strokeWidth - root.leftMargin - root.rightMargin - //property real __height: root.height - root.strokeWidth - root.topMargin - root.bottomMargin - //property real xOffset: root.strokeWidth / 2 + root.leftMargin - //property real yOffset: root.strokeWidth / 2 + root.topMargin - - property real __width: root.width - root.leftMargin - root.rightMargin - property real __height: root.height - root.topMargin - root.bottomMargin - property real xOffset: root.leftMargin - property real yOffset: root.topMargin - - strokeWidth: 4 - strokeColor: "red" - capStyle: ShapePath.FlatCap - joinStyle: ShapePath.MiterJoin - - startX: root.topIntersection1.x + path.xOffset - startY: root.topIntersection1.y + path.yOffset - - PathArc { - radiusX: Math.max(root.arcRadius, 1) - radiusY: Math.max(root.arcRadius, 1) - - x: root.topIntersection2.x + path.xOffset - y: root.topIntersection2.y + path.yOffset - } - - PathLine { - x: root.rightIntersection1.x + path.xOffset - y: root.rightIntersection1.y + path.yOffset - } - - PathArc { - radiusX: Math.max(root.arcRadius, 1) - radiusY: Math.max(root.arcRadius, 1) - - x: root.rightIntersection2.x + path.xOffset - y: root.rightIntersection2.y + path.yOffset - } - - PathLine { - x: root.leftIntersection1.x + path.xOffset - y: root.leftIntersection1.y + path.yOffset - } - - PathArc { - radiusX: Math.max(root.arcRadius, 1) - radiusY: Math.max(root.arcRadius, 1) - - x: root.leftIntersection2.x + path.xOffset - y: root.leftIntersection2.y + path.yOffset - } - - PathLine { - x: root.topIntersection1.x + path.xOffset - y: root.topIntersection1.y + path.yOffset - } - } - - onWidthChanged: root.calc() - onHeightChanged: root.calc() - - onRadiusChanged: root.calc() - onArcRadiusChanged: root.calc() - - onTopMarginChanged: root.calc() - onBottomMarginChanged: root.calc() - onLeftMarginChanged: root.calc() - onRightMarginChanged: root.calc() - - Component.onCompleted: root.calc() - - function length(x, y) { - return Math.sqrt(x * x + y * y) - } - - function normalize(x, y) { - var l = length(x, y) - - return { - x: x / l, - y: y / l - } - } - - function dotProduct(x1, y1, x2, y2) { - return x1 * x2 + y1 * y2; - } - - function project(x1, y1, x2, y2) { - var normalized = normalize(x1, y1) - - var dot = dotProduct(normalized.x, normalized.y, x2, y2) - - return { - x: normalized.x * dot, - y: normalized.y * dot - } - } - - function intersect(x1, y1, x2, y2, x3, y3, x4, y4) { - var denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1) - - var ua = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denom - var ub = ((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / denom - return { - x: x1 + ua * (x2 - x1), - y: y1 + ua * (y2 - y1) - }; - } - - function moveLine(startX, startY, endX, endY) { - var angle = Math.atan2(endY - startY, endX - startX) - var xOffset = Math.sin(angle) * Math.min(root.radius, root.maxRadius) - var yOffset = -Math.cos(angle) * Math.min(root.radius, root.maxRadius) - - return { - startX: startX + xOffset, - startY: startY + yOffset, - endX: endX + xOffset, - endY: endY + yOffset - }; - } - - function calc() { - var movedLine1 = moveLine(path.__width / 2, 0, 0, path.__height) - var movedLine2 = moveLine(path.__width, path.__height, path.__width / 2, 0) - var movedLine3 = moveLine(0, path.__height, path.__width, path.__height) - - var lengthLine1 = Math.floor(root.length(movedLine1.endX - movedLine1.startX, - movedLine1.endY - movedLine1.startY)) - var lengthLine2 = Math.floor(root.length(movedLine2.endX - movedLine2.startX, - movedLine2.endY - movedLine2.startY)) - var lengthLine3 = Math.floor(root.length(movedLine3.endX - movedLine3.startX, - movedLine3.endY - movedLine3.startY)) - - var perimeter = lengthLine1 + lengthLine2 + lengthLine3 - var area = (path.__height) * (path.__width) * 0.5 - - root.maxRadius = area * 2 / perimeter - - var intersectionTop = root.intersect(movedLine1.startX, movedLine1.startY, - movedLine1.endX, movedLine1.endY, - movedLine2.startX, movedLine2.startY, - movedLine2.endX, movedLine2.endY) - var intersectionLeft = root.intersect(movedLine1.startX, movedLine1.startY, - movedLine1.endX, movedLine1.endY, - movedLine3.startX, movedLine3.startY, - movedLine3.endX, movedLine3.endY) - var intersectionRight = root.intersect(movedLine2.startX, movedLine2.startY, - movedLine2.endX, movedLine2.endY, - movedLine3.startX, movedLine3.startY, - movedLine3.endX, movedLine3.endY) - - var leftBottom = root.project(1, 0, intersectionLeft.x, intersectionLeft.y) - var rightBottom = root.project(1, 0, intersectionRight.x, intersectionRight.y) - - root.leftIntersection1 = Qt.point(leftBottom.x, leftBottom.y + path.__height) - root.rightIntersection2 = Qt.point(rightBottom.x, rightBottom.y + path.__height) - - var leftTop = root.project(-path.__width / 2 , path.__height, - intersectionTop.x - path.__width / 2, intersectionTop.y) - - leftBottom = root.project(-path.__width / 2 , path.__height, - intersectionLeft.x - path.__width / 2, intersectionLeft.y) - - root.leftIntersection2 = Qt.point(leftBottom.x + path.__width / 2, leftBottom.y) - root.topIntersection1 = Qt.point(leftTop.x + path.__width / 2, leftTop.y) - - var rightTop = root.project(path.__width / 2 , path.__height, - intersectionTop.x - path.__width / 2, intersectionTop.y) - - rightBottom = root.project(path.__width / 2 , path.__height, - intersectionRight.x - path.__width / 2, intersectionRight.y) - - root.topIntersection2 = Qt.point(rightTop.x + path.__width / 2, rightTop.y) - root.rightIntersection1 = Qt.point(rightBottom.x + path.__width / 2, rightBottom.y) - } -} diff --git a/build/qml/QtQuick/Studio/Components/qmldir b/build/qml/QtQuick/Studio/Components/qmldir deleted file mode 100644 index 759d443..0000000 --- a/build/qml/QtQuick/Studio/Components/qmldir +++ /dev/null @@ -1,34 +0,0 @@ -module QtQuick.Studio.Components -linktarget QuickStudioComponentsplugin -optional plugin QuickStudioComponentsplugin -classname QtQuick_Studio_ComponentsPlugin -designersupported -typeinfo QuickStudioComponents.qmltypes -prefer :/QtQuick/Studio/Components/ -ArcItem 6.0 ArcItem.qml -ArcItem 1.0 ArcItem.qml -PieItem 6.0 PieItem.qml -PieItem 1.0 PieItem.qml -TriangleItem 6.0 TriangleItem.qml -TriangleItem 1.0 TriangleItem.qml -SvgPathItem 6.0 SvgPathItem.qml -SvgPathItem 1.0 SvgPathItem.qml -EllipseItem 6.0 EllipseItem.qml -EllipseItem 1.0 EllipseItem.qml -FlipableItem 6.0 FlipableItem.qml -FlipableItem 1.0 FlipableItem.qml -RectangleItem 6.0 RectangleItem.qml -RectangleItem 1.0 RectangleItem.qml -RegularPolygonItem 6.0 RegularPolygonItem.qml -RegularPolygonItem 1.0 RegularPolygonItem.qml -BorderItem 6.0 BorderItem.qml -BorderItem 1.0 BorderItem.qml -IsoItem 6.0 IsoItem.qml -IsoItem 1.0 IsoItem.qml -GroupItem 6.0 GroupItem.qml -GroupItem 1.0 GroupItem.qml -ArcArrow 6.0 ArcArrow.qml -ArcArrow 1.0 ArcArrow.qml -StraightArrow 6.0 StraightArrow.qml -StraightArrow 1.0 StraightArrow.qml - diff --git a/build/qml/QtQuick/Studio/Effects/BlendEffect.qml b/build/qml/QtQuick/Studio/Effects/BlendEffect.qml deleted file mode 100644 index bfefcd6..0000000 --- a/build/qml/QtQuick/Studio/Effects/BlendEffect.qml +++ /dev/null @@ -1,37 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -FastBlur { - id: blend - property string mode: "subtract" - Component.onCompleted: console.log("Blend is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/BlendItem.qml b/build/qml/QtQuick/Studio/Effects/BlendItem.qml deleted file mode 100644 index e4cf658..0000000 --- a/build/qml/QtQuick/Studio/Effects/BlendItem.qml +++ /dev/null @@ -1,65 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property string mode - property alias cached: blend.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - visible: false - } - - FastBlur { - id: blend - anchors.fill: parent - } - - property Item background - property Item foreground - - property Item foo: Item {} - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - console.log("Blend is not supported with Qt 6") - } -} - diff --git a/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml b/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml deleted file mode 100644 index 16be284..0000000 --- a/build/qml/QtQuick/Studio/Effects/BrightnessContrastEffect.qml +++ /dev/null @@ -1,35 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -BrightnessContrast { - id: brightCont -} diff --git a/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml b/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml deleted file mode 100644 index 76c4215..0000000 --- a/build/qml/QtQuick/Studio/Effects/BrightnessContrastItem.qml +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - - property alias brightness: brightCont.brightness - property alias contrast: brightCont.contrast - property alias cached: brightCont.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - BrightnessContrast { - id: brightCont - anchors.fill: stack - source: stack - } -} diff --git a/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml b/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml deleted file mode 100644 index 6b67005..0000000 --- a/build/qml/QtQuick/Studio/Effects/ColorOverlayEffect.qml +++ /dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -ColorOverlay { - id: colorOverlay - color: "#80fff000" -} diff --git a/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml b/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml deleted file mode 100644 index 7ae14f8..0000000 --- a/build/qml/QtQuick/Studio/Effects/ColorOverlayItem.qml +++ /dev/null @@ -1,59 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias content: stack.children - - property alias overlayColor: colorOverlay.color - property alias cached: colorOverlay.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - ColorOverlay { - id: colorOverlay - anchors.fill: stack - source: stack - color: "#80fff000" - } -} diff --git a/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml b/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml deleted file mode 100644 index 35dedf5..0000000 --- a/build/qml/QtQuick/Studio/Effects/ColorizeEffect.qml +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Colorize { - id: colorize - hue: 0.5 - saturation: 0.5 - lightness: 0.5 -} diff --git a/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml b/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml deleted file mode 100644 index f61dddc..0000000 --- a/build/qml/QtQuick/Studio/Effects/ColorizeItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias colorizeHue: colorize.hue - property alias colorizeSaturation: colorize.saturation - property alias colorizeLightness: colorize.lightness - property alias cached: colorize.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - Colorize { - id: colorize - anchors.fill: stack - source: stack - hue: 0.5 - saturation: 0.5 - lightness: 0.5 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml b/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml deleted file mode 100644 index ad66dfe..0000000 --- a/build/qml/QtQuick/Studio/Effects/DesaturationEffect.qml +++ /dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Desaturate { - id: desaturate - desaturation: 0.5 -} diff --git a/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml b/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml deleted file mode 100644 index c994ba3..0000000 --- a/build/qml/QtQuick/Studio/Effects/DesaturationItem.qml +++ /dev/null @@ -1,56 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias desaturation: desaturate.desaturation - property alias cached: desaturate.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - Desaturate { - id: desaturate - source: stack - anchors.fill: stack - desaturation: 0.5 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml deleted file mode 100644 index 9dd691e..0000000 --- a/build/qml/QtQuick/Studio/Effects/DirectionalBlurEffect.qml +++ /dev/null @@ -1,42 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -FastBlur { - property real directionalBlurAngle: 0 - property real directionalBlurLength: 0 - property int directionalBlurSamples: 10 - property int length: 0 - - id: directionalBlur - transparentBorder: true - Component.onCompleted: console.log("DirectionalBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml b/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml deleted file mode 100644 index 8cbb98a..0000000 --- a/build/qml/QtQuick/Studio/Effects/DirectionalBlurItem.qml +++ /dev/null @@ -1,62 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - - property real directionalBlurAngle: 0 - property real directionalBlurLength: 0 - property int directionalBlurSamples: 10 - property alias directionalBlurBorder: directionalBlur.transparentBorder - property alias cached: directionalBlur.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - FastBlur { - id: directionalBlur - anchors.fill: stack - source: stack - transparentBorder: true - } - Component.onCompleted: console.log("DirectionalBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml b/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml deleted file mode 100644 index 5d27a35..0000000 --- a/build/qml/QtQuick/Studio/Effects/DisplaceEffect.qml +++ /dev/null @@ -1,35 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Displace { - id: displace -} diff --git a/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml b/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml deleted file mode 100644 index 8d1ebdd..0000000 --- a/build/qml/QtQuick/Studio/Effects/DisplaceItem.qml +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias displacement: displace.displacement - property alias cached: displace.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - implicitWidth: displace.source.width + displace.source.x - implicitHeight: displace.source.height + displace.source.y - visible: false - } - - Displace { - id: displace - anchors.fill: parent - source: root.background - displacementSource: root.foreground - } - - property Item background - property Item foreground - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - } -} - diff --git a/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml b/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml deleted file mode 100644 index 51e4778..0000000 --- a/build/qml/QtQuick/Studio/Effects/DropShadowEffect.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -DropShadow { - id: dropShadow - horizontalOffset: 3 - verticalOffset: 3 - radius: 8.0 - spread: 0.5 - transparentBorder: true - color: "#80000000" -} diff --git a/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml b/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml deleted file mode 100644 index e49f283..0000000 --- a/build/qml/QtQuick/Studio/Effects/DropShadowItem.qml +++ /dev/null @@ -1,69 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias horizontalOffset: dropShadow.horizontalOffset - property alias verticalOffset: dropShadow.verticalOffset - property alias radius: dropShadow.radius - property alias samples: dropShadow.samples - property alias spread: dropShadow.spread - property alias transparentBorder: dropShadow.transparentBorder - property alias color: dropShadow.color - property alias cached: dropShadow.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - DropShadow { - id: dropShadow - anchors.fill: stack - source: stack - horizontalOffset: 3 - verticalOffset: 3 - radius: 8.0 - samples: 17 - spread: 0.5 - transparentBorder: true - color: "#80000000" - } -} diff --git a/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml deleted file mode 100644 index 353fd1d..0000000 --- a/build/qml/QtQuick/Studio/Effects/FastBlurEffect.qml +++ /dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.8 -import Qt5Compat.GraphicalEffects - -FastBlur { - id: fastBlur - radius: 20 -} diff --git a/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml b/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml deleted file mode 100644 index f8048cb..0000000 --- a/build/qml/QtQuick/Studio/Effects/FastBlurItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.8 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - layer.enabled: true - - default property alias contentStack: stack.children - property alias radius: blur.radius - property alias transparentBorder: blur.transparentBorder - property alias cached: blur.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - } - - FastBlur { - id: blur - - transparentBorder: true - anchors.fill: stack - source: stack - radius: 12 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml b/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml deleted file mode 100644 index dfa0680..0000000 --- a/build/qml/QtQuick/Studio/Effects/GammaAdjustEffect.qml +++ /dev/null @@ -1,37 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -GammaAdjust { - id: gammaAdjust - anchors.fill: stack - gamma: 0.5 -} diff --git a/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml b/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml deleted file mode 100644 index e8d0e67..0000000 --- a/build/qml/QtQuick/Studio/Effects/GammaAdjustItem.qml +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias gamma: gammaAdjust.gamma - property alias cached: gammaAdjust.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - GammaAdjust { - id: gammaAdjust - anchors.fill: stack - source: stack - gamma: 0.5 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml deleted file mode 100644 index 7180065..0000000 --- a/build/qml/QtQuick/Studio/Effects/GaussianBlurEffect.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -FastBlur { - id: gaussianBlur - transparentBorder: true - radius: 8.0 - - property alias radius: gaussianBlur.radius - property int samples: 0 - Component.onCompleted: console.log("GaussianBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml b/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml deleted file mode 100644 index ee95182..0000000 --- a/build/qml/QtQuick/Studio/Effects/GaussianBlurItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property real deviation: gaussianBlur.deviation - property alias radius: gaussianBlur.radius - property int samples: 0 - property alias transparentBorder: gaussianBlur.transparentBorder - property alias cached: gaussianBlur.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - FastBlur { - id: gaussianBlur - transparentBorder: true - anchors.fill: stack - source: stack - radius: 8.0 - } - Component.onCompleted: console.log("GaussianBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/GlowEffect.qml b/build/qml/QtQuick/Studio/Effects/GlowEffect.qml deleted file mode 100644 index 6a4d56d..0000000 --- a/build/qml/QtQuick/Studio/Effects/GlowEffect.qml +++ /dev/null @@ -1,40 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Glow { - property real samples: 0 - id: glow - radius: 5 - spread: 0.5 - color: "#ffffffff" - transparentBorder: true -} diff --git a/build/qml/QtQuick/Studio/Effects/GlowItem.qml b/build/qml/QtQuick/Studio/Effects/GlowItem.qml deleted file mode 100644 index 201a3b1..0000000 --- a/build/qml/QtQuick/Studio/Effects/GlowItem.qml +++ /dev/null @@ -1,63 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias radius: glow.radius - property real samples: 0 - property alias spread: glow.spread - property alias color: glow.color - property alias transparentBorder: glow.transparentBorder - property alias cached: glow.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - Glow { - id: glow - anchors.fill: stack - radius: 5 - spread: 0.5 - color: "#ffffffff" - transparentBorder: true - source: stack - } -} diff --git a/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml b/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml deleted file mode 100644 index d35f33f..0000000 --- a/build/qml/QtQuick/Studio/Effects/HueSaturationEffect.qml +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -HueSaturation { - id: hueSat - hue: 0.5 - saturation: 0.5 - lightness: 0.5 -} diff --git a/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml b/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml deleted file mode 100644 index 39ab8ec..0000000 --- a/build/qml/QtQuick/Studio/Effects/HueSaturationItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias adjustHue: hueSat.hue - property alias adjustSaturation: hueSat.saturation - property alias adjustLightness: hueSat.lightness - property alias cached: hueSat.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - HueSaturation { - id: hueSat - anchors.fill: stack - source: stack - hue: 0.5 - saturation: 0.5 - lightness: 0.5 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml b/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml deleted file mode 100644 index ec182aa..0000000 --- a/build/qml/QtQuick/Studio/Effects/InnerShadowEffect.qml +++ /dev/null @@ -1,45 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -FastBlur { - id: innerShadow - - property color color: "#000000" - property bool fast: false - property real horizontalOffset: 0 - property real radius: 0 - property real samples: 0 - property real spread: 0 - property real verticalOffset: 0 - - Component.onCompleted: console.log("InnerShadow is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml b/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml deleted file mode 100644 index de8405b..0000000 --- a/build/qml/QtQuick/Studio/Effects/InnerShadowItem.qml +++ /dev/null @@ -1,63 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.0 -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias cached: innerShadow.cached - - property color color: "#000000" - property bool fast: false - property real horizontalOffset: 0 - property real radius: 0 - property real samples: 0 - property real spread: 0 - property real verticalOffset: 0 - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - FastBlur { - id: innerShadow - anchors.fill: stack - source: stack - } - Component.onCompleted: console.log("InnerShadow is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml b/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml deleted file mode 100644 index 9ca5ca6..0000000 --- a/build/qml/QtQuick/Studio/Effects/LevelAdjustEffect.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 -import Qt5Compat.GraphicalEffects - -LevelAdjust { - id: levelAdjust - - property real gammaR: 1.0 - property real gammaG: 1.0 - property real gammaB: 1.0 - - gamma: Qt.vector3d(levelAdjust.gammaR, levelAdjust.gammaG, levelAdjust.gammaG) -} diff --git a/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml b/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml deleted file mode 100644 index 6415e5c..0000000 --- a/build/qml/QtQuick/Studio/Effects/LevelAdjustItem.qml +++ /dev/null @@ -1,62 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property real gammaR: 1.0 - property real gammaG: 1.0 - property real gammaB: 1.0 - property alias maximumInput: levelAdjust.maximumInput - property alias maximumOutput: levelAdjust.maximumOutput - property alias minimumInput: levelAdjust.minimumInput - property alias minimumOutput: levelAdjust.minimumOutput - property alias cached: levelAdjust.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: true - } - - LevelAdjust { - id: levelAdjust - anchors.fill: stack - source: stack - gamma: Qt.vector3d(root.gammaR, root.gammaG, root.gammaG) - } -} diff --git a/build/qml/QtQuick/Studio/Effects/MaskItem.qml b/build/qml/QtQuick/Studio/Effects/MaskItem.qml deleted file mode 100644 index 1ef8202..0000000 --- a/build/qml/QtQuick/Studio/Effects/MaskItem.qml +++ /dev/null @@ -1,69 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias invert: blend.invert - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - implicitWidth: blend.source.width + blend.source.x - implicitHeight: blend.source.height + blend.source.y - - visible: false - } - - OpacityMask { - id: blend - anchors.fill: parent - source: root.background - maskSource: root.foreground - - } - - property Item background - property Item foreground - - property Item foo: Item {} - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - } -} - diff --git a/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml deleted file mode 100644 index ac6125b..0000000 --- a/build/qml/QtQuick/Studio/Effects/MaskedBlurEffect.qml +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -FastBlur { - id: maskedBlur - radius: 32 - property int samples: 0 - Component.onCompleted: console.log("MaskedBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml b/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml deleted file mode 100644 index 03e80ab..0000000 --- a/build/qml/QtQuick/Studio/Effects/MaskedBlurItem.qml +++ /dev/null @@ -1,68 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias radius: maskedBlur.radius - property int samples: 0 - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - implicitWidth: maskedBlur.source.width + maskedBlur.source.x - implicitHeight: maskedBlur.source.height + maskedBlur.source.y - visible: false - } - - FastBlur { - id: maskedBlur - anchors.fill: parent - source: root.background - maskSource: root.foreground - radius: 32 - samples: 16 - } - - property Item background - property Item foreground - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - console.log("MaskedBlur is not supported with Qt 6") - } -} diff --git a/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml b/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml deleted file mode 100644 index 71e4afb..0000000 --- a/build/qml/QtQuick/Studio/Effects/OpacityMaskEffect.qml +++ /dev/null @@ -1,35 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -OpacityMask { - id: mask -} diff --git a/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml b/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml deleted file mode 100644 index e523d9d..0000000 --- a/build/qml/QtQuick/Studio/Effects/OpacityMaskItem.qml +++ /dev/null @@ -1,65 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias invert: mask.invert - property alias cached: mask.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - implicitWidth: mask.source.width + mask.source.x - implicitHeight: mask.source.height + mask.source.y - visible: false - } - - OpacityMask { - id: mask - anchors.fill: parent - source: root.background - maskSource: root.foreground - } - - property Item background - property Item foreground - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - } -} diff --git a/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc deleted file mode 100644 index df2ddc7..0000000 --- a/build/qml/QtQuick/Studio/Effects/QuickStudioEffects_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/Effects - - - diff --git a/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml deleted file mode 100644 index c4bd45b..0000000 --- a/build/qml/QtQuick/Studio/Effects/RadialBlurEffect.qml +++ /dev/null @@ -1,45 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -FastBlur { - - property int samples: 0 - property real verticalOffset: 0 - property real horizontalOffset: 0 - property real angle: 0 - - id: radialBlur - - transparentBorder: true - - Component.onCompleted: console.log("RadiallBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml b/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml deleted file mode 100644 index 92712d8..0000000 --- a/build/qml/QtQuick/Studio/Effects/RadialBlurItem.qml +++ /dev/null @@ -1,62 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias cached: radialBlur.cached - property int samples: 0 - property real verticalOffset: 0 - property real horizontalOffset: 0 - property real transparentBorder: 0 - property real angle: 0 - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - } - - FastBlur { - id: radialBlur - anchors.fill: stack - source: stack - transparentBorder: true - } - - Component.onCompleted: console.log("RadiallBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml deleted file mode 100644 index eb0cc7c..0000000 --- a/build/qml/QtQuick/Studio/Effects/RecursiveBlurEffect.qml +++ /dev/null @@ -1,40 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -FastBlur { - id: recursiveBlur - transparentBorder: true - radius: 8.0 - property int loops: 0 - property int progress: 0 - Component.onCompleted: console.log("RecursiveBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml b/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml deleted file mode 100644 index 5d966d1..0000000 --- a/build/qml/QtQuick/Studio/Effects/RecursiveBlurItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property int loops: 0 - property int progress: 0 - property alias radius: recursiveBlur.radius - property alias transparentBorder: recursiveBlur.transparentBorder - property alias cached: recursiveBlur.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - visible: false - } - - FastBlur { - id: recursiveBlur - transparentBorder: true - anchors.fill: stack - source: stack - radius: 8.0 - } - Component.onCompleted: console.log("RecursiveBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/RotationItem.qml b/build/qml/QtQuick/Studio/Effects/RotationItem.qml deleted file mode 100644 index 76da4d4..0000000 --- a/build/qml/QtQuick/Studio/Effects/RotationItem.qml +++ /dev/null @@ -1,51 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - property alias originX: rotation.origin.x - property alias originY: rotation.origin.y - property alias axisX: rotation.axis.x - property alias axisY: rotation.axis.y - property alias axisZ: rotation.axis.z - property alias angle: rotation.angle - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - transform: Rotation { - id: rotation - origin.x: root.width / 2 - origin.y: root.height / 2 - angle: 45 - } -} diff --git a/build/qml/QtQuick/Studio/Effects/SaturationItem.qml b/build/qml/QtQuick/Studio/Effects/SaturationItem.qml deleted file mode 100644 index cc26a91..0000000 --- a/build/qml/QtQuick/Studio/Effects/SaturationItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias desaturation: desaturate.desaturation - property alias cached: desaturate.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - - Item { - id: stack - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - - visible: false - } - - Desaturate { - id: desaturate - source: stack - anchors.fill: stack - - desaturation: 0.5 - } -} - diff --git a/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml b/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml deleted file mode 100644 index 7092998..0000000 --- a/build/qml/QtQuick/Studio/Effects/ThresholdMaskEffect.qml +++ /dev/null @@ -1,37 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -ThresholdMask { - id: thresholdMask - spread: 0.2 - threshold: 0.5 -} diff --git a/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml b/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml deleted file mode 100644 index 3302f38..0000000 --- a/build/qml/QtQuick/Studio/Effects/ThresholdMaskItem.qml +++ /dev/null @@ -1,68 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property alias spread: thresholdMask.spread - property alias threshold: thresholdMask.threshold - property alias cached: thresholdMask.cached - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - z: -1 - id: stack - implicitWidth: thresholdMask.source.width + thresholdMask.source.x - implicitHeight: thresholdMask.source.height + thresholdMask.source.y - visible: false - } - - ThresholdMask { - id: thresholdMask - anchors.fill: parent - source: root.background - maskSource: root.foreground - spread: 0.2 - threshold: 0.5 - } - - property Item background - property Item foreground - - Component.onCompleted: { - root.background = stack.children[0] - root.foreground = stack.children[1] - } -} diff --git a/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml b/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml deleted file mode 100644 index 7742a46..0000000 --- a/build/qml/QtQuick/Studio/Effects/ZoomBlurEffect.qml +++ /dev/null @@ -1,41 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -FastBlur { - id: zoomBlur - property int zoomBlurLength: 0 - property int zoomBlurSamples: 0 - property real zoomBlurHoffset: 0 - property real zoomBlurVoffset: 0 - transparentBorder: true - Component.onCompleted: console.log("ZoomBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml b/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml deleted file mode 100644 index ff3f5a3..0000000 --- a/build/qml/QtQuick/Studio/Effects/ZoomBlurItem.qml +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2019 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import Qt5Compat.GraphicalEffects - -Item { - id: root - - default property alias contentStack: stack.children - property int zoomBlurLength: 0 - property int zoomBlurSamples: 0 - property real zoomBlurHoffset: 0 - property real zoomBlurVoffset: 0 - property alias cached: zoomBlur.cached - property alias transparentBorder: zoomBlur.transparentBorder - - implicitWidth: Math.max(32, stack.implicitWidth) - implicitHeight: Math.max(32, stack.implicitHeight) - - Item { - id: stack - - implicitWidth: childrenRect.width + childrenRect.x - implicitHeight: childrenRect.height + childrenRect.y - } - - FastBlur { - id: zoomBlur - anchors.fill: stack - source: stack - transparentBorder: true - } - Component.onCompleted: console.log("ZoomBlur is not supported with Qt 6") -} diff --git a/build/qml/QtQuick/Studio/Effects/qmldir b/build/qml/QtQuick/Studio/Effects/qmldir deleted file mode 100644 index 7680230..0000000 --- a/build/qml/QtQuick/Studio/Effects/qmldir +++ /dev/null @@ -1,98 +0,0 @@ -module QtQuick.Studio.Effects -linktarget QuickStudioEffectsplugin -optional plugin QuickStudioEffectsplugin -classname QtQuick_Studio_EffectsPlugin -designersupported -typeinfo QuickStudioEffects.qmltypes -prefer :/QtQuick/Studio/Effects/ -FastBlurItem 6.0 FastBlurItem.qml -FastBlurItem 1.0 FastBlurItem.qml -GlowItem 6.0 GlowItem.qml -GlowItem 1.0 GlowItem.qml -ZoomBlurItem 6.0 ZoomBlurItem.qml -ZoomBlurItem 1.0 ZoomBlurItem.qml -RadialBlurItem 6.0 RadialBlurItem.qml -RadialBlurItem 1.0 RadialBlurItem.qml -DesaturationItem 6.0 DesaturationItem.qml -DesaturationItem 1.0 DesaturationItem.qml -SaturationItem 6.0 SaturationItem.qml -SaturationItem 1.0 SaturationItem.qml -DirectionalBlurItem 6.0 DirectionalBlurItem.qml -DirectionalBlurItem 1.0 DirectionalBlurItem.qml -ColorOverlayItem 6.0 ColorOverlayItem.qml -ColorOverlayItem 1.0 ColorOverlayItem.qml -DropShadowItem 6.0 DropShadowItem.qml -DropShadowItem 1.0 DropShadowItem.qml -ColorizeItem 6.0 ColorizeItem.qml -ColorizeItem 1.0 ColorizeItem.qml -BrightnessContrastItem 6.0 BrightnessContrastItem.qml -BrightnessContrastItem 1.0 BrightnessContrastItem.qml -HueSaturationItem 6.0 HueSaturationItem.qml -HueSaturationItem 1.0 HueSaturationItem.qml -MaskedBlurItem 6.0 MaskedBlurItem.qml -MaskedBlurItem 1.0 MaskedBlurItem.qml -BlendItem 6.0 BlendItem.qml -BlendItem 1.0 BlendItem.qml -OpacityMaskItem 6.0 OpacityMaskItem.qml -OpacityMaskItem 1.0 OpacityMaskItem.qml -MaskItem 6.0 MaskItem.qml -MaskItem 1.0 MaskItem.qml -RotationItem 6.0 RotationItem.qml -RotationItem 1.0 RotationItem.qml -GaussianBlurItem 6.0 GaussianBlurItem.qml -GaussianBlurItem 1.0 GaussianBlurItem.qml -GammaAdjustItem 6.0 GammaAdjustItem.qml -GammaAdjustItem 1.0 GammaAdjustItem.qml -RecursiveBlurItem 6.0 RecursiveBlurItem.qml -RecursiveBlurItem 1.0 RecursiveBlurItem.qml -ThresholdMaskItem 6.0 ThresholdMaskItem.qml -ThresholdMaskItem 1.0 ThresholdMaskItem.qml -LevelAdjustItem 6.0 LevelAdjustItem.qml -LevelAdjustItem 1.0 LevelAdjustItem.qml -InnerShadowItem 6.0 InnerShadowItem.qml -InnerShadowItem 1.0 InnerShadowItem.qml -DisplaceItem 6.0 DisplaceItem.qml -DisplaceItem 1.0 DisplaceItem.qml -BlendEffect 6.0 BlendEffect.qml -BlendEffect 1.0 BlendEffect.qml -BrightnessContrastEffect 6.0 BrightnessContrastEffect.qml -BrightnessContrastEffect 1.0 BrightnessContrastEffect.qml -ColorizeEffect 6.0 ColorizeEffect.qml -ColorizeEffect 1.0 ColorizeEffect.qml -ColorOverlayEffect 6.0 ColorOverlayEffect.qml -ColorOverlayEffect 1.0 ColorOverlayEffect.qml -DesaturationEffect 6.0 DesaturationEffect.qml -DesaturationEffect 1.0 DesaturationEffect.qml -DirectionalBlurEffect 6.0 DirectionalBlurEffect.qml -DirectionalBlurEffect 1.0 DirectionalBlurEffect.qml -DisplaceEffect 6.0 DisplaceEffect.qml -DisplaceEffect 1.0 DisplaceEffect.qml -DropShadowEffect 6.0 DropShadowEffect.qml -DropShadowEffect 1.0 DropShadowEffect.qml -FastBlurEffect 6.0 FastBlurEffect.qml -FastBlurEffect 1.0 FastBlurEffect.qml -GammaAdjustEffect 6.0 GammaAdjustEffect.qml -GammaAdjustEffect 1.0 GammaAdjustEffect.qml -GaussianBlurEffect 6.0 GaussianBlurEffect.qml -GaussianBlurEffect 1.0 GaussianBlurEffect.qml -GlowEffect 6.0 GlowEffect.qml -GlowEffect 1.0 GlowEffect.qml -HueSaturationEffect 6.0 HueSaturationEffect.qml -HueSaturationEffect 1.0 HueSaturationEffect.qml -InnerShadowEffect 6.0 InnerShadowEffect.qml -InnerShadowEffect 1.0 InnerShadowEffect.qml -LevelAdjustEffect 6.0 LevelAdjustEffect.qml -LevelAdjustEffect 1.0 LevelAdjustEffect.qml -MaskedBlurEffect 6.0 MaskedBlurEffect.qml -MaskedBlurEffect 1.0 MaskedBlurEffect.qml -OpacityMaskEffect 6.0 OpacityMaskEffect.qml -OpacityMaskEffect 1.0 OpacityMaskEffect.qml -RadialBlurEffect 6.0 RadialBlurEffect.qml -RadialBlurEffect 1.0 RadialBlurEffect.qml -RecursiveBlurEffect 6.0 RecursiveBlurEffect.qml -RecursiveBlurEffect 1.0 RecursiveBlurEffect.qml -ThresholdMaskEffect 6.0 ThresholdMaskEffect.qml -ThresholdMaskEffect 1.0 ThresholdMaskEffect.qml -ZoomBlurEffect 6.0 ZoomBlurEffect.qml -ZoomBlurEffect 1.0 ZoomBlurEffect.qml - diff --git a/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml b/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml deleted file mode 100644 index c9a1638..0000000 --- a/build/qml/QtQuick/Studio/EventSimulator/EventSimulator.qml +++ /dev/null @@ -1,165 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -pragma Singleton -import QtQuick 2.10 -import QtQuick.Window 2.2 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: root - - property ListModel __filteredModel: ListModel{} - property font font: { - family: "Verdana" - bold: true - } - - property alias cellColor: simulatorWindow.cellColor - property alias borderColor: simulatorWindow.borderColor - property alias textColor: simulatorWindow.textColor - property alias backgroundColor: simulatorWindow.backgroundColor - property alias listView: list - - property alias x: simulatorWindow.x - property alias y: simulatorWindow.y - - property alias width: simulatorWindow.width - property alias height: simulatorWindow.height - - - function show() - { - simulatorWindow.show() - simulatorWindow.raise() - } - - function hide() - { - simulatorWindow.hide() - simulatorWindow.lower() - } - - function __filterModel(idFilter) { - __filteredModel.clear() - - // reset the model when the filter is empty - var alwaysAdd = idFilter === "" - - for (var i = 0; i < EventSystem.model.count; i++) { - if (alwaysAdd || EventSystem.model.get(i).eventId.startsWith(idFilter)) { - __filteredModel.append(EventSystem.model.get(i)) - } - } - } - - property Window eventDialog: Window { - id: simulatorWindow - width: 200 - height: 1280 - color: backgroundColor - - property color cellColor: defaultPalette.mid - property color borderColor: defaultPalette.light - property color textColor: defaultPalette.text - property color backgroundColor: defaultPalette.window - - SystemPalette { - id: defaultPalette - colorGroup: SystemPalette.Active - } - - Component.onCompleted: { - // call the filter with an empty string to populate the list after component is created - root.__filterModel("") - } - Rectangle { - id: inputContainer - color: defaultPalette.shadow - height: 25 - width: 190 - x: 5 - - border { - color: simulatorWindow.borderColor - width: 1 - } - anchors.horizontalCenter: simulatorWindow.horizontalCenter - - TextInput { - id: filterInput - text: qsTr("Filter...") - color: root.textColor - - leftPadding: 5 - verticalAlignment: Text.AlignVCenter - anchors.fill: inputContainer - - selectByMouse: true - KeyNavigation.tab: list - - onTextEdited: { - root.__filterModel(this.text); - } - - onEditingFinished: { - list.focus = true - } - - onActiveFocusChanged: { - if (focus == true) { - if (text === "Filter...") { - filterInput.clear() - } - } else { - if (text === "") { - text = qsTr("Filter...") - } - } - } - } - } - ListView { - id: list - width: inputContainer.width - anchors { - top: inputContainer.bottom - left: inputContainer.left - bottom: parent.bottom - } - clip: true - focus: true - spacing: 2 - - model: root.__filteredModel - delegate: EventSimulatorDelegate { } - - } - } -} diff --git a/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml b/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml deleted file mode 100644 index e592cbd..0000000 --- a/build/qml/QtQuick/Studio/EventSimulator/EventSimulatorDelegate.qml +++ /dev/null @@ -1,79 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Studio.EventSystem 1.0 - -Rectangle { - id: delegateItem - width: 190 - height: 60 - color: simulatorWindow.cellColor - border { - color: simulatorWindow.borderColor - width: 1 - } - - MouseArea { - anchors.fill: parent - onDoubleClicked: { - EventSystem.triggerEvent(eventId) - } - } - - Column { - anchors.centerIn: parent - spacing: 5 - Text { - width: 190 - color: root.textColor - text: eventId - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.family: root.font.family - } - - Text { - width: 190 - color: root.textColor - text: "[" + shortcut +"]" - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.family: root.font.family - } - } - - Shortcut { - sequence: shortcut - enabled: list.focus - onActivated : { - EventSystem.triggerEvent(eventId) - } - } -} diff --git a/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc deleted file mode 100644 index cbaf7f9..0000000 --- a/build/qml/QtQuick/Studio/EventSimulator/QuickStudioEventSimulator_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSimulator - - - diff --git a/build/qml/QtQuick/Studio/EventSimulator/qmldir b/build/qml/QtQuick/Studio/EventSimulator/qmldir deleted file mode 100644 index 764f1e0..0000000 --- a/build/qml/QtQuick/Studio/EventSimulator/qmldir +++ /dev/null @@ -1,12 +0,0 @@ -module QtQuick.Studio.EventSimulator -linktarget QuickStudioEventSimulatorplugin -optional plugin QuickStudioEventSimulatorplugin -classname QtQuick_Studio_EventSimulatorPlugin -designersupported -typeinfo QuickStudioEventSimulator.qmltypes -prefer :/QtQuick/Studio/EventSimulator/ -singleton EventSimulator 6.0 EventSimulator.qml -singleton EventSimulator 1.0 EventSimulator.qml -EventSimulatorDelegate 6.0 EventSimulatorDelegate.qml -EventSimulatorDelegate 1.0 EventSimulatorDelegate.qml - diff --git a/build/qml/QtQuick/Studio/EventSystem/EventListener.qml b/build/qml/QtQuick/Studio/EventSystem/EventListener.qml deleted file mode 100644 index 14aa0a8..0000000 --- a/build/qml/QtQuick/Studio/EventSystem/EventListener.qml +++ /dev/null @@ -1,53 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: root - signal triggered(var eventId, var parameters) - property string eventIds - property var __eventIdList - function __receiveEvent(eventId, parameters) { - if (root.eventIds === eventId || __eventIdList.indexOf(eventId) > -1) - root.triggered(eventId, parameters) - } - - onEventIdsChanged:{ - var split = root.eventIds.split(',').map(item=>item.trim()); - if (split.length > 0) { - __eventIdList = split - } - } - - Component.onCompleted: { - EventSystem.eventTriggered.connect(__receiveEvent) - } -} diff --git a/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml b/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml deleted file mode 100644 index d2e3d83..0000000 --- a/build/qml/QtQuick/Studio/EventSystem/EventSystem.qml +++ /dev/null @@ -1,58 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ -pragma Singleton -import QtQuick 2.10 -import QtQuick.Window 2.2 - -Item { - signal eventTriggered(string eventID, string parameters) - property ListModel model - - function __modelLoaded() - { - model = eventListLoader.item - } - - function init(modelURI) { - eventListLoader.loaded.connect(__modelLoaded) - eventListLoader.source = modelURI - } - - function triggerEvent(eventId) { - for (var i = 0; i < model.count; i++) { - if (model.get(i).eventId === eventId) { - eventTriggered(eventId, model.get(i).parameters) - } - } - } - - Loader { - id: eventListLoader - } -} diff --git a/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc deleted file mode 100644 index 4a6d601..0000000 --- a/build/qml/QtQuick/Studio/EventSystem/QuickStudioEventSystem_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/EventSystem - - - diff --git a/build/qml/QtQuick/Studio/EventSystem/qmldir b/build/qml/QtQuick/Studio/EventSystem/qmldir deleted file mode 100644 index e987725..0000000 --- a/build/qml/QtQuick/Studio/EventSystem/qmldir +++ /dev/null @@ -1,12 +0,0 @@ -module QtQuick.Studio.EventSystem -linktarget QuickStudioEventSystemplugin -optional plugin QuickStudioEventSystemplugin -classname QtQuick_Studio_EventSystemPlugin -designersupported -typeinfo QuickStudioEventSystem.qmltypes -prefer :/QtQuick/Studio/EventSystem/ -singleton EventSystem 6.0 EventSystem.qml -singleton EventSystem 1.0 EventSystem.qml -EventListener 6.0 EventListener.qml -EventListener 1.0 EventListener.qml - diff --git a/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml deleted file mode 100644 index 2be3b41..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/AndOperator.qml +++ /dev/null @@ -1,97 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype AndOperator - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Evaluates two boolean input values and provides the result as output. - - The AndOperator type evaluates two boolean inputs, \l input01 and - \l input02. The \l output is evaluated as \c true if both \l input01 - and \l input02 are evaluated as \c true. - - Designers can use the And Operator type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use the checked state of two \l CheckBox - types to determine the checked state of a third one: - - \code - Rectangle { - CheckBox { - id: checkBox1 - text: qsTr("Check Box 1") - checked: false - } - CheckBox { - id: checkBox2 - text: qsTr("Check Box 2") - } - CheckBox { - id: checkBox3 - text: qsTr("Check Box 3") - checked: andOperator.output - } - AndOperator { - id: andOperator - input02: checkBox2.checked - input01: checkBox1.checked - } - } - \endcode - - \sa OrOperator, NotOperator -*/ - -QtObject { - id: object - -/*! - The first value to evaluate. -*/ - property bool input01: false - -/*! - The second value to evaluate. -*/ - property bool input02: false - -/*! - The result of the evaluation. -*/ - property bool output: object.input01 && object.input02 - -} diff --git a/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml b/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml deleted file mode 100644 index f025b29..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/BidirectionalBinding.qml +++ /dev/null @@ -1,156 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype BidirectionalBinding - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Binds the values of two controls bi-directionally. - - The BidirectionalBinding type binds the values of two controls - together, so that when one value is changed, the other one follows it. - For example, this type could be used to synchronize two sliders or a - slider and checkbox. Typically, it is used to bind a backend value to - a control, such as a slider. - - The \l target01 and \l target02 properties specify the ids of the components - to bind together. The \l property01 and \l property02 properties specify the - names the properties to synchronize. - - Designers can use the BidirectionalBinding type in \QDS instead of writing - JavaScript expressions. - - A \l StringMapper type can be used to add a text property that displays the - value. - - \section1 Example Usage - - In the following example, we bind the values of two \l Slider types - together bidirectionally: - - \code - Rectangle { - Slider { - id: slider - value: 0.5 - } - Slider { - id: slider1 - value: 0.5 - } - - BidrectionalBinding { - id: biDirectBinding - property02: "value" - property01: "value" - target02: slider1 - target01: slider - } - } - \endcode -*/ - -QtObject { - id: object - -/*! - The id of the component to bind to \l target02. -*/ - property QtObject target01 - -/*! - The id of the component to bind to \l target01. -*/ - property QtObject target02 - -/*! - The name of the property to synchronize with \l property02. -*/ - property string property01 - -/*! - The name of the property to synchronize with \l property01. -*/ - property string property02 - - property QtObject __internal: QtObject { - property variant value01 - property variant value02 - - property bool block: false - - onValue01Changed: { - if (__internal.block) - return; - - __internal.block = true; - try { - object.target02[property02] = __internal.value01 - } catch(error) { - } - __internal.block = false; - } - - onValue02Changed: { - if (__internal.block) - return; - - __internal.block = true; - try { - object.target01[property01] = __internal.value02 - } catch(error) { - } - __internal.block = false; - } - } - - property Binding __b01: Binding { - target: __internal - property: "value01" - value: target01[property01] - } - - property Binding __b02: Binding { - target: __internal - property: "value02" - value: target02[property02] - } - - -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml deleted file mode 100644 index 512c414..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/MinMaxMapper.qml +++ /dev/null @@ -1,132 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype MinMaxMapper - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Provides access to values that are out or range. - - The MinMaxMapper type has output values even if the input value is out - of range or too small or big. This enables applying actions to values - even if they are out of range, such as changing a color in a state. - - To access the values of a control, the \l input property of the - minimum-maximum mapper is bound to that of the \c value property - of the control. - - For example, to restrict the maximum value of a slider to 0.60, - regardless of the maximum value set in the slider properties, - we bind the value of the \l input property of the mapper to - the value of the \c value property of the slider and set the value - of the \l maximum property to 0.60. - - The \l outOfRange, \l aboveMaximum and \l belowMinimum properties are set to - \c true if the value of the \l input property is out of range. - For example, in the context of speed, \l aboveMaximum being \c true - would mean \e {too fast}, whereas \l belowMinimum being \c true would - mean \e {too slow}, and \l outOfRange being \c true would mean - \e {either too fast or too slow}. - - Designers can use the Min Max Mapper type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use the MinMaxMapper type to restrict the - maximum value of a \l Slider type to 0.60, regardless of the maximum - value set in the Slider properties: - - \code - Rectangle { - Slider { - id: slider - value: 0.5 - } - MinMaxMapper { - id: minMaxMapper - input: slider.value - maximum: 0.6 - } - } - \endcode -*/ - -QtObject { - id: object - -/*! - The input value. -*/ - property real input: 0 - -/*! - Whether \l input is less than \l minimum. -*/ - property bool belowMinimum: object.input < object.minimum - -/*! - Whether \l input is larger than \l maximum. -*/ - property bool aboveMaximum: object.input > object.maximum - -/*! - Whether \l input is out of range. Returns \c true if \l belowMinimum or - \l aboveMaximum is \c true. -*/ - property bool outOfRange: object.aboveMaximum ||object.belowMinimum - -/*! - The value of \l input. If \l aboveMaximum is \c true, returns the value of - \l maximum. If \l belowMinimum is \c true, returns the value of \l minimum. -*/ - property real output: { - if (object.aboveMaximum) - return object.maximum - - if (object.belowMinimum) - return object.minimum - - return object.input - } - -/*! - The minimum value of \l input. -*/ - property real minimum: 0 - -/*! - The maximum value of \l input. -*/ - property real maximum: 100 -} diff --git a/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml deleted file mode 100644 index 01277eb..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/NotOperator.qml +++ /dev/null @@ -1,85 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype NotOperator - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Evaluates a boolean input value and provides the result as output. - - The NotOperator type evaluates the boolean input \l input. The \l output - value is evaluated as \c true if \l input is evaluated as \c false. - - Designers can use the Not Operator type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use the checked state of a \l CheckBox to - determine the checked state of another one: - - \code - Rectangle { - CheckBox { - id: checkBox1 - text: qsTr("Check Box 1") - checked: false - } - CheckBox { - id: checkBox2 - text: qsTr("Check Box 2") - checked: notOperator.output - } - NotOperator { - id: notOperator - input: checkBox1.checked - } - } - \endcode - - \sa AndOperator, OrOperator -*/ - -QtObject { - id: object - -/*! - The value to evaluate. -*/ - property bool input: false - -/*! - The result of the evaluation. -*/ - property bool output: !object.input -} diff --git a/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml b/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml deleted file mode 100644 index b4f3c5a..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/OrOperator.qml +++ /dev/null @@ -1,98 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype OrOperator - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Evaluates two boolean input values and provides the result as output. - - The OrOperator type evaluates two boolean inputs, \l input01 and \l input02. - The \l output is evaluated as \c true if either \l input01 or \l input02 is - evaluated as \c true. - - Designers can use the Or Operator type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use the checked state of two \l CheckBox - types to determine the checked state of a third one: - - \code - Rectangle { - CheckBox { - id: checkBox1 - text: qsTr("Check Box 1") - checked: false - } - CheckBox { - id: checkBox2 - text: qsTr("Check Box 2") - } - - CheckBox { - id: checkBox3 - text: qsTr("Check Box 3") - checked: orOperator.output - } - - OrOperator { - id: orOperator - input02: checkBox2.checked - input01: checkBox1.checked - } - } - \endcode - - \sa AndOperator, NotOperator -*/ - -QtObject { - id: object - -/*! - The first value to evaluate. -*/ - property bool input01: false - -/*! - The second value to evaluate. -*/ - property bool input02: false - -/*! - The result of the evaluation. -*/ - property bool output: object.input01 || object.input02 -} diff --git a/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc deleted file mode 100644 index 0d6be32..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/QuickStudioLogicHelper_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/LogicHelper - - - diff --git a/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml deleted file mode 100644 index cd9a712..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/RangeMapper.qml +++ /dev/null @@ -1,115 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype RangeMapper - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Maps a numerical range to another range, so that the output value - of the second range follows that of the original range. - - The minimum and maximum input and output values are specified as values of - the \l inputMinimum, \l inputMaximum, \l outputMinimum, and \l outputMaximum properties. - The original value is specified as the value of the \l output property. - - For example, if you map input in the range of \c {-1,1} to output in the - range of \c {0,1000}, and the original value changes from -1 to 1, the - output value will change from 0 to 1000. This is useful when remapping - the current frame on the timeline, for example. - - Designers can use the Range Mapper type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use a RangeMapper type to map the value range - from -1 to 1 that is specified for a \l Slider type to a range from 10 to - 1000: - - \code - Rectangle { - Slider { - id: slider - from: -1 - to: 1 - value: -1 - } - RangeMapper { - id: rangeMapper - outputMinimum: 10 - outputMaximum: 1000 - inputMinimum: slider.from - inputMaximum: slider.to - input: slider.value - } - } - \endcode -*/ - -QtObject { - id: object - -/*! - The input value. -*/ - property real input: 0 - -/*! - The output value. -*/ - property real output: { - var slope = (object.outputMaximum - object.outputMinimum) / (object.inputMaximum - object.inputMinimum) - return object.outputMinimum + slope * (object.input - object.inputMinimum) - } - -/*! - The minimum input value. -*/ - property real inputMinimum: 0 - -/*! - The maximum input value. -*/ - property real inputMaximum: 100 - -/*! - The minimum output value. -*/ - property real outputMinimum: 0 - -/*! - The maximum output value. -*/ - property real outputMaximum: 100 - -} diff --git a/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml b/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml deleted file mode 100644 index a809f14..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/StringMapper.qml +++ /dev/null @@ -1,94 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.10 - -/*! - \qmltype StringMapper - \inqmlmodule QtQuick.Studio.LogicHelper - \since QtQuick.Studio.LogicHelper 1.0 - \inherits QtObject - - \brief Converts numbers to strings with the defined precision. - - The StringMapper type maps numbers to strings. The string mapper - \l input property is bound to the \c value property of a control that - provides the number and the \l text property of the string mapper is - mapped to the \c text property of type that displays the string. - - Designers can use the String Mapper type in \QDS instead of writing - JavaScript expressions. - - \section1 Example Usage - - In the following example, we use \l Text type to display the numerical - value of a \l Slider type as a string: - - \code - Rectangle { - Slider { - id: slider - value: 0.5 - } - Text { - id: text1 - text: stringMapper.text - } - StringMapper { - id: stringMapper - input: slider.value - } - } - \endcode -*/ - -QtObject { - id: object - -/*! - The value to convert to a string. -*/ - property real input: 0 - -/*! - The number of digits after the decimal separator. -*/ - property int decimals: 2 - -/*! - The \l input value as a string. -*/ - property string text: object.input.toFixed(object.decimals) -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ diff --git a/build/qml/QtQuick/Studio/LogicHelper/qmldir b/build/qml/QtQuick/Studio/LogicHelper/qmldir deleted file mode 100644 index 99c024c..0000000 --- a/build/qml/QtQuick/Studio/LogicHelper/qmldir +++ /dev/null @@ -1,22 +0,0 @@ -module QtQuick.Studio.LogicHelper -linktarget QuickStudioLogicHelperplugin -optional plugin QuickStudioLogicHelperplugin -classname QtQuick_Studio_LogicHelperPlugin -designersupported -typeinfo QuickStudioLogicHelper.qmltypes -prefer :/QtQuick/Studio/LogicHelper/ -BidirectionalBinding 6.0 BidirectionalBinding.qml -BidirectionalBinding 1.0 BidirectionalBinding.qml -RangeMapper 6.0 RangeMapper.qml -RangeMapper 1.0 RangeMapper.qml -MinMaxMapper 6.0 MinMaxMapper.qml -MinMaxMapper 1.0 MinMaxMapper.qml -StringMapper 6.0 StringMapper.qml -StringMapper 1.0 StringMapper.qml -OrOperator 6.0 OrOperator.qml -OrOperator 1.0 OrOperator.qml -AndOperator 6.0 AndOperator.qml -AndOperator 1.0 AndOperator.qml -NotOperator 6.0 NotOperator.qml -NotOperator 1.0 NotOperator.qml - diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml deleted file mode 100644 index 785d51c..0000000 --- a/build/qml/QtQuick/Studio/MultiText/MultiTextElement.qml +++ /dev/null @@ -1,100 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQml 2.15 -import QtQuick 2.15 - -Text { - id: root - - property real descent: fontMetrics.descent - property real leading: fontMetrics.leading - property real fontHeight: fontMetrics.height - - property real baselineOffset: -999 - - //lineHeight: root.fontHeight - root.descent + root.baselineOffset - root.leading - - Binding on lineHeight { - when: root.baselineOffset !== -999 - value: root.fontHeight - root.descent + root.baselineOffset - root.leading - } - - onLineHeightChanged: { - print("lh") - print(root.baseLineOffset) - } - - FontMetrics { - id: fontMetrics - font: root.font - } - - lineHeightMode: root.baselineOffset !== -999 ? Text.FixedHeight : Text.ProportionalHeight - - width: visible ? implicitWidth : 0 - height: visible ? implicitHeight : 0 - - - property Text __backupText: Text { - id: backupText - visible: false - } - - property Text languageExceptionItem: backupText - onLanguageExceptionItemChanged: { - if (root.__completed) - root.assignException() - } - - property bool __completed: false - - Component.onCompleted: { - root.__backupText.font = root.font - root.__backupText.text = root.text - root.__backupText.color = root.color - root.__backupText.lineHeight = root.lineHeight - root.__backupText.lineHeightMode = root.lineHeightMode - - root.__completed = true - print("start " + root.languageExceptionItem) - root.assignException() - } - - function assignException() { - print("assign") - print(root.languageExceptionItem) - root.font = root.languageExceptionItem.font - root.text = root.languageExceptionItem.text - root.color = root.languageExceptionItem.color - root.lineHeight = root.languageExceptionItem.lineHeight - root.lineHeightMode = root.languageExceptionItem.lineHeightMode - } - -} diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml deleted file mode 100644 index 7b21fd3..0000000 --- a/build/qml/QtQuick/Studio/MultiText/MultiTextException.qml +++ /dev/null @@ -1,65 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2021 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQml 2.15 -import QtQuick 2.15 - -Text { - id: root - visible: false - - property bool exceptionAcive: Qt.uiLanguage === root.languageCode - - - property string languageCode - onExceptionAciveChanged: { - root.__setup() - } - - Component.onCompleted: root.__setup() - - function __setup() { - var p = parent - if (parent.languageExceptionItem !== undefined) { - if (root.exceptionAcive) { - parent.languageExceptionItem = root - } else { - if (parent.languageExceptionItem === root) - parent.languageExceptionItem = parent.__backupText - } - } - } - -} - -/*##^## -Designer { - D{i:0;autoSize:true;height:19;width:70} -} -##^##*/ diff --git a/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml b/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml deleted file mode 100644 index 444870f..0000000 --- a/build/qml/QtQuick/Studio/MultiText/MultiTextItem.qml +++ /dev/null @@ -1,103 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2018 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Quick Designer Components. -** -** $QT_BEGIN_LICENSE:GPL$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 or (at your option) any later version -** approved by the KDE Free Qt Foundation. The licenses are as published by -** the Free Software Foundation and appearing in the file LICENSE.GPL3 -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick 2.12 -import QtQuick.Layouts 1.3 - -StackLayout { - id: root - width: childrenRect.width - height: childrenRect.height - - - property int maxIndex: { - var ret = 0 - for (var i = 0; i < root.data.length; i++) - { - if (root.data[i].text !== undefined) - ret++ - } - - return ret - - } - - property int stringIndex: 0 - - onStringIndexChanged: { - setupText() - } - - Component.onCompleted: setupText() - - function setupText() { - var textArray = [] - - for (var i = 0; i < root.data.length; i++) - { - if (root.data[i].text !== undefined) - textArray.push(root.data[i].text) - } - - } - - property string textModel: { - var textArray = "" - - for (var i = 0; i < root.data.length; i++) - { - if (root.data[i].text !== undefined) { - if (textArray === "") - textArray = textArray + root.data[i].text - else - textArray = textArray + 'e\u001f' + 'e\u001d' + root.data[i].text - } - } - - return textArray - } - - property string testString: { - - var textArray = "" - - for (var i = 0; i < root.data.length; i++) - { - if (root.data[i].text !== undefined) - textArray = textArray + (root.data[i].text) - } - - return textArray - } - - - - -} - diff --git a/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc b/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc deleted file mode 100644 index b444b6a..0000000 --- a/build/qml/QtQuick/Studio/MultiText/QuickStudioMultiText_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/QtQuick/Studio/MultiText - - - diff --git a/build/qml/QtQuick/Studio/MultiText/qmldir b/build/qml/QtQuick/Studio/MultiText/qmldir deleted file mode 100644 index 2cc848c..0000000 --- a/build/qml/QtQuick/Studio/MultiText/qmldir +++ /dev/null @@ -1,14 +0,0 @@ -module QtQuick.Studio.MultiText -linktarget QuickStudioMultiTextplugin -optional plugin QuickStudioMultiTextplugin -classname QtQuick_Studio_MultiTextPlugin -designersupported -typeinfo QuickStudioMultiText.qmltypes -prefer :/QtQuick/Studio/MultiText/ -MultiTextElement 6.0 MultiTextElement.qml -MultiTextElement 1.0 MultiTextElement.qml -MultiTextItem 6.0 MultiTextItem.qml -MultiTextItem 1.0 MultiTextItem.qml -MultiTextException 6.0 MultiTextException.qml -MultiTextException 1.0 MultiTextException.qml - diff --git a/build/qml/content/App.qml b/build/qml/content/App.qml deleted file mode 100644 index e11cd83..0000000 --- a/build/qml/content/App.qml +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (C) 2021 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import Bolt_Dash -import Backend - -Window { - width: mainScreen.width - height: mainScreen.height - - visible: true - title: "Bolt_Dash" - - Screen01 { - id: mainScreen - } - -} - diff --git a/build/qml/content/BatterySlider.qml b/build/qml/content/BatterySlider.qml deleted file mode 100644 index 4b66f6d..0000000 --- a/build/qml/content/BatterySlider.qml +++ /dev/null @@ -1,38 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -Item { - width: 60 - height: 350 - readonly property string red: "#e80c0c" - readonly property string green: "#09bd0f" - property double fullness: 0.5; - - function integerToHex(num){ - let hexString = Math.floor(num).toString(16); - if (hexString.length === 1){ - hexString = "0" + hexString; - } - return hexString; - } - - Rectangle { - id: enclosing - x: 0 - y: 0 - width: 60 - height: 350 - border.width: 3 - color: `#${integerToHex(254 - (fullness * 245))}${integerToHex(12+(fullness*177))}${integerToHex(13+(fullness*-2))}`; - } - - Rectangle { - id: level - x: 0 - y: 0 - width: 60 - height: 350-(350*fullness) - color: "white" - border.width: 3 - } -} diff --git a/build/qml/content/Screen01.ui.qml b/build/qml/content/Screen01.ui.qml deleted file mode 100644 index a8cdfc9..0000000 --- a/build/qml/content/Screen01.ui.qml +++ /dev/null @@ -1,224 +0,0 @@ - -/* -This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. -It is supposed to be strictly declarative and only uses a subset of QML. If you edit -this file manually, you might introduce QML code that is not supported by Qt Design Studio. -Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. -*/ -import QtQuick 6.2 -import QtQuick.Controls 6.2 -import Bolt_Dash -import Backend - -Rectangle { - id: rectangle - width: Constants.width - height: Constants.height - - color: Constants.backgroundColor - - readonly property int textLabelY: 435 - readonly property int sliderY: 175 - readonly property int valueLabelY: textLabelY+20 - - Speedometer { - id: speedometer - fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM - x: 50 - y: 24 - } - - Backend { - id: backend - motorTemp: 0 - auxVoltage: 0 - auxPercent: 0 - packSOC: 0 - highCellTemp: 0 - lowCellTemp: 0 - bmsTemp: 0 - motorSpeed: 0 - bikeSpeed: 0 - } - - // Remove for production - // Slider { - // id: slider - // x: -274 - // y: 209 - // width: 600 - // height: 48 - // scale: 0.5 - // rotation: -90 - // value: 0.5 - // } - - BatterySlider { - id: packSlider - x: 28 - y: sliderY - scale: 0.5 - fullness: backend.packSOC // Percent to decimal - } - - BatterySlider { - id: auxSlider - x: 98 - y: sliderY - scale: 0.5 - fullness: backend.auxPercent // Percent to decimal - } - - Text { - id: packLabel - x: 36 - y: textLabelY - width: 48 - height: 29 - text: qsTr("PACK") - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: packLabel2 - x: 36 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1\%").arg(Math.round(backend.packSOC * 100)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: auxLabel - x: 104 - y: textLabelY - width: 48 - height: 29 - text: qsTr("AUX") - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - - Text { - id: auxLabel2 - x: 104 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1\%").arg(Math.round(backend.auxPercent * 100)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - TempSlider { - id: packTempSlider - x: 715 - y: sliderY - scale: 0.5 - fullness: (backend.highCellTemp+backend.lowCellTemp) / 200 // Abosulte max of 100C and divide by 2 for avg - } - - Text { - id: packTempLabel - x: 723 - y: textLabelY - width: 48 - height: 29 - text: qsTr("PACK") - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: packTempLabel2 - x: 723 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round((backend.highCellTemp+backend.lowCellTemp) / 2)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - TempSlider { - id: mCTempSlider - x: 644 - y: sliderY - scale: 0.5 - fullness: backend.mcTemp / 100 // Abosulte max of 100C - } - - Text { - id: mcTempLabel - x: 652 - y: textLabelY - width: 48 - height: 29 - text: qsTr("MC") - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: mcTempLabel2 - x: 652 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round(backend.mcTemp)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - TempSlider { - id: motorTempSlider - x: 568 - y: sliderY - scale: 0.5 - fullness: backend.motorTemp / 115 // Abosulte max of 115C - } - - Text { - id: motorTempLabel - x: 572 - y: textLabelY - width: 48 - height: 29 - text: qsTr("MOTOR") - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: motorTempLabel2 - x: 572 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round(backend.motorTemp)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: speedoLabel - x: 263 - y: 105 - width: 274 - height: 160 - text: qsTr(backend.bikeSpeed) - font.pixelSize: 125 - horizontalAlignment: Text.AlignHCenter - font.family: "Nasalization" - } - - WarningSymbol { - id: warningSymbol - x: 626 - y: 127 - } -} diff --git a/build/qml/content/Speedometer.qml b/build/qml/content/Speedometer.qml deleted file mode 100644 index 00506ea..0000000 --- a/build/qml/content/Speedometer.qml +++ /dev/null @@ -1,46 +0,0 @@ -/* -This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. -It is supposed to be strictly declarative and only uses a subset of QML. If you edit -this file manually, you might introduce QML code that is not supported by Qt Design Studio. -Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. -*/ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Shapes 2.15 -import Bolt_Dash 1.0 -import QtQuick.Studio.Components - - -Item { - visible: true - id: container - width: 700 - height: 75 - property double fullness: 0.5; - - Connections { - target: container - onSpeedoPercentChanged: { - curveCanvas.requestPaint(); - } - } - - Rectangle { - id: root - width: parent.width - height: parent.height - radius: 10 - border.color: "#616161" - border.width: 10 - - Rectangle { - id: rectangle - x: 10 - y: 10 - width: 680*fullness - height: 55 - color: "#0c00ff" - } - } -} - diff --git a/build/qml/content/TempSlider.qml b/build/qml/content/TempSlider.qml deleted file mode 100644 index bca903b..0000000 --- a/build/qml/content/TempSlider.qml +++ /dev/null @@ -1,38 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -Item { - width: 60 - height: 350 - readonly property string red: "#e80c0c" - readonly property string green: "#09bd0f" - property double fullness: 0.5; - - function integerToHex(num){ - let hexString = Math.floor(num).toString(16); - if (hexString.length === 1){ - hexString = "0" + hexString; - } - return hexString; - } - - Rectangle { - id: enclosing - x: 0 - y: 0 - width: 60 - height: 350 - border.width: 3 - color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; - } - - Rectangle { - id: level - x: 0 - y: 0 - width: 60 - height: 350-(350*fullness) - color: "white" - border.width: 3 - } -} diff --git a/build/qml/content/WarningSymbol.qml b/build/qml/content/WarningSymbol.qml deleted file mode 100644 index 3cf02f4..0000000 --- a/build/qml/content/WarningSymbol.qml +++ /dev/null @@ -1,19 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -Item { - width: 100 - height: 100 - - Rectangle { - id: rectangle - x: 0 - y: 0 - width: 100 - height: 100 - color: "red" - border.color: "black" - border.width: 7 - radius: 15 - } -} diff --git a/build/qml/content/content_qml_module_dir_map.qrc b/build/qml/content/content_qml_module_dir_map.qrc deleted file mode 100644 index 93093db..0000000 --- a/build/qml/content/content_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/qml/content - - - diff --git a/build/qml/content/fonts/fonts.txt b/build/qml/content/fonts/fonts.txt deleted file mode 100644 index ab96122..0000000 --- a/build/qml/content/fonts/fonts.txt +++ /dev/null @@ -1 +0,0 @@ -Fonts in this folder are loaded automatically. diff --git a/build/qml/content/fonts/nasalization-rg.otf b/build/qml/content/fonts/nasalization-rg.otf deleted file mode 100644 index ce4625f27fd3ea52ecc65b3b52946e8cd9e845d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 89220 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 diff --git a/build/qml/content/qmldir b/build/qml/content/qmldir deleted file mode 100644 index 0541cca..0000000 --- a/build/qml/content/qmldir +++ /dev/null @@ -1,13 +0,0 @@ -module content -linktarget contentplugin -optional plugin contentplugin -classname contentPlugin -typeinfo content.qmltypes -prefer :/content/ -App 1.0 App.qml -Screen01 1.0 Screen01.ui.qml -Speedometer 1.0 Speedometer.qml -BatterySlider 1.0 BatterySlider.qml -TempSlider 1.0 TempSlider.qml -WarningSymbol 1.0 WarningSymbol.qml - diff --git a/build/qmltypes/Bolt_DashApp_foreign_types.txt b/build/qmltypes/Bolt_DashApp_foreign_types.txt deleted file mode 100644 index cd0fd5f..0000000 --- a/build/qmltypes/Bolt_DashApp_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json \ No newline at end of file From 2bc8792dc134515472b28e933e7842f8fc3b2a66 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:12:05 -0400 Subject: [PATCH 020/165] Rounded RPM value --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 5aaed70..d6246eb 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -210,7 +210,7 @@ Rectangle { y: 105 width: 274 height: 160 - text: qsTr("%1RPM").arg(backend.motorSpeed) + text: qsTr("%1RPM").arg(Math.round(backend.motorSpeed)) // font.pixelSize: 125 // For showing speed in mph font.pixelSize: 75 horizontalAlignment: Text.AlignHCenter From eb70aa0693a716ceece1056944e36c51781c5186 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:38:38 -0400 Subject: [PATCH 021/165] Fixed stupid order of operations error that messed up the scaling --- Bolt_Dash/imports/Backend/backend.cpp | 2 +- Bolt_Dash/imports/Backend/can.cpp | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 7c96792..8dbd35c 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -20,7 +20,7 @@ void Backend::updateVars() { setHighCellTemp(data.high_cell_temp / 1000.0); // celsius setLowCellTemp(data.low_cell_temp / 1000.0); // celsius setBmsTemp(data.bms_temperature / 1000.0); // celsius - setMotorSpeed(data.motor_speed / 10.0); // rpm + setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.bike_speed / 100.0); // mph setMcTemp(data.mc_temperature / 1000.0); // celsius m.unlock(); diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 11c5fe5..8d0413b 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -58,24 +58,24 @@ namespace can { data.pack_state_of_charge = frame.data[4]; break; case can_ids.main_pack_temp: - data.high_cell_temp = frame.data[0] + frame.data[1] << 8; - data.low_cell_temp = frame.data[3] + frame.data[4] << 8; + data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); + data.low_cell_temp = frame.data[3] + (frame.data[4] << 8); break; case can_ids.motor_temp: - data.motor_temperature = frame.data[4] + frame.data[5] << 8; + data.motor_temperature = frame.data[4] + (frame.data[5] << 8); break; case can_ids.bms_temp: - data.bms_temperature = frame.data[4] + frame.data[5] << 8; + data.bms_temperature = frame.data[4] + (frame.data[5] << 8); break; case can_ids.rpm: - data.motor_speed = frame.data[2] + frame.data[3] << 8; - data.bike_speed = frame.data[2] + frame.data[3] << 8; + data.motor_speed = frame.data[2] + (frame.data[3] << 8); + data.bike_speed = frame.data[2] + (frame.data[3] << 8); break; case can_ids.speed: - data.bike_speed = frame.data[2] + frame.data[3] << 8; + data.bike_speed = frame.data[2] + (frame.data[3] << 8); break; case can_ids.mc_temp: - data.mc_temperature = frame.data[0] + frame.data[1] << 8; + data.mc_temperature = frame.data[0] + (frame.data[1] << 8); default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { From 812bd18a5301faeca9ba0384b9423efc0b8ef04f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:46:32 -0400 Subject: [PATCH 022/165] Used calcuated bike speed instead of motor speed --- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/imports/Backend/backend.cpp | 21 +++++++++++---------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index d6246eb..b5f3f75 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -210,7 +210,7 @@ Rectangle { y: 105 width: 274 height: 160 - text: qsTr("%1RPM").arg(Math.round(backend.motorSpeed)) + text: qsTr("%1RPM").arg(Math.round(backend.bikeSpeed)) // font.pixelSize: 125 // For showing speed in mph font.pixelSize: 75 horizontalAlignment: Text.AlignHCenter diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 8dbd35c..3932ffc 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -1,5 +1,6 @@ #include "backend.h" #include "can.h" +#include // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, @@ -13,16 +14,16 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 1000.0); // celsius - setAuxVoltage(data.aux_voltage / 10.0); // volts - setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 255.0); // percent - setHighCellTemp(data.high_cell_temp / 1000.0); // celsius - setLowCellTemp(data.low_cell_temp / 1000.0); // celsius - setBmsTemp(data.bms_temperature / 1000.0); // celsius - setMotorSpeed(data.motor_speed); // rpm - setBikeSpeed(data.bike_speed / 100.0); // mph - setMcTemp(data.mc_temperature / 1000.0); // celsius + setMotorTemp(data.motor_temperature / 1000.0); // celsius + setAuxVoltage(data.aux_voltage / 10.0); // volts + setAuxPercent(data.aux_percent / 100.0); // percent + setPackSOC(data.pack_state_of_charge / 255.0); // percent + setHighCellTemp(data.high_cell_temp / 1000.0); // celsius + setLowCellTemp(data.low_cell_temp / 1000.0); // celsius + setBmsTemp(data.bms_temperature / 1000.0); // celsius + setMotorSpeed(data.motor_speed); // rpm + setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI * 1056); // mph + setMcTemp(data.mc_temperature / 1000.0); // celsius m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From 982af1f2e1fab705f79f884849223da38837dff5 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:48:53 -0400 Subject: [PATCH 023/165] Change rpm label to mph --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index b5f3f75..754fc56 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -210,7 +210,7 @@ Rectangle { y: 105 width: 274 height: 160 - text: qsTr("%1RPM").arg(Math.round(backend.bikeSpeed)) + text: qsTr("%1 MPH").arg(Math.round(backend.bikeSpeed)) // font.pixelSize: 125 // For showing speed in mph font.pixelSize: 75 horizontalAlignment: Text.AlignHCenter From bbc93048f77e8f29bcea87056aface057ee67634 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 17:53:17 -0400 Subject: [PATCH 024/165] Left-align speed --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 754fc56..e45a827 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -213,7 +213,7 @@ Rectangle { text: qsTr("%1 MPH").arg(Math.round(backend.bikeSpeed)) // font.pixelSize: 125 // For showing speed in mph font.pixelSize: 75 - horizontalAlignment: Text.AlignHCenter + horizontalAlignment: Text.AlignHLeft font.family: "Nasalization" } From 313fd81c8af62f88ae44d4729363eb9be25e45d9 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 18:07:40 -0400 Subject: [PATCH 025/165] Fixed scaling of everything* --- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/imports/Backend/backend.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index e45a827..08452dd 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -119,7 +119,7 @@ Rectangle { x: 715 y: sliderY scale: 0.5 - fullness: (backend.highCellTemp+backend.lowCellTemp) / 200 // Abosulte max of 100C and divide by 2 for avg + fullness: (backend.highCellTemp) / 100 // Abosulte max of 100C and divide by 2 for avg } Text { diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 3932ffc..31a91df 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -14,13 +14,13 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 1000.0); // celsius + setMotorTemp(data.motor_temperature / 10.0); // celsius setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 255.0); // percent - setHighCellTemp(data.high_cell_temp / 1000.0); // celsius - setLowCellTemp(data.low_cell_temp / 1000.0); // celsius - setBmsTemp(data.bms_temperature / 1000.0); // celsius + setPackSOC(data.pack_state_of_charge / 200.0); // percent + setHighCellTemp(data.high_cell_temp / 100.0); // celsius + setLowCellTemp(data.low_cell_temp / 100.0); // celsius + setBmsTemp(data.bms_temperature / 10.0); // celsius setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI * 1056); // mph setMcTemp(data.mc_temperature / 1000.0); // celsius From 84df610911cacdf94a31e9a80c3b987e61f751ec Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 18:10:56 -0400 Subject: [PATCH 026/165] More changes --- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- Bolt_Dash/imports/Backend/backend.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 08452dd..8f8ae25 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -119,7 +119,7 @@ Rectangle { x: 715 y: sliderY scale: 0.5 - fullness: (backend.highCellTemp) / 100 // Abosulte max of 100C and divide by 2 for avg + fullness: backend.highCellTemp / 100 // Abosulte max of 100C and divide by 2 for avg } Text { @@ -139,7 +139,7 @@ Rectangle { y: valueLabelY width: 48 height: 29 - text: qsTr("%1C").arg(Math.round((backend.highCellTemp+backend.lowCellTemp) / 2)) + text: qsTr("%1C").arg(Math.round(backend.highCellTemp)) font.pixelSize: 20 horizontalAlignment: Text.AlignHCenter } diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 31a91df..2d4f8e9 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -14,16 +14,16 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius + setMotorTemp(data.motor_temperature); // celsius setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent setHighCellTemp(data.high_cell_temp / 100.0); // celsius setLowCellTemp(data.low_cell_temp / 100.0); // celsius - setBmsTemp(data.bms_temperature / 10.0); // celsius + setBmsTemp(data.bms_temperature); // celsius setMotorSpeed(data.motor_speed); // rpm - setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI * 1056); // mph - setMcTemp(data.mc_temperature / 1000.0); // celsius + setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph + setMcTemp(data.mc_temperature); // celsius m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From c9d8d861d58d3050e856cc095206636e37b087a8 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 18:13:34 -0400 Subject: [PATCH 027/165] I love scaling --- Bolt_Dash/imports/Backend/backend.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 2d4f8e9..eb18711 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -14,16 +14,16 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature); // celsius + setMotorTemp(data.motor_temperature / 10.0); // celsius setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent - setHighCellTemp(data.high_cell_temp / 100.0); // celsius - setLowCellTemp(data.low_cell_temp / 100.0); // celsius + setHighCellTemp(data.high_cell_temp / 10.0); // celsius + setLowCellTemp(data.low_cell_temp / 10.0); // celsius setBmsTemp(data.bms_temperature); // celsius setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph - setMcTemp(data.mc_temperature); // celsius + setMcTemp(data.mc_temperature / 10.0); // celsius m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From 7c99a8901edcc59c9c04662561771450df83ce5f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 3 Apr 2024 18:17:44 -0400 Subject: [PATCH 028/165] Fixed pack scaling - again --- Bolt_Dash/imports/Backend/backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index eb18711..ddda91a 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -18,8 +18,8 @@ void Backend::updateVars() { setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent - setHighCellTemp(data.high_cell_temp / 10.0); // celsius - setLowCellTemp(data.low_cell_temp / 10.0); // celsius + setHighCellTemp(data.high_cell_temp); // celsius + setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph From ddc54c5938d247849e719b9e2731bf704492310e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 9 Apr 2024 09:20:18 -0400 Subject: [PATCH 029/165] Removed MPH label for speed --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 8f8ae25..ffb074b 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -210,7 +210,7 @@ Rectangle { y: 105 width: 274 height: 160 - text: qsTr("%1 MPH").arg(Math.round(backend.bikeSpeed)) + text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) // font.pixelSize: 125 // For showing speed in mph font.pixelSize: 75 horizontalAlignment: Text.AlignHLeft From c60a79e9184bf90c5c6bcc6b20783efa2dd6fd49 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 030/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml | 52 ++++++++++++++++++++ Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 ++++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml new file mode 100644 index 0000000..fbb1e7f --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 600 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From 456236b6b106d944ed7893e8d44f1add234406e5 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 031/165] lean angle? --- Bolt_Dash/Bolt_Dash.qmlproject.qtds | 9 ++-- Bolt_Dash/content/BoltLeanAngle.qml | 2 +- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 3 files changed, 5 insertions(+), 58 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/Bolt_Dash.qmlproject.qtds b/Bolt_Dash/Bolt_Dash.qmlproject.qtds index 33a1a2d..45cbc47 100644 --- a/Bolt_Dash/Bolt_Dash.qmlproject.qtds +++ b/Bolt_Dash/Bolt_Dash.qmlproject.qtds @@ -1,10 +1,10 @@ - + EnvironmentId - {b7cca4b8-812e-4762-955b-e8dd1626bdac} + {c7ae7714-a1c9-4a03-bd36-081edc3ce4ad} ProjectExplorer.Project.ActiveTarget @@ -61,8 +61,8 @@ ProjectExplorer.Project.Target.0 Desktop - Desktop Qt 6.5.1 - Desktop Qt 6.5.1 + Desktop Qt 6.5.2 + Desktop Qt 6.5.2 {63f87550-2541-4163-9631-08b7fea781da} -1 0 @@ -95,7 +95,6 @@ true true true - :0 1 diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index fbb1e7f..f6c94d0 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -24,7 +24,7 @@ Item { ArcItem { id: arc1 x: 400 - y: 600 + y: 714 width: 400 height: 400 end: 225 diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From c07e09a2e0afc8396d990807c1cd105cbd85d094 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 15 Apr 2024 15:39:59 -0400 Subject: [PATCH 032/165] Made a debug screen, which is now default --- Bolt_Dash/content/App.qml | 8 +++- Bolt_Dash/content/CMakeLists.txt | 2 + Bolt_Dash/content/Debug1.qml | 30 +++++++++++++++ Bolt_Dash/content/DebugItem1.ui.qml | 57 +++++++++++++++++++++++++++++ 4 files changed, 95 insertions(+), 2 deletions(-) create mode 100644 Bolt_Dash/content/Debug1.qml create mode 100644 Bolt_Dash/content/DebugItem1.ui.qml diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index e11cd83..335c4f7 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -12,8 +12,12 @@ Window { visible: true title: "Bolt_Dash" - Screen01 { - id: mainScreen +// Screen01 { +// id: mainScreen +// } + + Debug1 { + id: debug } } diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 2c38444..48dad3b 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -12,7 +12,9 @@ qt6_add_qml_module(content BatterySlider.qml TempSlider.qml WarningSymbol.qml + Debug1.qml RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf + QML_FILES DebugItem1.ui.qml ) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml new file mode 100644 index 0000000..f6f4140 --- /dev/null +++ b/Bolt_Dash/content/Debug1.qml @@ -0,0 +1,30 @@ +import QtQuick 2.15 +import Backend + +Item { + Backend { + id: backend + motorTemp: 0 + auxVoltage: 0 + auxPercent: 0 + packSOC: 0 + highCellTemp: 0 + lowCellTemp: 0 + bmsTemp: 0 + motorSpeed: 0 + bikeSpeed: 0 + } + + DebugItem1 { + id: debug1 + motorTemp: backend.motorTemp + auxVoltage: backend.auxVoltage + auxPercent: backend.auxPercent + packSOC: backend.packSOC + highCellTemp: backend.highCellTemp + lowCellTemp: backend.lowCellTemp + bmsTemp: backend.bmsTemp + motorSpeed: backend.motorSpeed + bikeSpeed: backend.bikeSpeed + } +} diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml new file mode 100644 index 0000000..2350376 --- /dev/null +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -0,0 +1,57 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double motorTemp: 0.0 + property double auxVoltage: 0.0 + property double auxPercent: 0.0 + property double packSOC: 0.0 + property double highCellTemp: 0.0 + property double lowCellTemp: 0.0 + property double bmsTemp: 0.0 + property double motorSpeed: 0.0 + property double bikeSpeed: 0.0 + + // Using grid layout for organized display + GridLayout { + columns: 2 + columnSpacing: 20 + rowSpacing: 10 + width: parent.width + height: parent.height + + // Labels and dynamic text for each data item, converting double to string for display + Label { text: "Motor Temperature:" } + Text { text: motorTemp.toString() } + + Label { text: "Aux Voltage:" } + Text { text: auxVoltage.toString() } + + Label { text: "Aux Percent:" } + Text { text: auxPercent.toString() } + + Label { text: "Pack State of Charge (SOC):" } + Text { text: packSOC.toString() } + + Label { text: "High Cell Temperature:" } + Text { text: highCellTemp.toString() } + + Label { text: "Low Cell Temperature:" } + Text { text: lowCellTemp.toString() } + + Label { text: "BMS Temperature:" } + Text { text: bmsTemp.toString() } + + Label { text: "Motor Speed:" } + Text { text: motorSpeed.toString() } + + Label { text: "Bike Speed:" } + Text { text: bikeSpeed.toString() } + } +} From 4054781940d55caf74234dbf3bb538dcb5dc9dff Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 033/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index f6c94d0..fbb1e7f 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -24,7 +24,7 @@ Item { ArcItem { id: arc1 x: 400 - y: 714 + y: 600 width: 400 height: 400 end: 225 From 37ee849524e23581e8706f79bcdbfa7ce900ce58 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 034/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index fbb1e7f..f6c94d0 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -24,7 +24,7 @@ Item { ArcItem { id: arc1 x: 400 - y: 600 + y: 714 width: 400 height: 400 end: 225 From 913b6d98a90f3b9bca6df2b52fb60c4450533339 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 15 Apr 2024 17:52:26 -0400 Subject: [PATCH 035/165] Added units to debug screen --- Bolt_Dash/content/DebugItem1.ui.qml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 2350376..495fcf3 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -21,37 +21,37 @@ Item { // Using grid layout for organized display GridLayout { columns: 2 - columnSpacing: 20 + columnSpacing: 10 rowSpacing: 10 width: parent.width height: parent.height // Labels and dynamic text for each data item, converting double to string for display Label { text: "Motor Temperature:" } - Text { text: motorTemp.toString() } + Text { text: qsTr("%1°C").arg(backend.motorTemp) } Label { text: "Aux Voltage:" } - Text { text: auxVoltage.toString() } + Text { text: qsTr("%1V").arg(auxVoltage) } Label { text: "Aux Percent:" } - Text { text: auxPercent.toString() } + Text { text: qsTr("%1\%").arg(auxPercent) } Label { text: "Pack State of Charge (SOC):" } - Text { text: packSOC.toString() } + Text { text: qsTr("%1\%").arg(packSOC) } Label { text: "High Cell Temperature:" } - Text { text: highCellTemp.toString() } + Text { text: qsTr("%1°C").arg(highCellTemp) } Label { text: "Low Cell Temperature:" } - Text { text: lowCellTemp.toString() } + Text { text: qsTr("%1°C").arg(lowCellTemp) } Label { text: "BMS Temperature:" } - Text { text: bmsTemp.toString() } + Text { text: qsTr("%1°C").arg(bmsTemp) } Label { text: "Motor Speed:" } - Text { text: motorSpeed.toString() } + Text { text: qsTr("%1 RPM").arg(motorSpeed) } Label { text: "Bike Speed:" } - Text { text: bikeSpeed.toString() } + Text { text: qsTr("%1 km/h").arg(bikeSpeed) } } } From ad7bb73d2f7a3f843dc5a0f6049f181d167c0be3 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 16 Apr 2024 10:59:48 -0400 Subject: [PATCH 036/165] Change font size for speed to be bigger --- Bolt_Dash/content/Screen01.ui.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index ffb074b..4ebc6e3 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -211,8 +211,7 @@ Rectangle { width: 274 height: 160 text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) - // font.pixelSize: 125 // For showing speed in mph - font.pixelSize: 75 + font.pixelSize: 125 // For showing speed in mph horizontalAlignment: Text.AlignHLeft font.family: "Nasalization" } From 2f73cdf3a3d90c94339b9f18dc94c3bec3cbb736 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 037/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml | 53 ++++++++++++++++++++ Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 +++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index f6c94d0..bbe92b1 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -50,3 +50,56 @@ Item { } } } + +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 600 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From 3c647dd19f5d562f0234195e71039a693865ceca Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 038/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 1 file changed, 52 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From e1d1dabfb68e937c63b8fc9a3dd4af8dec41dd7f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 16 Apr 2024 10:57:08 -0400 Subject: [PATCH 039/165] Changed units of bike speed from km/h to mph --- Bolt_Dash/content/DebugItem1.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 495fcf3..a7bc09c 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -52,6 +52,6 @@ Item { Text { text: qsTr("%1 RPM").arg(motorSpeed) } Label { text: "Bike Speed:" } - Text { text: qsTr("%1 km/h").arg(bikeSpeed) } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } } } From e0e64dcae6e91f5e37905645ccfd18c360504119 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 16 Apr 2024 10:58:41 -0400 Subject: [PATCH 040/165] Do not make debug screen the default --- Bolt_Dash/content/App.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 335c4f7..b260696 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -12,13 +12,13 @@ Window { visible: true title: "Bolt_Dash" -// Screen01 { -// id: mainScreen -// } + Screen01 { + id: mainScreen + } - Debug1 { - id: debug - } + // Debug1 { + // id: debug + // } } From 2e847349dbfae68cedd85e74ee31e5d9a4293f84 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 041/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml | 53 -------------------- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 +++++++++++++++++++ 2 files changed, 52 insertions(+), 53 deletions(-) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index bbe92b1..fbb1e7f 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -10,59 +10,6 @@ Item { - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} - -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - Image { id: image x: 400 diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From d52e17e6a24eaac17111c9f0f2f9f0fdde5fd6aa Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 042/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml | 2 +- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 2 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index fbb1e7f..f6c94d0 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -24,7 +24,7 @@ Item { ArcItem { id: arc1 x: 400 - y: 600 + y: 714 width: 400 height: 400 end: 225 diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From a9cb178b5b59a9444cc56b24813ff60ee21d2834 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 15 Apr 2024 15:39:59 -0400 Subject: [PATCH 043/165] Made a debug screen, which is now default --- Bolt_Dash/content/DebugItem1.ui.qml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index a7bc09c..2350376 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -21,37 +21,37 @@ Item { // Using grid layout for organized display GridLayout { columns: 2 - columnSpacing: 10 + columnSpacing: 20 rowSpacing: 10 width: parent.width height: parent.height // Labels and dynamic text for each data item, converting double to string for display Label { text: "Motor Temperature:" } - Text { text: qsTr("%1°C").arg(backend.motorTemp) } + Text { text: motorTemp.toString() } Label { text: "Aux Voltage:" } - Text { text: qsTr("%1V").arg(auxVoltage) } + Text { text: auxVoltage.toString() } Label { text: "Aux Percent:" } - Text { text: qsTr("%1\%").arg(auxPercent) } + Text { text: auxPercent.toString() } Label { text: "Pack State of Charge (SOC):" } - Text { text: qsTr("%1\%").arg(packSOC) } + Text { text: packSOC.toString() } Label { text: "High Cell Temperature:" } - Text { text: qsTr("%1°C").arg(highCellTemp) } + Text { text: highCellTemp.toString() } Label { text: "Low Cell Temperature:" } - Text { text: qsTr("%1°C").arg(lowCellTemp) } + Text { text: lowCellTemp.toString() } Label { text: "BMS Temperature:" } - Text { text: qsTr("%1°C").arg(bmsTemp) } + Text { text: bmsTemp.toString() } Label { text: "Motor Speed:" } - Text { text: qsTr("%1 RPM").arg(motorSpeed) } + Text { text: motorSpeed.toString() } Label { text: "Bike Speed:" } - Text { text: qsTr("%1 mph").arg(bikeSpeed) } + Text { text: bikeSpeed.toString() } } } From 3be808a9ee0e6ef0e3d5079e3b6905006a2a146d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 15 Apr 2024 17:52:26 -0400 Subject: [PATCH 044/165] Added units to debug screen --- Bolt_Dash/content/DebugItem1.ui.qml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 2350376..495fcf3 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -21,37 +21,37 @@ Item { // Using grid layout for organized display GridLayout { columns: 2 - columnSpacing: 20 + columnSpacing: 10 rowSpacing: 10 width: parent.width height: parent.height // Labels and dynamic text for each data item, converting double to string for display Label { text: "Motor Temperature:" } - Text { text: motorTemp.toString() } + Text { text: qsTr("%1°C").arg(backend.motorTemp) } Label { text: "Aux Voltage:" } - Text { text: auxVoltage.toString() } + Text { text: qsTr("%1V").arg(auxVoltage) } Label { text: "Aux Percent:" } - Text { text: auxPercent.toString() } + Text { text: qsTr("%1\%").arg(auxPercent) } Label { text: "Pack State of Charge (SOC):" } - Text { text: packSOC.toString() } + Text { text: qsTr("%1\%").arg(packSOC) } Label { text: "High Cell Temperature:" } - Text { text: highCellTemp.toString() } + Text { text: qsTr("%1°C").arg(highCellTemp) } Label { text: "Low Cell Temperature:" } - Text { text: lowCellTemp.toString() } + Text { text: qsTr("%1°C").arg(lowCellTemp) } Label { text: "BMS Temperature:" } - Text { text: bmsTemp.toString() } + Text { text: qsTr("%1°C").arg(bmsTemp) } Label { text: "Motor Speed:" } - Text { text: motorSpeed.toString() } + Text { text: qsTr("%1 RPM").arg(motorSpeed) } Label { text: "Bike Speed:" } - Text { text: bikeSpeed.toString() } + Text { text: qsTr("%1 km/h").arg(bikeSpeed) } } } From 25a5092897965d11710579a1f0efa99a1c56a1e2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 16 Apr 2024 10:57:08 -0400 Subject: [PATCH 045/165] Changed units of bike speed from km/h to mph --- Bolt_Dash/content/DebugItem1.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 495fcf3..a7bc09c 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -52,6 +52,6 @@ Item { Text { text: qsTr("%1 RPM").arg(motorSpeed) } Label { text: "Bike Speed:" } - Text { text: qsTr("%1 km/h").arg(bikeSpeed) } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } } } From ac9dd099688ec29c3c87935b3ca5e8cea4c9da30 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:18:44 -0400 Subject: [PATCH 046/165] Added lean angle to main screen --- Bolt_Dash/content/BoltLeanAngle.qml | 14 ++++---------- Bolt_Dash/content/CMakeLists.txt | 1 + Bolt_Dash/content/Screen01.ui.qml | 6 ++++++ 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index f6c94d0..ed3de14 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -4,16 +4,10 @@ import QtQuick.Studio.Components import QtCharts Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - Image { id: image - x: 400 - y: 600 + x: -200 + y: 50 width: 400 height: 400 source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" @@ -23,8 +17,8 @@ Item { ArcItem { id: arc1 - x: 400 - y: 714 + x: -200 + y: 50 width: 400 height: 400 end: 225 diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 48dad3b..45efd13 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -13,6 +13,7 @@ qt6_add_qml_module(content TempSlider.qml WarningSymbol.qml Debug1.qml + BoltLeanAngle.qml RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 4ebc6e3..5b8b09a 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -221,4 +221,10 @@ Rectangle { x: 626 y: 127 } + + BoltLeanAngle { + id: leanAngle + x: Constants.width / 2 + y: Constants.height / 2 + } } From b6bff1b4980444c1ec3398567915224530360edb Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 047/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 ++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From 83ded8428256d040ae1b1f864981f0ec665f3b82 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 048/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 1 file changed, 52 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From b848cb84b4728560988738cc8e2c660b7a14a362 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 17 Apr 2024 16:20:17 -0400 Subject: [PATCH 049/165] lean angle (but it's just the back) --- Bolt_Dash/Bolt_Dash.qmlproject.qtds | 2 +- Bolt_Dash/content/BoltLeanAngle.qml | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/Bolt_Dash/Bolt_Dash.qmlproject.qtds b/Bolt_Dash/Bolt_Dash.qmlproject.qtds index 45cbc47..cd3f037 100644 --- a/Bolt_Dash/Bolt_Dash.qmlproject.qtds +++ b/Bolt_Dash/Bolt_Dash.qmlproject.qtds @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index ed3de14..79acfcb 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -15,32 +15,5 @@ Item { fillMode: image.PreserveAspectFit } - ArcItem { - id: arc1 - x: -200 - y: 50 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } } From 9c258445f96b97ef1927833d67fd43a02dad19c9 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 17 Apr 2024 16:27:06 -0400 Subject: [PATCH 050/165] lean angle back (in file) --- Bolt_Dash/content/BoltLeanAngle.qml | 13 ++++++------- Bolt_Dash/content/Pictures/leanAngleBack.png | Bin 0 -> 55425 bytes 2 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 Bolt_Dash/content/Pictures/leanAngleBack.png diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index 79acfcb..0dd4cbd 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -6,13 +6,12 @@ import QtCharts Item { Image { id: image - x: -200 - y: 50 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit + x: 436 + y: 442 + width: 295 + height: 164 + source: "Pictures\leanAngleBack.png" + fillMode: Image.PreserveAspectFit } diff --git a/Bolt_Dash/content/Pictures/leanAngleBack.png b/Bolt_Dash/content/Pictures/leanAngleBack.png new file mode 100644 index 0000000000000000000000000000000000000000..4be20aed8569d460f64f1f576535d7861bdcbec6 GIT binary patch literal 55425 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 Date: Wed, 17 Apr 2024 16:24:57 -0400 Subject: [PATCH 051/165] Added lean angle to main screen --- Bolt_Dash/content/BoltLeanAngle.qml | 31 +++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index 0dd4cbd..b7419a4 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -6,13 +6,40 @@ import QtCharts Item { Image { id: image - x: 436 - y: 442 + x: -200 + y: 20 width: 295 height: 164 source: "Pictures\leanAngleBack.png" fillMode: Image.PreserveAspectFit } + ArcItem { + id: arc1 + x: -200 + y: 20 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } } From 010f79a3adc9bd0f9939520075b52a08c3a3e6be Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:27:28 -0400 Subject: [PATCH 052/165] Comply with Julia's new lean angle file, me am stoopid --- Bolt_Dash/content/BoltLeanAngle.qml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index b7419a4..cd78a50 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -13,33 +13,4 @@ Item { source: "Pictures\leanAngleBack.png" fillMode: Image.PreserveAspectFit } - - ArcItem { - id: arc1 - x: -200 - y: 20 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } } From 719ee681b294d3b1ea5b8602af98a71efe15d513 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:31:14 -0400 Subject: [PATCH 053/165] Added updated lean angle --- Bolt_Dash/content/BoltLeanAngle.qml | 4 ++-- Bolt_Dash/content/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index cd78a50..ba65f3b 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -6,11 +6,11 @@ import QtCharts Item { Image { id: image - x: -200 + x: -(295/2) y: 20 width: 295 height: 164 - source: "Pictures\leanAngleBack.png" + source: "Pictures/leanAngleBack.png" fillMode: Image.PreserveAspectFit } } diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 45efd13..5e54de5 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -17,5 +17,6 @@ qt6_add_qml_module(content RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf + Pictures/leanAngleBack.png QML_FILES DebugItem1.ui.qml ) From 9dc0c51906f51822be1335a350d26c3ff858fe47 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:48:11 -0400 Subject: [PATCH 054/165] Added ui changes to make stuff more readable --- Bolt_Dash/content/Screen01.ui.qml | 87 +++++++++++-------------------- 1 file changed, 29 insertions(+), 58 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 5b8b09a..a0f8a78 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -41,18 +41,6 @@ Rectangle { bikeSpeed: 0 } - // Remove for production - // Slider { - // id: slider - // x: -274 - // y: 209 - // width: 600 - // height: 48 - // scale: 0.5 - // rotation: -90 - // value: 0.5 - // } - BatterySlider { id: packSlider x: 28 @@ -69,25 +57,28 @@ Rectangle { fullness: backend.auxPercent // Percent to decimal } + // Max battery percentages Text { - id: packLabel x: 36 - y: textLabelY - width: 48 - height: 29 - text: qsTr("PACK") + y: sliderY + 60 + text: qsTr("100%") + font.pixelSize: 20 + } + Text { + x: 106 + y: sliderY + 60 + text: qsTr("100%") font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter } Text { - id: packLabel2 + id: packLabel x: 36 - y: valueLabelY + y: textLabelY width: 48 height: 29 - text: qsTr("%1\%").arg(Math.round(backend.packSOC * 100)) - font.pixelSize: 20 + text: qsTr("PACK") + font.pixelSize: 30 horizontalAlignment: Text.AlignHCenter } @@ -98,22 +89,11 @@ Rectangle { width: 48 height: 29 text: qsTr("AUX") - font.pixelSize: 20 + font.pixelSize: 30 horizontalAlignment: Text.AlignHCenter } - Text { - id: auxLabel2 - x: 104 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1\%").arg(Math.round(backend.auxPercent * 100)) - font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter - } - TempSlider { id: packTempSlider x: 715 @@ -129,19 +109,16 @@ Rectangle { width: 48 height: 29 text: qsTr("PACK") - font.pixelSize: 20 + font.pixelSize: 30 horizontalAlignment: Text.AlignHCenter } + // Pack max temp label Text { - id: packTempLabel2 - x: 723 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round(backend.highCellTemp)) + x: packTempLabel.x + y: sliderY + 60 + text: qsTr("100°C") font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter } TempSlider { @@ -159,19 +136,16 @@ Rectangle { width: 48 height: 29 text: qsTr("MC") - font.pixelSize: 20 + font.pixelSize: 30 horizontalAlignment: Text.AlignHCenter } + // MC max temp label Text { - id: mcTempLabel2 - x: 652 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round(backend.mcTemp)) + x: mcTempLabel.x + y: sliderY + 60 + text: qsTr("100°C") font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter } TempSlider { @@ -189,19 +163,16 @@ Rectangle { width: 48 height: 29 text: qsTr("MOTOR") - font.pixelSize: 20 + font.pixelSize: 30 horizontalAlignment: Text.AlignHCenter } + // Motor max temp label Text { - id: motorTempLabel2 - x: 572 - y: valueLabelY - width: 48 - height: 29 - text: qsTr("%1C").arg(Math.round(backend.motorTemp)) + x: motorTempLabel.x + y: sliderY + 60 + text: qsTr("115°C") font.pixelSize: 20 - horizontalAlignment: Text.AlignHCenter } Text { From b89036f25968e91526572fbe5b7c56ca8729f9d2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:53:59 -0400 Subject: [PATCH 055/165] Lower label text size a bit to differentiate between different labels --- Bolt_Dash/content/Screen01.ui.qml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index a0f8a78..f845f8f 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -20,6 +20,7 @@ Rectangle { readonly property int textLabelY: 435 readonly property int sliderY: 175 readonly property int valueLabelY: textLabelY+20 + readonly property int labelTextSize: 27 Speedometer { id: speedometer @@ -78,7 +79,7 @@ Rectangle { width: 48 height: 29 text: qsTr("PACK") - font.pixelSize: 30 + font.pixelSize: labelTextSize horizontalAlignment: Text.AlignHCenter } @@ -89,7 +90,7 @@ Rectangle { width: 48 height: 29 text: qsTr("AUX") - font.pixelSize: 30 + font.pixelSize: labelTextSize horizontalAlignment: Text.AlignHCenter } @@ -109,7 +110,7 @@ Rectangle { width: 48 height: 29 text: qsTr("PACK") - font.pixelSize: 30 + font.pixelSize: labelTextSize horizontalAlignment: Text.AlignHCenter } @@ -136,7 +137,7 @@ Rectangle { width: 48 height: 29 text: qsTr("MC") - font.pixelSize: 30 + font.pixelSize: labelTextSize horizontalAlignment: Text.AlignHCenter } @@ -163,7 +164,7 @@ Rectangle { width: 48 height: 29 text: qsTr("MOTOR") - font.pixelSize: 30 + font.pixelSize: labelTextSize horizontalAlignment: Text.AlignHCenter } From 79ade24b109a754c8395e3ec9173c754355d4314 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 16:59:01 -0400 Subject: [PATCH 056/165] Made text even smaller --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index f845f8f..66bd0ec 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -20,7 +20,7 @@ Rectangle { readonly property int textLabelY: 435 readonly property int sliderY: 175 readonly property int valueLabelY: textLabelY+20 - readonly property int labelTextSize: 27 + readonly property int labelTextSize: 25 Speedometer { id: speedometer From 5032ce7f093b548763d5266d09ca047402850fa3 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 057/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 ++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From 1bf28c2605a224fc56c24c4eeccfef23041c6969 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 058/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 1 file changed, 52 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From 433e8492d5835dee8213893de609aa39c0dcb36d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 20:21:14 -0400 Subject: [PATCH 059/165] Added framework for IO --- Bolt_Dash/content/App.qml | 1 + Bolt_Dash/imports/CMakeLists.txt | 1 + Bolt_Dash/imports/IO/CMakeLists.txt | 14 ++++++++++++ Bolt_Dash/imports/IO/io.cpp | 34 +++++++++++++++++++++++++++++ Bolt_Dash/imports/IO/io.h | 31 ++++++++++++++++++++++++++ 5 files changed, 81 insertions(+) create mode 100644 Bolt_Dash/imports/IO/CMakeLists.txt create mode 100644 Bolt_Dash/imports/IO/io.cpp create mode 100644 Bolt_Dash/imports/IO/io.h diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index b260696..4ddf4c8 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -4,6 +4,7 @@ import QtQuick 6.2 import Bolt_Dash import Backend +import IO Window { width: mainScreen.width diff --git a/Bolt_Dash/imports/CMakeLists.txt b/Bolt_Dash/imports/CMakeLists.txt index c316009..43c175f 100644 --- a/Bolt_Dash/imports/CMakeLists.txt +++ b/Bolt_Dash/imports/CMakeLists.txt @@ -3,3 +3,4 @@ add_subdirectory(Bolt_Dash) add_subdirectory(Backend) +add_subdirectory(IO) diff --git a/Bolt_Dash/imports/IO/CMakeLists.txt b/Bolt_Dash/imports/IO/CMakeLists.txt new file mode 100644 index 0000000..4ebb303 --- /dev/null +++ b/Bolt_Dash/imports/IO/CMakeLists.txt @@ -0,0 +1,14 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt_add_library(IO STATIC) + +qt6_add_qml_module(IOPlugin + URI "IO" + VERSION 1.0 + SOURCES + io.h + io.cpp + RESOURCE_PREFIX "/" +) + diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp new file mode 100644 index 0000000..8fb0ab4 --- /dev/null +++ b/Bolt_Dash/imports/IO/io.cpp @@ -0,0 +1,34 @@ +#include "io.h" +#include + +// Create IO class which can be included in QML +IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { + std::thread update_vars(&IO::updateVars, this); + update_vars.detach(); +} + +// Calls the set functions with the values from data +void IO::updateVars() { + while (true) { + // Debug Message + m_buttonStatus = gpioRead(MENU_BUTTON); + std::cout << "Button: " << buttonStatus() << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + } +} + +// Functions to get variable values +bool IO::buttonStatus() const { + return m_buttonStatus; +} + +// Setter Functions +void IO::setButtonStatus(const bool status) { + if (m_buttonStatus != status) { + m_buttonStatus = status; + emit buttonStatusChanged(); + if (m_buttonStatus == PRESSED) { + emit buttonTapped(); + } + } +} diff --git a/Bolt_Dash/imports/IO/io.h b/Bolt_Dash/imports/IO/io.h new file mode 100644 index 0000000..fded36e --- /dev/null +++ b/Bolt_Dash/imports/IO/io.h @@ -0,0 +1,31 @@ +#ifndef IO_H +#define IO_H +#define PRESSED 0 +#define MENU_BUTTON 26 + +#include +#include +#include +#include +#include +#include + +class IO : public QObject { + Q_OBJECT + QML_ELEMENT + Q_PROPERTY(bool m_buttonStatus READ buttonStatus WRITE setButtonStatus NOTIFY buttonStatusChanged); + +public: + explicit IO(QObject *parent = nullptr); + bool buttonStatus(); + +signals: + void buttonStatusChanged(); + void buttonTapped(); + +private: + void updateVars(); + bool m_buttonStatus; +}; + +#endif // IO_H From a25c8ed712ad4bc39bacee4d189f9ef5bcdcca21 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 20:26:20 -0400 Subject: [PATCH 060/165] Added setButtonStatus to class definition --- Bolt_Dash/imports/IO/io.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Bolt_Dash/imports/IO/io.h b/Bolt_Dash/imports/IO/io.h index fded36e..67a3a87 100644 --- a/Bolt_Dash/imports/IO/io.h +++ b/Bolt_Dash/imports/IO/io.h @@ -18,6 +18,7 @@ class IO : public QObject { public: explicit IO(QObject *parent = nullptr); bool buttonStatus(); + void setButtonStatus(); signals: void buttonStatusChanged(); From 17a7cf33cee49ceec5f42a03a0d34446827cc915 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 20:30:00 -0400 Subject: [PATCH 061/165] Added arg to setButtonStatus func --- Bolt_Dash/imports/IO/io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/IO/io.h b/Bolt_Dash/imports/IO/io.h index 67a3a87..ded6ec6 100644 --- a/Bolt_Dash/imports/IO/io.h +++ b/Bolt_Dash/imports/IO/io.h @@ -18,7 +18,7 @@ class IO : public QObject { public: explicit IO(QObject *parent = nullptr); bool buttonStatus(); - void setButtonStatus(); + void setButtonStatus(bool status); signals: void buttonStatusChanged(); From 80061ec466095eb7a3a10c3118250aa03a4d0140 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 20:51:06 -0400 Subject: [PATCH 062/165] Force pigpio to work --- Bolt_Dash/CMakeLists.txt | 1 + Bolt_Dash/content/App.qml | 3 +++ Bolt_Dash/imports/IO/io.cpp | 1 + Bolt_Dash/imports/IO/io.h | 2 +- 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index ce4a7f5..b522e7a 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -26,6 +26,7 @@ target_link_libraries(Bolt_DashApp PRIVATE Qt6::Gui Qt6::Qml Qt6::Quick + pigpio ) if (BUILD_QDS_COMPONENTS) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 4ddf4c8..c478676 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -21,5 +21,8 @@ Window { // id: debug // } + IO { + id: io + } } diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index 8fb0ab4..3222202 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -3,6 +3,7 @@ // Create IO class which can be included in QML IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { + gpioInitialise(); std::thread update_vars(&IO::updateVars, this); update_vars.detach(); } diff --git a/Bolt_Dash/imports/IO/io.h b/Bolt_Dash/imports/IO/io.h index ded6ec6..07c69c9 100644 --- a/Bolt_Dash/imports/IO/io.h +++ b/Bolt_Dash/imports/IO/io.h @@ -17,7 +17,7 @@ class IO : public QObject { public: explicit IO(QObject *parent = nullptr); - bool buttonStatus(); + bool buttonStatus() const; void setButtonStatus(bool status); signals: From 8d8c49a7ef2f732a668c23e50617b6d394813480 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 21:00:41 -0400 Subject: [PATCH 063/165] Pigpio finally working --- Bolt_Dash/imports/IO/io.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index 3222202..b8b6d29 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -3,13 +3,19 @@ // Create IO class which can be included in QML IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { - gpioInitialise(); std::thread update_vars(&IO::updateVars, this); update_vars.detach(); } // Calls the set functions with the values from data void IO::updateVars() { + if (gpio_Initizalise() == PI_INIT_FAILED) { + std::cout << "ERROR: Failed to init pigpio" << std::endl; + return; + } + gpioSetMode(MENU_BUTTON, PI_INPUT); + gpioSetPullUpDown(MENU_BUTTON, PI_PUD_UP); + while (true) { // Debug Message m_buttonStatus = gpioRead(MENU_BUTTON); From af775509b329efc1c30c989e1ba5a09fb85fb0c3 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 21:12:00 -0400 Subject: [PATCH 064/165] Start using gpio to switch screens --- Bolt_Dash/content/App.qml | 13 ++++++++++--- Bolt_Dash/imports/IO/io.cpp | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index c478676..42de958 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -9,6 +9,8 @@ import IO Window { width: mainScreen.width height: mainScreen.height + property bool debugMode: false + visible: true title: "Bolt_Dash" @@ -17,12 +19,17 @@ Window { id: mainScreen } - // Debug1 { - // id: debug - // } + Debug1 { + id: debug + visible: debugMode + } IO { id: io + + onButtonTapped: { + debugMode = !debugMode + } } } diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index b8b6d29..df619ee 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -18,7 +18,7 @@ void IO::updateVars() { while (true) { // Debug Message - m_buttonStatus = gpioRead(MENU_BUTTON); + setButtonStatus(gpioRead(MENU_BUTTON)); std::cout << "Button: " << buttonStatus() << std::endl; std::this_thread::sleep_for(std::chrono::milliseconds(100)); } From 57742ed14c28554c23490fbcd9fa78631f3cfef9 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 22:04:10 -0400 Subject: [PATCH 065/165] Yee haw --- Bolt_Dash/content/App.qml | 1 + Bolt_Dash/imports/IO/io.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 42de958..112fa4f 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -17,6 +17,7 @@ Window { Screen01 { id: mainScreen + visible: !debugMode } Debug1 { diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index df619ee..9afd9b2 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -9,7 +9,7 @@ IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { // Calls the set functions with the values from data void IO::updateVars() { - if (gpio_Initizalise() == PI_INIT_FAILED) { + if (gpioInitialise() == PI_INIT_FAILED) { std::cout << "ERROR: Failed to init pigpio" << std::endl; return; } From 137fd864a55afd28304a4e7a8943228406e639c6 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 10 Apr 2024 20:53:33 -0400 Subject: [PATCH 066/165] start of lean angle --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 ++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..f6c94d0 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,52 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts + +Item { + width: 1920 + height: 1080 + property TextureInput background: null + + + + Image { + id: image + x: 400 + y: 600 + width: 400 + height: 400 + source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" + clip: true + fillMode: image.PreserveAspectFit + } + + ArcItem { + id: arc1 + x: 400 + y: 714 + width: 400 + height: 400 + end: 225 + begin: 135 + layer.enabled: false + clip: false + strokeColor: "#007550" + roundEnd: false + roundBegin: false + strokeStyle: 1 + strokeWidth: 75 + rotation: 180 + fillColor: "#00000000" + + Rectangle { + id: rectangle + x: 198 + y: 275 + width: 5 + height: 125 + color: "#000000" + rotation: 0 + } + } +} From 78a576be6bcab82e7c836aa14837366341b88dff Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Mon, 15 Apr 2024 10:37:01 -0400 Subject: [PATCH 067/165] lean angle? --- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 52 -------------------- 1 file changed, 52 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index f6c94d0..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts - -Item { - width: 1920 - height: 1080 - property TextureInput background: null - - - - Image { - id: image - x: 400 - y: 600 - width: 400 - height: 400 - source: "../../../OneDrive - Virginia Tech/Pictures/Screenshots/Screenshot 2024-04-10 190810.png" - clip: true - fillMode: image.PreserveAspectFit - } - - ArcItem { - id: arc1 - x: 400 - y: 714 - width: 400 - height: 400 - end: 225 - begin: 135 - layer.enabled: false - clip: false - strokeColor: "#007550" - roundEnd: false - roundBegin: false - strokeStyle: 1 - strokeWidth: 75 - rotation: 180 - fillColor: "#00000000" - - Rectangle { - id: rectangle - x: 198 - y: 275 - width: 5 - height: 125 - color: "#000000" - rotation: 0 - } - } -} From e2a37df390d0b72e5ffcbbb258aabe639d9ae83f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 20:51:06 -0400 Subject: [PATCH 068/165] Force pigpio to work --- Bolt_Dash/imports/IO/io.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index 9afd9b2..e9707d3 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -3,6 +3,7 @@ // Create IO class which can be included in QML IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { + gpioInitialise(); std::thread update_vars(&IO::updateVars, this); update_vars.detach(); } From a5e72bca0ee27fe64130a77b2dcbc4d7be982d71 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 17 Apr 2024 21:00:41 -0400 Subject: [PATCH 069/165] Pigpio finally working --- Bolt_Dash/imports/IO/io.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index e9707d3..9afd9b2 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -3,7 +3,6 @@ // Create IO class which can be included in QML IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { - gpioInitialise(); std::thread update_vars(&IO::updateVars, this); update_vars.detach(); } From 4f10ca90a00b1a1e8c7eeffd451e66b4afbc8bb5 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 22 Apr 2024 15:33:37 -0400 Subject: [PATCH 070/165] Fix percentage formatting on debug screen --- Bolt_Dash/content/DebugItem1.ui.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index a7bc09c..521fe7b 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -34,10 +34,10 @@ Item { Text { text: qsTr("%1V").arg(auxVoltage) } Label { text: "Aux Percent:" } - Text { text: qsTr("%1\%").arg(auxPercent) } + Text { text: qsTr("%1\%").arg(auxPercent*100) } Label { text: "Pack State of Charge (SOC):" } - Text { text: qsTr("%1\%").arg(packSOC) } + Text { text: qsTr("%1\%").arg(packSOC*100) } Label { text: "High Cell Temperature:" } Text { text: qsTr("%1°C").arg(highCellTemp) } From cbce8271bed76b14b84c39e5dabb8e8cbdb8492e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 23 Apr 2024 18:49:32 -0400 Subject: [PATCH 071/165] Hee hee hee ha --- Bolt_Dash/content/Screen01.ui.qml | 49 ++++++++++++++------------- Bolt_Dash/imports/Backend/backend.cpp | 5 +++ Bolt_Dash/imports/Backend/backend.h | 5 +++ Bolt_Dash/imports/Backend/can.cpp | 3 +- Bolt_Dash/imports/Backend/can.h | 3 ++ 5 files changed, 41 insertions(+), 24 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 66bd0ec..898ae9a 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -17,10 +17,11 @@ Rectangle { color: Constants.backgroundColor - readonly property int textLabelY: 435 - readonly property int sliderY: 175 - readonly property int valueLabelY: textLabelY+20 + readonly property int sliderY: 160 + readonly property int textLabelY: sliderY + 260 + readonly property int valueLabelY: textLabelY+25 readonly property int labelTextSize: 25 + readonly property int valueLabelTextSize: 20 Speedometer { id: speedometer @@ -60,16 +61,18 @@ Rectangle { // Max battery percentages Text { - x: 36 - y: sliderY + 60 - text: qsTr("100%") - font.pixelSize: 20 + x: packSlider.x + (packSlider.width/4) + y: valueLabelY + text: qsTr("%1\%").arg(backend.packSOC) + horizontalAlignment: Text.AlignHCenter + font.pixelSize: valueLabelTextSize } Text { - x: 106 - y: sliderY + 60 - text: qsTr("100%") - font.pixelSize: 20 + x: auxSlider.x + (auxSlider.width/4) + y: valueLabelY + text: qsTr("%1\%").arg(backend.auxPercent) + horizontalAlignment: Text.AlignHCenter + font.pixelSize: valueLabelTextSize } Text { @@ -116,10 +119,10 @@ Rectangle { // Pack max temp label Text { - x: packTempLabel.x - y: sliderY + 60 - text: qsTr("100°C") - font.pixelSize: 20 + x: packTempSlider.x + (packTempSlider.width/4) + y: valueLabelY + text: qsTr("%1°C").arg(backend.highCellTemp) + font.pixelSize: valueLabelTextSize } TempSlider { @@ -143,10 +146,10 @@ Rectangle { // MC max temp label Text { - x: mcTempLabel.x - y: sliderY + 60 - text: qsTr("100°C") - font.pixelSize: 20 + x: mCTempSlider.x + (mCTempSlider.width/4) + y: valueLabelY + text: qsTr("%1°C").arg(backend.mcTemp) + font.pixelSize: valueLabelTextSize } TempSlider { @@ -170,10 +173,10 @@ Rectangle { // Motor max temp label Text { - x: motorTempLabel.x - y: sliderY + 60 - text: qsTr("115°C") - font.pixelSize: 20 + x: motorTempSlider.x + (motorTempSlider.width/4) + y: valueLabelY + text: qsTr("%1°C").arg(backend.motorTemp) + font.pixelSize: valueLabelTextSize } Text { diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index ddda91a..c549049 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -24,6 +24,7 @@ void Backend::updateVars() { setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph setMcTemp(data.mc_temperature / 10.0); // celsius + setBmsFault(data.bms_error); m.unlock(); // Debug Message std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; @@ -72,6 +73,10 @@ double Backend::bikeSpeed() const { double Backend::mcTemp() const { return m_mcTemp; } + +bool Backend::bmsFault() const { + return m_bmsFault; +} // } // Setter Functions diff --git a/Bolt_Dash/imports/Backend/backend.h b/Bolt_Dash/imports/Backend/backend.h index fd9bd7b..d5e96ed 100644 --- a/Bolt_Dash/imports/Backend/backend.h +++ b/Bolt_Dash/imports/Backend/backend.h @@ -21,6 +21,7 @@ class Backend : public QObject { Q_PROPERTY(double motorSpeed READ motorSpeed WRITE setMotorSpeed NOTIFY motorSpeedChanged); Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); + Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); public: explicit Backend(QObject *parent = nullptr); @@ -34,6 +35,7 @@ class Backend : public QObject { double motorSpeed() const; double bikeSpeed() const; double mcTemp() const; + bool bmsFault() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -45,6 +47,7 @@ class Backend : public QObject { void setMotorSpeed(const double speed); void setBikeSpeed(const double speed); void setMcTemp(const double temp); + void setBmsFault(const bool fault); signals: void motorTempChanged(); @@ -57,6 +60,7 @@ class Backend : public QObject { void motorSpeedChanged(); void bikeSpeedChanged(); void mcTempChanged(); + void bmsFaultChanged(); private: void updateVars(); @@ -70,6 +74,7 @@ class Backend : public QObject { double m_motorSpeed; double m_bikeSpeed; double m_mcTemp; + bool m_bmsFault; }; #endif // BACKEND_H diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 8d0413b..86bf4d8 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -54,8 +54,9 @@ namespace can { data.aux_voltage = frame.data[0] + (frame.data[1] << 8); data.aux_percent = data.aux_voltage / 2.5; break; - case can_ids.main_battery: + case can_ids.info_1: data.pack_state_of_charge = frame.data[4]; + data.bms_error = frame.data[5] & BMS_FAULT_MASK; break; case can_ids.main_pack_temp: data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index fdfc49c..9da4bc0 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -17,6 +17,8 @@ #include #include +#define BMS_FAULT_MASK 0b0010000 + struct our_candata { uint8_t aux_voltage{}; uint8_t aux_percent{}; @@ -28,6 +30,7 @@ struct our_candata { uint16_t mc_temperature{}; int16_t motor_speed{}; int16_t bike_speed{}; + uint8_t bms_error{}; }; // ID's for each CAN thing From 596798eb2fd88ef7c522557c73cb673e95ce46d3 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 23 Apr 2024 19:00:07 -0400 Subject: [PATCH 072/165] Fixed all god's merge conflicts --- Bolt_Dash/imports/Backend/backend.cpp | 7 +++++++ Bolt_Dash/imports/Backend/can.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index c549049..e5c4cf0 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -150,6 +150,13 @@ void Backend::setMcTemp(const double temp) { emit mcTempChanged(); } } + +void Backend::setBmsFault(const bool fault) { + if (m_bmsFault != fault) { + m_bmsFault = fault; + emit bmsFaultChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index 9da4bc0..d03aac1 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -36,7 +36,7 @@ struct our_candata { // ID's for each CAN thing constexpr struct { canid_t aux_battery{0x700}; - canid_t main_battery{0x6B0}; + canid_t info_1{0x6B0}; canid_t main_pack_temp{0x6B4}; canid_t motor_temp{0xA2}; canid_t bms_temp{0x6B1}; From 9f8fa482e2a646c760ee7e6de1a80c1708fbe9b1 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 23 Apr 2024 19:03:19 -0400 Subject: [PATCH 073/165] Removed warning square and change whole bg if there is a bms fault --- Bolt_Dash/content/CMakeLists.txt | 1 - Bolt_Dash/content/Screen01.ui.qml | 8 +------- Bolt_Dash/content/WarningSymbol.qml | 19 ------------------- Bolt_Dash/imports/Bolt_Dash/Constants.qml | 1 + 4 files changed, 2 insertions(+), 27 deletions(-) delete mode 100644 Bolt_Dash/content/WarningSymbol.qml diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 5e54de5..1a92336 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -11,7 +11,6 @@ qt6_add_qml_module(content Speedometer.qml BatterySlider.qml TempSlider.qml - WarningSymbol.qml Debug1.qml BoltLeanAngle.qml RESOURCES diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 898ae9a..c8851a7 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -15,7 +15,7 @@ Rectangle { width: Constants.width height: Constants.height - color: Constants.backgroundColor + color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor readonly property int sliderY: 160 readonly property int textLabelY: sliderY + 260 @@ -191,12 +191,6 @@ Rectangle { font.family: "Nasalization" } - WarningSymbol { - id: warningSymbol - x: 626 - y: 127 - } - BoltLeanAngle { id: leanAngle x: Constants.width / 2 diff --git a/Bolt_Dash/content/WarningSymbol.qml b/Bolt_Dash/content/WarningSymbol.qml deleted file mode 100644 index 3cf02f4..0000000 --- a/Bolt_Dash/content/WarningSymbol.qml +++ /dev/null @@ -1,19 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -Item { - width: 100 - height: 100 - - Rectangle { - id: rectangle - x: 0 - y: 0 - width: 100 - height: 100 - color: "red" - border.color: "black" - border.width: 7 - radius: 15 - } -} diff --git a/Bolt_Dash/imports/Bolt_Dash/Constants.qml b/Bolt_Dash/imports/Bolt_Dash/Constants.qml index cb27244..779cc70 100644 --- a/Bolt_Dash/imports/Bolt_Dash/Constants.qml +++ b/Bolt_Dash/imports/Bolt_Dash/Constants.qml @@ -19,6 +19,7 @@ QtObject { }) readonly property color backgroundColor: "#c2c2c2" + readonly property color errColor: "#ff0000" property StudioApplication application: StudioApplication { From 829aee06358ceb2d322d2e565560332b74127f54 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Tue, 23 Apr 2024 20:16:23 -0400 Subject: [PATCH 074/165] Fixed some formatting --- Bolt_Dash/content/BikeStatus.qml | 64 ++++++++++++++++++ Bolt_Dash/content/CMakeLists.txt | 2 + Bolt_Dash/content/Pictures/motorcycleIcon.png | Bin 0 -> 19552 bytes Bolt_Dash/content/Screen01.ui.qml | 11 ++- Bolt_Dash/content/Speedometer.qml | 7 -- Bolt_Dash/imports/Backend/backend.cpp | 2 +- 6 files changed, 76 insertions(+), 10 deletions(-) create mode 100644 Bolt_Dash/content/BikeStatus.qml create mode 100644 Bolt_Dash/content/Pictures/motorcycleIcon.png diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml new file mode 100644 index 0000000..468d862 --- /dev/null +++ b/Bolt_Dash/content/BikeStatus.qml @@ -0,0 +1,64 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Shapes + +Item { + property int status: BikeStatus.Status.STANDBY + + enum Status { + STANDBY, + ACCESSORY, + CHECKING, + FAULT, + READY, + DRIVE + } + + Rectangle { + id: rect + anchors.centerIn: parent + width: 250 + height: 75 + radius: 15 + color: { + switch(status) { + case BikeStatus.Status.STANDBY: + return "#212121" + case BikeStatus.Status.ACCESSORY: + return "#212121" + case BikeStatus.Status.CHECKING: + return "#212121" + case BikeStatus.Status.FAULT: + return "red" + case BikeStatus.Status.READY: + return "#212121" + case BikeStatus.Status.DRIVE: + return "green" + } + } + + Text { + anchors.centerIn: parent + text: { + switch (status) { + case BikeStatus.Status.STANDBY: + return "STANDBY" + case BikeStatus.Status.ACCESSORY: + return "ACCESSORY" + case BikeStatus.Status.CHECKING: + return "CHECKING" + case BikeStatus.Status.FAULT: + return "FAULT" + case BikeStatus.Status.READY: + return "READY" + case BikeStatus.Status.DRIVE: + return "DRIVE" + } + } + color: "white" + font.bold: true + bottomPadding: 10 + font.pixelSize: 55 + } + } +} \ No newline at end of file diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 1a92336..99d79aa 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -13,9 +13,11 @@ qt6_add_qml_module(content TempSlider.qml Debug1.qml BoltLeanAngle.qml + BikeStatus.qml RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf Pictures/leanAngleBack.png + Pictures/motorcycleIcon.png QML_FILES DebugItem1.ui.qml ) diff --git a/Bolt_Dash/content/Pictures/motorcycleIcon.png b/Bolt_Dash/content/Pictures/motorcycleIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..5a3a0046d5692b20ddb8eb896f105c259640fd2d GIT binary patch literal 19552 zcmXt9Wmr_v)<(J;rD5pqlpeZMy1Q#Yx?8%tyQEV>KsrT0>F(~v?|AS1e$2y;wcoY& z-tUTYhKW*9l14)&M23QbLX(w|P=kVkA%}v3jzok7MkvHI=YT&*&N4a>C@2)1f1h_y zSvmN?AhfBxv;@@Oi1>+KC@2M3SqU)>&!y8`uYym%J`9VTcdyyyN!zGUFhr>piB*P< zB%oT*K|&H#=p_l{KxVj!3Sm^7^eI&4BPm>kUU|dM&y@azYeM%cKGVY6_t&p&YrS*-BM>Qnv*FHOq%?{U&_e0e_T^O`Fc z)Hz}Ug+_i%J@}sdGII7hD@Ac?`tJOa&A?j8i(@VpjEIHD!Ix!+KVDQaD<#Oh&HVH; zE9poZ6pF~o-@L`1#+Ss0zJP&RNWgz&2@K*$c0{IYJJGqHRL3gpAR||fhhb72m_t~c z8V17V8tQm1nG~CaDMB&DcImMF;sgQxR4nfIPb+XNQKbF{~x1<8~7 zaI454fe|@Eglc4AZi*l%~Ge!;(G@%{>2LhngBhN6fz=*|M<_3uW7UMKm zY5}vVzf+0ey46Gow1JLF_B=?5jNP<3H8Bjc-z&~ias&{Kt(s>H#Z*$y>=n-!zB3G} zRtEuU$R8hRun#GvV%Ry_Fu{D1@Y9ksem^2z$`n{aF{fsP)D9_!jH=?Pft52Exmfb# z?0Jccz)cu@2`$)iWcX-M_5mDu zbOZvup#;Qoj9f%4aAZnle_SMOf)Ft!FD5v0$BSj_-; z?CVXlJ{S>nk}yaCbedDuT!AZ=nb46VK&Xsg0cNl{4Us6*8Os`X@xh2DivB$GCObvZ zyM$oGLZljvn=pNGL{N>F<|sv6TnYrR!}qFQu96}SeoQD7lR{WAm2T_E>AUnW;AGnU!swN^TQM9rT0Gz!7i-grvTYdLTEFUtU>6Hlu~~xiN^Jp%0m*fdw%1 z+2l5Yk{G&b!l&DAeM;o4qd3!9C$Npu;|E|w7jir_n%E1f1bo`DPr$Jg1?P!=O-2gC1S3)534w5sL7~_( z3|S2SYdq=D;DQmU6EvEo{@a*Kp``q;OcnY6HyHod_$V&*U*S2~|25o_W9ULL<;W`! z-V>-If>K1)emZazVS?#`N{WR4+c?nG1BI$UyD0LGMFKYmoAl*tD%O9^F`)S$uJ*eOW)V;=e=JVB1}1|0ryd+!LtU_!e3GtH8Q{=ZHvB=Qv$T(+}XCC+JPtCWA-<- zLsTDn^9IuZUNbjRKy}-Z(IYs(l~zxCLvI$~o`M2!+~7(jOuZxgnP8f?CSJRrPbFd$ z2)z`-VHK17H#;tCR-^)yc^r51M&=^`7q^U+ESNa8%OtS0>PBP%Io>BmNh%c|{wPfF z&Ja{7qP#;%;D5=-LX9LZ#QFhX!wNwOl}Y8V9SSgFqQE_!to9mAk~9mzpbkj>Y-pI& zh!_AwDxN~aM!k`5@&!>mtHba6mfet?|=YSgO62U zm-}Y<-su9-uRW9KP|Ty#RcIA|M23bvdho=#zFWx^$RYJxs`=%yB3>cF%|#T8JZm(` zjm<^8+mDo!pFb?wDkFj@CboqYi6QL~P5e}`yo_Qfj{C*9j3`F5zcImxc6m2CTYvfx z+=?4RoU~K!Vl3Q~s8_B>xdAd}mHRdiv1g*t+a3rtS^s#QXnSN@{pa0@k*dNvhxnq@ zAJ%x1_quYND_`|adjZ$|A-Mf`9@oYBK^17{VtO6!!gaUb#9#D>MCL~KrS-F)>`bQ)x2b2!j z>JtMI^6L`6#m#Gi8vd0i9J7H}#vaizVFrrM7*`NBhsKx&qyx)lFh2d}Xq2I*V<7InKzI@O*PlWfgURo`_bSzpO_L<@AWAo$=%A2U}V)=$on4 z!vW&Dd5s%a_=jL4E!Pcdf9~i>eehYLj{;(zcb5a5gi|>Y0n*afDJl$<$`?@|YAhh` z=6ayz-t)1TjHlO+UNd}Ohg9i{B7)Sm{a{QUy^v|GxydN~AQ+?B#GwCVgU6Xo=dRc( zq~)5SHsNn@E)@;YH2@)-eNU|E-lCt7^tuAkgu6mswHQVSfN=t07dFIzJ`j@b_&BAo z0;$h!#8fp3NPeHe|4{-m4o$@r{nRb}Qx)|FCmdfvB6;Vaf5g>n5W~OEP zE6e6tDW^6`!M{}PJ2uV^*n`zHi`;Uq{^P1{e{(I6I=(y0t~$6L6D*OnNKe-DoEkCO z`m!AHv036g%#v2-UuERgBfItG&tg}aF(#?74pW#Oh>q?tPnZEsrY1VGT3EoTXkVDLMsMJQwL z20V3d?$d`>X%@c|<{LxpJ%DQ(^!?+Bz?E_vJ~seI%N@7dhFA_5@3zb;t1jQ308q=W29&{Yg9GzjXokqip5&->2{wS0up026pW=m;NYE+pz<>u~h?q z%HelZeEUzTujpBCX`2mLk~Qmy_?O8|c^E$Zn0G}_jRx{z-_AA?brft?Wj6R<(yY3S z#STS_O{oT^dUB?{sS&a}<<5Xp_8HwYDGj4)&V_d+1ce3;WR#X9l%%Q1#Zdy4u~m~M z5(utayevl=5zC;_OSF>Q;x-Ki2~;E}X-S7x@~QY9mp>7c;!DmH19cErONy&26-c6a zWIzb{Z=5xxl!i{d4E6jh`EuB~nsHb)7!6xfsr<+{-shAWm=Int&$WQ2YczC+E7H{Tb+u)vrZm0 z#jil`Zf+j!M1}8O!pM$V0uf993x`#$SV5ly5n;QFWO@^_x` zEP}8RfveK`0Opg&c|%vhCkB5;KL3+oAP4eQBJKEw*-y{Wk-Hj%6nM->yUTm}52er5 z3#fQfc21$-dY$+MV?8Ff)TuG=X4D*6LuK-lwXq9k?r|S~`L4^=s3V*3@9sPS31y^! zRsco=`@&Uvt+N{&kzKgC`<*T#*2g0i?n&T4qTV5U_PWHF`SI!^h2r~hM}|g{QXfvW z{Xl0h$RnnOwN*d%ls=zl{NW@=ep1!|pN#nv6ur=G-(`fcsZXbqIlOgt@RV@$IA(*o8+kHibkx{SQ2aaf=I) z%vmFWxOEuZjWyo8*ql*mIr1OvpI{Usos+~Ur3Py$1wdiF9?Z+oZn~RFji`5yUYhhl z_0h>(Gogq?(yku@w9#KHW&b82sqy!vHgl{ETQLS`+h6sFJ%YVP**L3*_3EuOchpD*|Y zqIW{loojzr0g#43Q^GHRFV3!fKjDIZ#X{0M7%78-YhcH{_>N2vR3&AvR0nuBjw# zAo$WHNLZ0PBjm?^pO@~GA{u#F1vuIThL`nZv^_V+pNO4V!};d4-PMJ4uB+J6swN%a z#D3e&Aa5erUPH;Fq2F4e+g|2~8vJ=;xA3#5t4LmO$n0U-U2Cy6A*tVG7(1xhLp)vS`oRD)QrE{Sab!M|gMlljwuI{K6Bu8z3PKs8&!h~k zmwdm^E-yw!&AgowxcsKBlZdbR0RebeNJwXV{Ip3askoi+-A9x<;_Dl7XREjGW;*7( zVm6^i`9eyIRp~sH2Qh)gtNcd(L0sI>dT|2y!*Ncu+T9vVuK_xp6nu7g1~#B_$3``Y z?w2Hd%Bm{7iUem3nPYfF?0hK29HNuS7d05!krtBenR%2nn6}M*6lb)q+#nCd<99R3 z#1_?EnkWU`#_3Vm&ns(as3J0QSP%PB2Xft_w1AI6nZEcxE31QgzVWId8mUIpBmcEI z#zT%+l1Gm+M#|o8R`CR$xCRLdgYj(a5LTfz8QAfrzGQqV58WV+#~d2jV!)Gf6OFdP z#ESRg0;_AmFqM7fXr`2x$Suw&+&B+hD>XOwrRg319nql`yr&UuNH{4Dq|?-{QDR63rF;3Ss`z zH&Ba-w?(r|Xr+oGjX9kR1GEUQy8N;rNr?y)?Yf!szy*lm524CW2lk!W{%Pu3v{zOv ze~)>Q>1rbBR00!`U*oLf&PL!#5mOb@XD3`|zsj%Z8e@#&Nj&f~P%N`f+NGQg!;?Ej z@|gO{=!`4Z?KA!LQ0EUpd=3p^IQdvu>z2g%ntx=EJ~%f|0>DRb()Jl?7etpyWE_^M zQO8-64v%HtZC8C?zBz~OC7Wt?uU&dTOliPMq{<$~eIoe@`(-Q_U6&{W(>mK?oT*ML0ev`x*Z~K@BC;K*-Pfulqxmn1yPX8d#C|(|uGnyn8)O6^R(&}5RWUshc z7njHwS+5e;0UYw2 z2Z5wC(qB_>Sszx4zO_%f9x;S0FP@4DD39PtIFD|jh5hAfNxX9{DWM-D>&ff1P1!ii zCF1=sP9VWHY8;9!n)Rf5{fB;brVS5ctt@3X`S%vDw20`A7)8QL4QxVLUU|U^oyFP3 z?%aGW5(`PspUW)6^~#MhMACBDE1C3w=GbcYHNi=wIUC`oLu{p1-z|Gmj@h$cuJBk) za(mvJvF2I<&Rscl4h%~S!Ut(I>a$li7@M4C4#x_Sh?oRjl~f7gYbEVDBUnq1mPbcv zucnb+2=Z{SlrW zJkAvuCkS0XtdU44f=`w{GYicl)p5h3rSWWp=+`c{q?+xZ_D|!Qg{g@l>keePl7{qt z5xMwYmP}{zsNvQA`_}3ytlt%3(k|He) z-(YfIi~W7`P@jt{{H92pCRj#ITCO0gRUo9 zfpf!4P9?OrWry2g>Df9fIk^`YrhSP%UBnfg)~B1sHJqfb)3B|t{kFr_Ly^r&47k0e zwy_YTK1a;6Z&MCM_7iy(L;5A&Cx=xz$MOdY{xY~foE|C$Q{*fA*rjmH+VELFEIjuX z+k+3y-_YBw`~l1}P6=6%tb4+*hnR-6J8%9?n^V-zh%JtNlwIV0haq}us!HyZ$`AXAga8_4`I8g{RU+W)Ks-mSxgrMw2h1(1YV_bL;p4ru1Ab;o+mOQ zdORuukCyH!+Yd242#W{QL}BpLmIf6suEl3nSdK}XqN<&Awv^IiUcQnG{yr70E{gp| zQ97u|g;wZEjEMJiRptprdkIEo+l&m2cVx>iV+}}u-RXr9ON|^0LiNSkCDBTQQ*KLE zhOL@`O5%e96ZLO1RqNL)9{ynG=x{k$n*(hAglYV~c^)1<{lPm-pIt!%LGqO?s?s2? z=F}(G!ob9M)xvvugD$2NQRqSojU*hn$gzpIK&`ms!Z3lH8mfe{o?n}_-<=7oDP8Bd z<%izOk&9Kvl`hY|D${sS`T58=y9cAPtP~_-2f}z8j;9Hi<0n(>Cip#YNt_LWADmze#qKYG)T zc13?7P*K>U0Fta6?$8&*c;bxw))5_qx}o&+D_-D0p3EB}(B{I}-5!>=GNHI4gW*^p zuzE0dt3TYLKQOO9nCe!Bqvgz>?m|y;_?=pRLQ-GGhoyjIA40nCitfN4&66`qkfUU$ zRE)=L(^tt=PEbCRLc>*tMGL`3<4=U2+lM_;P2a8w^dChB%V~&*q4bbAdFB? zWgwQaU{Fm&CYJL;FC@00Q>2$u3*N#lrjw*o03oXdjw!@9i=3HYd|Mn;`dpvuU~hqv zz4$|lr#{cU#saNcXHZVFKF5M-*XeCbIjufJlF1Z=@(}X)G9~E0t>wRIqQS1@D9XA6sejKp{hy!VRt@QP^5oX}I)Qlz

@Tvp?r^m85yw~2CQrJR<%tY+S!Ae83;d2u2hQEof#a*b zXmi(k$3<8eRllF;JSqB8-UwzV%xPN^@ruk+h7QMbBLBwkh-b9JKJP|w;UZp3Pl<%y_IG{#M5-iw;KkFhW+eqQ`^*S+CvqwUD> zX}5+?JJNVQeE5;ZL$?|axhjT!x?*Q|U*nyfSNt@zdZ+PDc;B6<5wlpUT{pY#;eDEu zH7nYPk|SyfQvy>hZ_Y_HL^+nx=7?OS37RlAqm7%&l)w}onRe$V#XGtpks2eBUH62K zcr<*3@!X@vb7T5OPPo~z%{Z4gmuny8h|H#0|M#VuGIptw;+^BB8qXRTpLAYmoE!c% zyxcIF$8tQ|G23;cqnrEtU#@d}#Ca;&ob5{4+3V@?BnQ@)5GF)%ego}5__A%;l-$}zg<9wQ`hls z=J0M#;Qt0WSqrk}MO2(JRzw>V#O31*my1`?>5N*=OX!JOx2xZ~rMooH_R2$zv_X7fTmpx7>8oEkFM9 z%a1<}4?BKXn47yWTG`fyozZTOmSnNew6Wn67kj*XE; zrR&J3F72ghSqVH=q|42Sl)p%cb>{A#ALHZQkxEUykD5PyUgSO-lZ*qymByuS7z;)_ zA9WQy`SKGxKG=PoRf}da*TL34S$oGD4rd(mts{#^$T*ZA|1l@+xdGE>#qXB)B+XwS zCXGGQ@BBlIdHcH}^UWl~Smk(pbk%c)HNWu4+sjYsEIH@(Gd?mVtSHRbx?#hHSB-rS zx#F&6SKhMd@Xh<}|IPC&+e;7oimR`6+>?dmlBz?p4oajZBp6N?bB1#-p62mn6qUuD za~Mts^}#iEXSheaw#&IZ9xa-ll9V!iI@6yKsRAylK%~s=t`M`0`TtWY{>;@Gb9-I* zyI;gXoikzP>vz2M-Heot^V9FV`I@^Q zzT$#QR;Q*uo0#~~ldBt;$UBq+eU=Es@l`=6>u#7D3M^q$tXa3mjA=`i1>M)D_usGi zq53DLPv>Gg{(OHdrRd}%A}^AX_BV~O`n3D5IX^x0mZj~lrER#d=lkK0!=u}bWW#+-P59%r zH8pFmudIw}d3O5D@TcLg3(pV#`tvr{T&s-r#udiR3A>7)ZD@G*UynV$doH?(`xTid zqIcI4?iQEP@yB|Xipmr-CC(WixopHpy2;tJ>)Ur7F}vnRZ9Q?v+Njw)f!A_Rjvbpj zl3Am%ez9U5av|i3<{@=y#UFzmdpgHnA#RAFednakNC-}i9~Y$w#)NT`X8-31r~gr! zBd^e&=Qo9tJ@r2pF^-}eZolKY%G>Vj@B zpZyP2E_tdmqDG~A^}Vwuj%h~9-8IHl&fmj#;h3+RU6;Eq;~9(oceK-(F?+njW6U>P zmybT~JZ|Twt|aG6;r8$=Pa6+CY&^t$$Tya_E_ZGk8%t7Fh!$o!=SfV7|7%6U{1KUX z$KGe&>3mmGL~G}##_*$#@<;!#xGsaZQ|B9zz+;xq2xjIGmQnN?;RJ#5+a$W^U$${=Ggjs zY*J<06g`=G6J)>SNp>{7aB$wqhs?e9f@7aJ^RyR>p8fdn)AEm)@#>~c#`=5CTzA}x zgYx%Vap4i!Z3kquKbUiE!HJ9V4xSs{7Ul{B!cV&HiMoXPoUXnl&HJ%Np5!;=nq)YP zR3j$ZnHBh74db0zE0#1{n9ZR+M!EJH+e7Sr8ySp)vc6)R5gii~y_7?A%<}Pw#2gXW zEj=$%Re1Ez{{Q;Q$zuJ#x@M*S|M1fInCS5lcS0%>am9+P$@{0xnLQ=R%?v#yW!eNb zXk$AV-Ww*nsmb#rZ_NxYZe*Q4R$ax*6J_qd&@;)H$-khAH);PV9@nJu^Uq(q_Wbk9 ztE#78d)$NXzWZSA^(oEkw}(GAjxiDzbSypW%>%-J51(q38JSylIFi=hd+*w7?!7lW zaM7XJ+uGW;9eMDfbuX~YcqaUG_zEM&RUKuFcN*^)RmSzkTjA|}JR}Y=+q;^^>f2sQ z$x4d67Lf(u*wnDQxVcy`O?2$8Zjr~rnPfzkTS?AjN6}VeL-=367#p`-xa*hVEm6t4 zT+YXL%r>qIuSP)+qkS>jF|3#qBUQx5^A?$pqj~Vz^o?UvJ2v%D*w{Nprk;sWi^j8& zObofFjE^557rPhE6DN^=h9hh)qZTg^Zv#kzq{?)wKd^mjAy?b zx%S%I9|>;{{}w*d@zbs+SKs{XI>#a5vrA66xbWfEo;>4zxA}JGrnedKP0W+~@t*i1 zYou6G^i6ayHS&fyN!DR3=bDVYB7ZDIsJ+u7OE7LE{|>Rp?b@^9+Py?vu+X*N(uYn7 ze-?hlIMfK9^3c*_Hk|lsN5`xAj~+dL)-2;rqr|w-xO>*Dw-3%@W%y?Jt#DV?o_BT~ z*X+1G*Nhea*c%$f9f&=QCEK5SH}NwX)DS(Z~+Bg*Sw^JiOCbY%JNi^RlS9;hJzcOVB$A#!z1+?y>xwpwz7C zkr~PrnW4B(d%hI09*cZ=;Qov)bN*a-L>3?Ls`Juad5&9l{nhc}=w*?G#f2MoJ+}ef zZ_v$0cWn0kuey6yPLV0+kEt&{`5Wg&y9ykC*>&%xh*-&nU6au|oBNc@eF{cua^yZu zq>}l@){x|z#T@T)M!8P5|CwD{!tNv_=Gn=TFahdYccBY0XFz@1lb*x*{rJ7(yD z-@kCSp&1{!&)i=ALov#VJZF(gIQAy~v7+HwO6D;BQ39fJ+KA|G80y^roC=tk}N zzCgmHo=fUubJW<%ZfsNZ{wBwk(ZZ;$JGO3!_@&@?6nm@K$SQuXagncy%tQ>GneOb} zY3-Tlrc7ahIQB4(XJwHbPiFDSDbzfN;W8#a7v6q%_?Ks+x_0g5*uEnzDtUCs8Mou( zvD~H-BeH)RuV9vcoP%ZO|25)>@>qpuHe-bmpFGuYI~Knm9^BRXepJ`ag|3Y|(p(#N zE+nf}JnIExYd7!M`e)C(KepohW1-CgJ2DL!agN=R&kAEG*z>+ zQfZ59byh^4z_HL{`w(7RY3h{t$rHwp&Cz4udH2lGOwH^RU6BvJ#;xC0-B)*WILBz& zVK~CS@BH?SsJXk|uDR~I+aLboqmMt|)wnz6s_?e4@y7FZ6O(lc3vRaBIykaOi|i~I zI-i#L=rFbyOxZgnDRP&hrtv`j&(3_Dciewo0>`c6{4qOzjSPL=O`Uhe{c%C~%2ZAj z92;}^^6-b@yBEJu==}A6U!1XPaVyti3)f;QJLt5meR$Z$HUd0RuE@89sHm}*W%mw! zq87Q`ZrdH0!E@t|e1+k=>)7Ym$d!m6yC~6r7Ba`ku@@e<>4PVhu0HFfO-B88Bl^Kz zT_3N%<*sVSOYVyv4i_1hKX~e{bx~VCd8g(%$BJD)TyyeVqk8#5#IigTxj z7fNpKjx!5`Klb!{DwoGtG<*8&$cwytCl>iAnDAeA&~uH*4kd*}iF3H%nbU54_<}pm zd#61-GJ0x;YEjESF~_(Ie}ZyuC+-Nk1WC0qNw^W@gPefD|(=t=M9os(cDJFj`DE?gTa&hLmE(!0mDLk9$YR6W# zVff$9I1k1@81dgdk8=J0n4M;rGvXsJ6R(mx@?Dr`FY>h_avJ$Y5!ngvYuvsmc5>q7 zC!SQ6G&%N-1CCs@;kN_Yi^B`YAv2*)q(U&hBdeDIf9&`v# zKd}!W_gZ2{M`9C|SNYEjB74aAc=nLfBP$_eo}rUc1|1Zb-l1-w)3)49uh-Si2VYIOc3+$g#SAKPWfa0 z9X~ezMyB8sKVW%q><8h)j88uZ-xgl=p)t%P{H9~xu0^BYIIi7wrITy%=bAA_c9sw6 z$XY3D_Z+%=9!5B_!)8{W7kTifzi$*9=YJ4Rip=O2IBp-^xa&;E{kyMG9eJ)N&+(CZ z#3G$93=YG=%*v1z2^Z54rQFIy4US!7=Y2kAzyDq0=31X4z>2Mw%DaMiaB8g8m{OQLr&uAPP3g<_c z-TK=oFMi}Yp8e-{$Fc9(hR%(AnT|F7<9l}G!Wq+@Q(hSTKJxi7`gZ(`)Zb5ZbdANQ z-f$};TL}jXD*Bd09w!E8jD6Z3r*Wha6(9LzJD(N7d`DL}e`qMWY~+($qg`Y{?Q*VR zjo!tx$hv}!8*6A396C2rNMjw5RM?76iFd{Ehk=>n4KCqJ#&=u8>%+IbXADxRnhaxI z_%g$hw|h(q*Sb1?U&O=q|N7p(=SzJQSJ~CMGvkE~ks4}vT|YRsN1u(KnKd=?o!%%y zkbmrhma#AUV^`v1!*@^kx#+X`B3TxRxBFXCvTHTZ;w+VBP5M8~y?J01Rn|USx2k%} z-s!A_kaRko5JD0{2w^eMtg$M7=iFP>Te>^={{H!JMuAj!oqO)N=bq&`=Qx?kOwm8&M1a z97d!OZkqVw zxM@emu6wn*AXl!KbMtjKzw><25bv@*Q~&VNt|KpJuUy!)2QwCzK7~L7TuS)p zA}&ojk3?CyfAxx$YuBz^vD*7Z`-i5T_~!h{sas1M8|AY1&V6+D-H*@7x7Cb=<@%%c zo%U+&s12Z%0}{dxBuLS7bwj%3i3#QBGm2V#vr{z($}r(e4u zMpc6{Xdyr488lVp%;p(1aL;A86aUEi=7J!MhqS<4qf+14Sh{uU$@AZyxNe)4xO&Bk zb?a8FSgo9q`~3R-hEcVwJK`>OR#mITzIX29ch7!wj>|dGJqi3v1>Iddl{UzC4A*9q zw?TAUss*`RR(0Wq2!N`zw6xY~t@HEUE<4!_sm@e0XC9&f!o9@iT7;aclbXJ;9(!u+ zi?e1PAE#Z`&avEozxT_5xO-Qx*l(5B*PFk3qf6K4z}l`zBgZk1_V)+oJ#pYB+FR(^ zLh#ffm3nZwN@k=$%;p5#J}?u8lWB+08o!9}Lx+?Mon&`7tzc9t4oEgBTry!QofNlF z3(rg$%9d$M8@02n_=#uCDO*QQpVH7&rkrUQ*7y{ifyLSYHCaFNFMARTVR1>wY^%vI zQs~gf;1I&KccuzjhAYMGRYE<@>+6-xc8WvlLKSiN*r;}8EFvS-xfoqe{fZvWt{ zSHAuBl^gFbYm~d5e*gW`r$0QWebS^gwaz+J+J4so>ynA%SvTlyE9*9<9v7I{uPnY_ z1s+!d6bN}M3PfLz)~5F&D*+ZKIcau^%V2wiPQY&}c(grD%{qMjoMr188_W03eewzU zkav)L=z)8ld(ykgoZ{U*Y0Br|Dfa3I$i|)KMBKsglw}0B1{x-=92AWTIW{D)v5`)pQe^rG3tF8XMK|O%)9dN)NgBH{w0dYhx5Rzj%vXYUe4$ zDdsUpt`B+skBcBbtk`^eGJ+X&R88FROficT59L+lv52hv{LEw8xAi!wDauz3m)9SE zXZsTKW9Nx?NdBr%<2|vG%abd7Phua}4J7B0{m<`@vM)ZtMkN=Y~UXbrJy?^Et3TZiCUp+Gj}|P=%ZKcr zh0K{jLo|OJ?`hE=r_h=&qg^H&2}9-7@SUTUEFS;dpfwx5e|yxS>!-gkdeO?Ct^FRk z@7#&{J!;oyOG`(N8a&9A&}#dVJx5%wqm`9Y>h3I;6LK~!ee};x;*+!-e6pH$i2EN` zzhs_)6cYRp6C?c&;*=V&14uwT?!e)2koKkfpCd_vl$jk7vt8Q6iSti?etI8S0Hz(< z%MIS0w@==*=cGKTfpI%d*ppf6L|rG~4#Td{9nHO8Au}~3R(L6N0^Mi$OZ<^*h8mof zRJFHXCkRKMB1}Hht>Ad$4L9Gl_VD5IC+6(m%l6U@NB5h&@ba#`*G~N$>jubBouy6^ zemp!&5P?;T71Lc7;HkQ%9%KDj|6|%M|AL)0TG@YjCwPJHz%TU-zC*+gbw?h5?{n6D zPJF1V&d60ibbRN-yN(~yE**I0=>z!Y1#)liQDx2Lo$@sAHv0Y{`2H36{#XgPq8N(` zHwZ2s03al&L@lm)&;WQ3Ty}VhHrWMFi+kF8? z_LA099w29EH?S?V1P1Kr73H*N)#jYvlN=wc*Fv5O(!(He>!V?P9lK!?sO)MIF|(SrK@hlUP%dIvF+v z)`VCnQ@8=coqE3YJlq`4ssBPL@h*{Z_~&3?^E1F|AF7CRjYZuluy=m zHVhK_N(qSy01>dUCZv?OrEMBYHYGVJCaE7*l`pxRZu|r5+C(>UHT0#97qNHh%x`IP zDn*UjAg>7>rCL3|KCyV&qD32KKk=)l|N3jzzVY(LYt~n6-2BNKvvxGByo;%yY-*^z zNBil(!mRY=Po8NQL;RJyY1zQOWrL;`uy6a#*%uKsr8RwoHC6C6AwLFG60r$u!TnxG zYeVD}Yl5zouqI&uOQwF5op0SLGd(#eF<#1N`G6XjI(EjgH~Re6o2X z(HPIJQ(sc{N-25-R7UPaVX-&>N+7Y4G8BJ9Y*(ayPIn#;Ii^F;7sv$`IN61;GCE5* zz-rIC#_Sop{`2tzhmL5!qFdvHCs^!+;Zv2Qv9B~(nPV=y_vRso56Ie$00BUM6Mk7f zjTn&vX+msR=q>yN!67oh^xO)^9oqmLHse8oJFcuqRqT!m2Ou>k3C*m&uW6Tyh5z_aq;rr1MhM#{#sH8I5WcR!7nxD2(m5;! zcvedx83zT0mO_DNttzZa=N76mdGWaV+i$NQw>V>O{o^^=ZE~NOxVN;vV~0O<*gbwv zPIgYt-idok>nlnp$amK-T2w#&_9blYo(X%($9L#hU$S@N-rP3X*}LoaR*Wz0IKE`h zANB$f4xU1}@Emvs<)|r6mtvEleLZmAZE#s-WvrDUJjLdqX9DhzIa^fVx! z`9;7JfkX>@c*9*T1iy^{=%FU<)iLZ|ZT3lR4r{2_PX1Q}M7^hHKj50}{Yj3S?RsD~ z$)%jE?UG-BToV4J%+nq+k7LE8S_nI2elW>AX;4M(6CQ8xfLO{e0F7sQkTO+G68#%{ z_&W4W9OS8^)Ppb~SiRD`dc!Y0u4*tH+Fe*U;_CXjiPi<%uB%^P*=d&Np1s(?!otx* zrY%mmZR@mg4dv}`?swNC+1|4y^<^+2>EEj%Wj#&(m3z%eoPUT`itGcK7zsRh&%?g( zB;Dk<_5@yK^@$Vaq!TAjkn)nGC5YP(LmaGJ8Ym6%3?wcAIR%(6{-t%|17U?@CB5gr2xQV0zxSk=Zz zWdPC-(7pkB_vJKja*^mzCUu+LZT_nDcXgTGvC}Qp&z}CkkeYGI+?~!3S?xdak~H{J3%B&fT%(9R4%DzW$tAc4O1l85|I>-I zM+Xfa+<5(r=LQd@F zxi}v=i0T3zDp7!k(j57cO0Z6f>f-*F5tpumI9n~&QMl1~lsAQ3h+^y)eymIjcwAC| z4hi#gohO4yMQsZU^7FE@GSZTP!iEbM!(w6rT)1i$66NK3MvwCH;+FjzZ?7FNb9qBU z`SO}&_aE7RXue;y8dxN~)J5?RgcbI2r!`$p@&2w|F-mB*=Td&rScR81~ zZoS_d2Y3t4(gNVXl2sRM%Xrk{#G)P+wKy!*#z9%)Kk^Xr4z*(CA@N_;bxiw7`{@|l zRl|1qehV=g%jNOp(J;xRf#J0u`Rq%Y}L z=PBr1*(N(Rg-N|Vl|woYY1cNpQ=3j1X(_E!Tf@Okh>bzy(2;=sH2^<3%!QM|Ltg2w zRB{QRTOyp3^a$rl9=mDd*b$Cy1-CTZP+nb9b=No3rqvG`)Hlp&xg*S}Qin{w?&=8% zras-De`-WK?F0GH=x;jr>`}?aggY|R!yPWZZ}Ux))p4c^*thnB4>-a0SlpA`N`|7! z@+4tzgFu3H&v3*$A!X((UpKWfUD%B8ky)`aU)h86m;g(r$Wwst!;!j%0v{4wcT9Jd zdnY9_3}j4fmDDQ63Qd+kK@WpzLJfgeB5)6W$}@V+Z(mY|(wJu(R}7y$YxsycH=F)l zURrWX@4KIScGb$~m(3nA;>MeX4ZoS*4@{(_E;PmBy@_NcazWx4A}g~{u@7K5Sc;A@ zR}nH$6UEh;WJ@is!fJ${$wSO`4rr98`pOn?i^XaU`?U3J-abZl8)LoY?aC6YH-lE2 z2<3sGlT5dy;-Q}txD)pzdH7hlyU@tlHV2T`(VCjd%B#Hz?cj?zYktPg*XdyE%@1@BunP ztw9L>cMV)w1I?}zm5$&x&bden(lrwF7~J0Hg2C=Vp#j5r30a2x(Znf7|EJq6-TTcc zx$f4RX7wI4Ve+Kf_BVI$H^1Y(d&jDiQg0k_`^wamg;}je_8m0j#-3Mo>6wwf(4Ktj zl&dGux;|2WP@d=cy(CXOQ8WX8`3EjLfEO2FP9`1_XY5);2UJ#F~#5yOUz@SX(~*ZWu{f8TOrOFo0Peu3VWEA8Pc|AqN9J5FV8I$Kl~q(H z;bhmJ`t+-{Z+YKWV&o}B^9sGiH_-=vf{pPB&KcG4WJ#5tjvy1_1+zc}0@yT)JYpGn zEMSAA-W1ZM%Fe*BE~S10R2obvoOYq=6sR0|#t_5;b!ii8w28;C_PAsI-_pLSz(M~P`Gm#bS3GoCYiW?@YTS8>*^DlNQGn{i+zpAcusF6+O2g|l~7a>BlcQIeC0T}&cf z0+mCG1$URI7=Sa(!>Q0eHMnw-&(88>LrNeF3{Vl@L;j!F9kRF4OAM%fmC6ZpxPZ?e z5@iRKohyNsuaMngsto!R$gi9@q4o`1X5bm!ld0(rmY~tu5dOX82Atp+*hf?g2(e^{ zp_onRGhkvSg0Vo8Lqe(8j*@8zOvc8>Cd4N2L^zLwD>y=o`pFMj^3ZJ}=tc<(H}Zab|z z5i6#(%i`T&K!lfzRU`h78tlNgJ6wg9W(2UW{_@WHJ&&yqqG6VH;pwM+yr0Nv;B|k3 z_W&tj`4$v$SYtqi)y%!h&@Cu*yYk$5j(pAus-p;?1r7iQCb)PV1*PBM2UN2P?ov17 zQO~ZKIdQJGOQv6wUtQic&6Swbc8NS~blz2gM4O*-Cd76uF<*CUQdXPzxQZh4)CEb< z(L6q68K%omveeO2W=N0;S{aTn*TJFGbE@fI6oU((Tn{^h(#Wz9hFEptL?A_$VJA-_ zlJ4WG6_1+*BsC2sw4p~hGA z^wf^+*|Y9Js_NL>t=G<5Zh6$xo$VLJ9p?I;b+x^Ejvd?NwJIZ=3kTlv=%cp`yfy#Q z8d2_n_v4qk9XcbCGCm$s{<4+sC#z&qtftyn8y>L?k6{)Ilm=-Aoy;V7IZ2KrfQj)@ z?iPS)aS(h2(QpBX|0^zNKc`(?qdmnc(2e3c@8{ai>l)d%+fFdl?(Nh1@AH1Kk1f@f z;SaE!$h`$ku$y>oheIln4tdfMrBF+pve}e^k|CH;iYPl33ED!*jQTJ$oN$v~5l6O# zLU}RdJ7Fjxv`r}z-L`5=kDJW$v=*QDxP6Z@>=qn?FmF(L!vX_rlWvPPtuxXn3+HyD z3OSr57P*Q+$qlyA*s4gSC?VEcw8|8L2_FU>8jCGL^#!~-m?XIRpu8aW5sO9Q;^GqH z5`{V;PtRB3fqf-48dNvJ?jRj%6pt7RH2B?}JmqMOfwuxT8U5Az@#9v7Pm1tXsLqYp}&jO)zWKn;j?>YD$ zu;+vq)A6}mw%@IP_?V!38Hbd;TC{B?*`gMtwy$Rl%_4g85&9~nXUTZ9t z>_>g4`5Up*!EbzD?6m)lLPv=AiM_@x*=(;vU#l158(a?DW$|9V%fYYi<=bWb?Y;R0 z2?7*-y~aKxD(~Ot&{yk>4!^_na$|>s-hQiovlx{?vP)bm;5951UiXC=OjMPRT1eheQ4-qDP`1N{+k_Xv0Vk0V&m`VGCpkVd0saXZV3;I0HWYr%rCK-?p223bGou`h zHiSLPE6|Q;PikkDEMaAOT^h4$7fol4IyCv!E%M?^XGDRTR=magIh{jZQ)8h#av@nT z7UaYw<{@85MLq`Rw~bNky&m!iO5qNX=~j^MAhUt+;`{&@EM_5n z8K$Pkdlu)YrNSQhGCy9Sw6*gTf{&oeqzEIp8EN)pz>YZJI1*JjWnrk&`r@oz3007P zUhBklEoz;}x@wJE8rqg9gLM^&G;A-?Miz2J+W1KfL!S33aUNTw(5u_Ag2su^#pzO| zu8RXiP=N^2S#HL^P8~@Ufg;V%BbPi9p-}}h4E>rll7P0jq8{Od7PPDSK9C+Fxy=zB zXDIQhpb=Nt)j{*}Js>|J($e%RC(I(6z7%??MUwwc>WWGCOHZlY)zP5O{0u6YQU7jZ zRW_E6JJE)s+KJk(d2Ay4!#r&l8$VC`qqZASnelAmeEgaIrR`oo&tM^tIqPrFs|U>K z&?~5MquhFN5t2~3DK@yRIoVJ$il-e@dY~ep8VA+bS7;>t$hK=&#L;5pb|eFFfwBv7 zNMt}R7$XI-A>O`RHw{Vq(0Xu#1^<$2`2;Bp)d%{>8iS+3JSr zPv^RSX`1_|uIr|WWzfE?h(g^YaB`C;TPE3SOhm@mELXIv~jj^rcwPAw2g?OMyj78 zofDykitQl16RnWSoaDdL1L-U9pqPVe9m&+3JbNlp2HbB8ltJ%ApiGV@-P00fBnJlH zW`S?{gpAJ%(mdhFOBVD&>$F54*F6zPWD8z+XZ>T3t&dJ+vfoA!{2Rvi*G)(j_)a*P z;G-e!$Co=%?63{IKqjqtsoRM>WWzNdym&iJHye zM3AW2B(MeHXzZ>R-u~dNx8;ZSR`u!j!0gXn>9?x)kQLo;ytCJBea4U5wOw8~XW=bJ z)H!GW`pE|gw@)n}+Ri;;_q=USXJ+iqX>;w!tN$>lu*-_!cRuO5;g;p=E~AtQdXoBR zxsVg0+N~1lzVOvs?P3^``tZrfC-kNK^%Orx*vd7!X_nVqtaq5JWB2c2RX&%k^E}=Xw2F3uRu)XkOkH%AfV&`BNlWtl$jVgZS7} z5BoZ7om)xtXASO3zj#DPIE)_O^W|HU~35XHz?X0t)BglE>^18tyxs;=~- zA*=(M1K%!LVr*#A+5GMPSB88JF|1r!>f77Xv$}idP94k3NN{w{tgM*bKky@luJMCz(#)v))Gd2=6mWbV927LWCKYHK~7u`LPU zKj!Y-IhQ`ub8M}rS1t0sxQ~l)A0I%i2{2JoA8CwdRCSds$8-iN)ZGRtx*Vh>~eRHp?6<3?sm8H?z*S$WzP?&pHp}33f9o+ffcJCE^bJ4 z-C10?*X8W#sqXzR?XTdA3_Qwwm1>t;iu0#JCx*uP z(*Z;IJ#qes&qs{&2Y%xJG0tz4Rx9}-asCC7O07fU{E;fJ6^Yj`!`7qvj7XMn$g z8TyOI`xT0Rn_vu^fcOem%$%K_mX@8Hotx9fSJWKSLQ%5=c3ITI=0}A^7O}ipdCcfF z5W0r`o<9CH=y7C)pcK)Tkd_AOvwh^-S|Fc{r>Nw!Ms7DnC7++|K>oX=p`JlbaNVF^ z@ns*d01A529z-fAcjW~wp~W2#_D$4Pe4$%5QI|nRjjGF0k}gO2gb*=SL7;k_bh;AF z!x70v6?#}vN=wUkf}7I`JZ=?;^nr?Hs6I1f}8ji{u77eG`1 z^y-yN1ZFdQ+L)M__?UQ}7D%GXIi9)XL3v0x)UmHRTC~Ujk!7fl?k#WO;v4)vs>2re z07|h1zs}d~iV`28b=Y`Sz?&Gy>;=9lXkAGX@;V7X1t8i=Z^IHJzD`efP(IDSGTkx` zdS#A~l)#sgTqrs}lQ=)^hmITrt0jcpEmZH?Gf-&=c% zJ>>Pk@Y#WimFhfp0K^a!NJbeAT4BN^1)7CM4z!YF86==X54qrg9}=z^XA(_^vpgAa z{RwtfFCOy$sP0gHK}IJx72oS2Kcf!-VEd-Rs=|tNce)~cbEEWCKK1IM%U^wY`SNFZ zu0-d60_}X8e;xX0DRVlXa@CaFw{`RCHJiJc%HGxPegi=94_I5E#%!#uESJ=^A3u4- z8~09}tfj}tzy10v@4oxWO@s}=-3K|%GFRd5E0Z2O2p}wA0V1Paz~L1N!7EHA3wmO5 zE0p4ySWiGjw(u3&@uyK@7xZ-4Qf-W0z?VrTWPb#NgMTXQqwok4OWU_Aa_1$Z!v&z5 z1mplvQdm#;jVNVK(~~n{P5t27Z*5>Svp%59fhY`TFB%4XfF)1zC}e|T8x-&E>A4E` z0*{)?ly{(5FWCh=eqqE;Gted+2{2@9T4e?z4Q(*GgOG-zGMnUquD51IGtY6@elBBy#^hw9cK)r)#SP68XIq$j3H>{0Pq9fK2rE0XK2z znwR0X$qq$rM&qUKh=dI4h~+M~Z{Nx1PM0dAJB9EU^Hictc^p+WgI2nisI)?~p|qs9C?EH7c2=O^koOTmaH^vDzM&lWD$0?F z!j?~)9}QJM7v$rLJdnpzO*&fObrLXrg_uH)g*X~|D2i4|6IMdEGq5lRjzVB>1?nM8 z6q?Qze%qw*STm|VC;IE9d5S7pw=^|y8R-S)d zuMHdH2Dqm5S+^x2VO?R-h4WK)T(xP!?sn}jd^`Q&t~+?Mc=y{l)f8=l=yS3jo3P*NsvmZC3+GbDY1pD$hR7K=(EI=ADh+w&#v|)I9gL&Lan(T?mfK5e= zCIf>rI>5XNN3pZ{&zq4PgM_zWvXR#brI}}(g2-l5?z^z=*=N^vbTTQ4K@;&-=cZb9mnu zAb4m_3qcq#`i6{2Lpg->bO9@}~Fcuq|B_(dz+wN_=TWmA*P> z0u^}}-U#lHi64$TLR*LDP}5OifH&_4!4B}#Tu=& zM&FD4Umx-`?Bz7GT2z>qO9L2^?Qt<`qB+r?6oYzsy0Cnqxt8)>tXdx9-N%--)X@+n zgiU9nH#Ic&ZWcV@B-E(@iIsr5H{KJKmx)OVD$=Pg2PTnaES!xvV@Mlax{kc$Jnq3& zh}vcmzYpBavITKdYerq0xFGhCjT?8c(vWSP)wyd`mj#O#X{7<13!WPJw*jClQ>v2Q z_9T>{as#<08zPpfvA<Qz9z2WEq7Gbl+jFc!iO7Z3zTz7o1oG=M1uH<9* z0Daa{1A$4kz+EiYKLw{ThIrz8ssB|WpTUl2Bqdaow{KVIcILFsN=r$|Ov)sl#i3$6 zm}ghM`(+DaC)HjvDPckEj(fqmRTS?s)gjoY8weLg@jTSDRs69&sEAc^8 zh2RPe^FjVDa);3Hf=r3kEbYq7;2oUTlC%eJsXQmT$fJ$`Hc~n8Etx>zboF!&of0A7OjJpv!#ING zMO?w~0fMDRo*JRO2|P?>fWCP;&@sYZc4H&2ltzBF8F8*CH2P8wFpna4bbX&Jr0~fF z(@n6F3?9zI?Vn507OK{!GQr#w)MKFAgBc?nNKK=vMMY;}IGp-eBD2|Wsi=#FZVre@ z0BXlvxnW0e$g6dP=k1Z|A1w0-UiItAC=)sSJpElXgR#GhW`n`FHO$zv{n_B*9lqTQYE@CbpPQjabMrQ1gQ>WNh z5t%yT)UQuR;i%y&xp{9EewIRMgjnb%m_NaE#Z>xONmPCqk&Q`jUHZ8N9?rr!%B2ad z+03j4op;rP;&ro1(Q>Mv3p(+rrKYHHt5&UYTjeIFfTwxzi6fWmV2)CHRfQ7e=vM$J zxM%%4kx#$r4=m>Cr#0$_=$F^uN4wAjS4z9VV}tgHO`f&Ua6S*NyAWP0C>Pjm2)&U1 zgcv7c*fo~vNbcKVUk>o}O9j`N&S*5;k-=yRvQP|>YzRHff+$6DGEKut&PYaCLW(1B zDh?t~&8OnH1;fJ)$6=iWtHTb-S#2p&TE+sdTdlgqL~VwOB0t9s z70eFfb`A^`PrS>?eRHxQ3AfKXUst43;4n(paP2fJZ#;G^eD82pxp2#tg_kZx?jQat z&cHAW`NxU8#uUmL#V*M4!a^eizK))S*J3tXhQr^8w}_x7@?$(Jht6YEZlnJnqj%x| ztqq*a1poMTV>XkXE9bs3X^RD(7*z11oi(a|V84@X*p_PDWW^$5aDh)LBV|XEy12?P zL^X@7cS=aJTK`AFJ&0V8P>s~?9D zHB&+~*YBg@P}adBu~@09j)L6WjUcOgI0Px)hRLub1j*!%kt77UW7I{$$L?N1KJ2O> zzWW^5&kXismqosxd{>v$4n4GD(qRoz!B~4e(n5Dnt7ul5ri1 z2S`trr@en&)IQ7q!Elcw9SZ%@4*yU~6Fd=e>+Rg)kK=ny>6*7{(a-37;<>`aUZ;Vpc1_yHf9i-Pi$!JKTv|)rUW+w8s342Uj!g>+Jk|qLuj10e3sReTk zP&PT+I9tJ9uTYEd(c$k&rfFCFITR{1`-sk{=5OTDi==k#+I48xfsQ7{Fk&LaFruAL z#T?8&c5f7s3+ASLBC_-ux^z17ZOIaVzKMV)^KKee^9dfKpB*fV8HcEaG{erJ&N?{6boi)MoCm?}ho5*D9D_4q9Z9?2K&jm8>$ zM>xx3QT3ke#qDUAW`0-w*p{m-@ypo4jO(tuNxD<7LOik&8pml2YxtJJ^5HrHE5k5=O_J4UN z8Giq_cX~SdHxZ4CfvInqP)ICn@~X}i(+!jRGmvOlB3Z&SO zVX_UKWT{cy$j&S(GCc?tV8@{s_3##YWSA_%>d`B*{Q)GQ6m_2(mRiI>7gvZCFx9f7 zNh#u87q3V@$;PA{Lq5uoPfT+3`B<`SL8OD5_lm+T5~x5pC#2!+ zJPS#4kNGD#m3PChkTAuHsYwVW5@wTZ;VTs%nIUFZ*MiI> zz18&d6-W#DeAB$I@Oi-`FF>V*krzWwNX-K)6fPtVmUbrE*D0Z z6ZL0Sclo<35fse6fpI>7+g!qX~0 zmusS_w?KfUr3SR6iKlk>G;2V_%rNbmB4-up_^UN1i zC}G+LR*U9{{?)>)2=gec2;`6Qc%%$aZx>k+Vzprr-6sD^r$&LUVrr?cYQj|C46OR0 zsG#ueQ3tLwsdj?z5UYj1Bw7v#L{ZQT`{q$oVmweY02a*)JmqoIcip^$T5Rw=)kRvN#3T@a2Fm8~`uMg~mW_P+Q2p~^&04FYN)--+TzO{?kCc5PM zjX;WR!s|7HnuOFd;>K4J)#U6b4YJs84&qBdRMW>E&?D+*$R1CZrU;oU(24RJ-&QLR zwI*^r2$!dLieTmkQxBUw%wu{SiN|EQ`VE8?1@JA{9PQ?3pf4P$J#Mg(_=vcX8F~*h zlcmQzF=?p2N=MbY5mQ6IKLy^wL@J}?8A{PAl*hSXp5fGx3t`8p5i$W(nPNdF-)Sv> z0O51}S-_alN?}ackMPRDShri36RbSA-C1*tOHdauwjnqkgm{YBwM%D%qd(-k{{UVX zGa;SQ%YiAWL^Cizz#P!(nr zNlEf=zy0>L`W9rKGMRUYq9H^{QT@Wu-P)6day|YBq=Ae{lx`aaZK39k?hRoLDX5b{ zH;P_ZwEkNf=;mtnoX|buF+^*4`-=G79HJFHUQ=9%mbfeFC|3cBO}Ai@1?^4>3y>iq zygnaXB(JZ&`|4{83p6j=FkrymUcEft5_!UxUwZ%e<(HoCM~)mc_@vVJ@un2*pY!LZ zrJ0WV8K?esSsSdbg-t>8N2$NnhQSBglN%MsRU{3w5EUN`jY+8r%zqP7aEW7h39jbp zA;rbT4wuj$m^)>ZF~aYBw<7I54LXSQ1$7>WQ71u5Po_b8FqfK-IrZI<5Z6?f@^;|R z)25m1F4o?g%!jd#W8t^9GCz91vGuPrfSJFFQ2^vm|cUmi&&!_z!cJtHF4YQg z!evGs0TBX1nnapw9yrVCaEK7ozX#y8gp=}_rm2=2wTlgx&Z5GG`15bjTF<{z%mXHA zL=xFAj5t+#T|WFBK9Q1kgpd#z(-$~hw>RFvYWyR1={=XrePed@;E_Q$X?rp~$lnP|Hs=iIx%^jvL9}6+% zQeXsDp|93|3$BL}Pv5Ns5wE<6ckK7mZqC(KH~q^;Ja`^Jd!8qUcqDNCkt7DaxH$F7 zz@{eeJ)C&uYwfg>OT-I#c|qqn&M$qRz()wx6`tw%#%6RkHT}m=w(@W7wDz8lY>E8_ zBo*g*Jk^uM$Hm3~Nsdm|I7fIT7?0b}D8WumqM1w;c6T}>QMY4c-TNn5_hH%s68C#Y ze2xKc4}LUT`vJYFkVfai=sbmVyV3fzs)r z1Eo!ccpL6Vyj5PRujK3qwwO&duqxa}XH);Q(Gbj3~ z-hlm&moVKV)+`GR$d4Y5bC425!I4mcwD~5C=)vy5vzA}NansUSiag+b?R#(I`_!s= z)8#7l%}X8BH!oMwdyZp`S>{=IPr6ipkfy#HHOZ}s1^PLs8VN!)(*RYjo3cE)`j08@ zK|e6AqjcjDI7&S9q2CA4%7MPVUQDc535_bZ4-9&kXKAawFZn|r`q*gj1ZTOw>2I7T z1s<1=C(UmKA4B+2_A?}xl*C9sLr7En7{Czl1MkQ}PMY{JI*1>cwAG?gu^BTkNJ0Fp zWlnI4!f-+^0B!Q9Kt_N%^=vpkV9)x)R(tY@fgNyN-$vL*Yh%* z)vc3hj3ZHe zz4dWVP?ZQCF-B(T)r7_qbiDnCRZUoVtk%jAs!Kqn9_F<5H{hVd}`!zO} zj~+eu$pB4g5Tz7Y4;a7BKi&<$ywgxgoSBHy2b8AK{5QPYUcz zH9a*c%bpc$Qxi?7k;AkE4kwIIQP1?E!Sx$AuHUe6<&clM)? z&c1hUyY{yB52~MLC5-yb0ZHZOt%$L?sdtG#PDMyN$SjY}BTr6sWH@5LPW~;ogcj7->&}gLJGkWOMwXx`N1CWc02k zyT$_D%X?RYe1t?SB>xe1hcX5Rwpt;tBEl(9#>3!Qg#QDS(d;1bIX~LPrj;#hh|yPp z>e~d3@W%y>Xea>OZ16TvA{X_9sVO#VR%S|0YEELj)nTIzYV}W_7eQ1B-~@DcLL4GRI9Z%GYkT5m;!`vmBo~G zx@IuDMaoFCXC`OjBT1k#--)hM?o?+kLDh>GY-6&I(d)vV1lP^3zU2L*_TkSzp|wqo zwv7#d3eo;&-Mas&#=z;JY&(0D4HhF^)Ma05yR|)Esmu5|OaKo2dFbaD)E#yqyjMpA zG;%PqpdeQ^%L>J-FcBV!Dh1b{fg>`-f@)vqySP|M>fEVAX}h+3hAgJ2$EL-l;TvPz zap)1;iKdC7@C*ay(GnnuehZSJR+^0%G`juptdd<#mq(1L9jfh_Rx@J8^bsSJ{aWgj zn@21!>%L^rK7_T>!f(8!L=rO70S@dJHFSC?*6 zn~|+C({Z&}xHc70YWV$_GLV~*Q{c3_QU&muB)$zp=LSU|rt0jdq9-!Ud_GatC66Ju zdit=NYEFLm^w7mqUOLHkUSQ@&y?^`U-g_R{NLGK-#FW{4v>9ySqZ7PqOlSZ8_U0pU zo%e^kRxU$Q6*e8a9`vr}en6@;-V>XOol3;C7}+rDvUJKR^kY~B;)bOdA}#^nx-c`; zXBF_f0{Z1Nu>@s-T;&myx` zW=_z#ocj`~=m6QArx`k>VHgVMi!TBiF)BB?H_?onY$@ngCI>MS)S4a)!%Hrw)1ix7 zOD+jh4GEWtYaf~IKuji5>o~8BXQ_C|AERHI%v5Z$! z$rmH>c9QTxhd7gdoKuw zL|GWb|HD2wDfBqitq$V)qF6|@Y|1pj=Z8Ix^7w$`<+rzW6b!=i#qQ#Ky&@3)zcKqg zO>`nx5&iYg1{Iyi^U)SnK1>&-H2(0!hCQ>kT>tiq&=ND>y z9dneF$4jTWU$tV+lo_s!^0yD3{j8+q{egYgEWY{H+|070JKy+EA^C)7LBE;nk1L}e zTm}7l@9+TnSu^@6dhMgXOg1K>DG6L-d@y|Hs3nWXKR0O2hVS1Vb?Ex(FN|Ka@@H$m zNA5d!qJ9r)kQbgUEgd;(@E})0tL;nn9C5jhR#r}_yR%$Q$l0{?(LXz}&p!SWp10Jf zc_j>QYuuem7SLY=T7!y1Muh?%dgz^7k%pa4iwFvSU-3rhU|#tzE$syd^tQYk{{0|K z@9$U-H!QDsJrOp>i1N$3qi+qbkUiM)=HP4~$2kb|WgSv?nhl2z2Iitv>`PmK31LU@ zM)oHCoEKt54vq*~8Hnsi3i8&tuQ(!>4zl5$>bc*x^tfV@VeGZ=JiIjHQAVP0O}I~> z7?96~>(-^DxFA0>9VADd4actZpoUEIWlyyrCn1ewO}nn-{8COGcU4O~7JYexc`Ul- zUOA5=J|B_CfuHz);&CLI4Q27FsInWvV6|&YQf%n=SyCa+V?R%C^zES=Re_x)ODPCc z2h=Ll1*G3SP%tp#Yaq86H_^6j+tRkB$*|UoU3B|gq4?-`lJZjvQll-^<9;oP%eKH+ zpwRo%e&@QNXmt0a<#k2aGGke%qVANoOI*DzZqa7nWh_f&I19UAUpkO|e%RA&inj|I z1-K7+BK1DvX#j-5^ll$U_bOez9Nv$|UdI2xFbk`G;DtL{3sOPe@x{^`$8@6*n*W_;VBz1-m4dHdu| zdrr!e8dwi*M^LHSF2v?7=$r*aWNbinJnU(NZyNi^S6oHA1#i>eOJF(PX*J)0^`;Z<5g{UsF);(U1B?<1W^0kW*Hebvm*7?x zoH9u=WQnJ2?J*RnrMCxj#SJe>o)*jswh}2tQz!#I<2?eH#Cd@8!?X7Y3jzpBgGVg^ zEBB?K^~jC^kRrjYLTW z^;cgB5%}sW5(2*H^Y@(R+m8Pl`!41_5%#pZRN?8s(U{13`q7vK>Vux3aUg(MrP_K| zRbuF`K%7$fQB=e!W%MGChmxlTVoYh3NM&&}&jIUnm*}Yr0?mb>5n^N>2B#bKcFK)+2t%@c} z1wM!^9ReMyN-GBcvEmx4-a&~rv?5i_w2SgIo}-V%)JQQgsWEWO!T?+KFAjMWY5@I< zi`qJbr`L4Bx50^hNXaC+XDA%Uhlx3kDi@fmi zuD#bz{T$o?--K*Xyx%D>86qDpfLSmjjbJ+FslkDudCgJKCM$V32v6XdT0#f3gZG2=rIrHAg7}Uuc>SaCS=7z}GXd|P2c>vZ@H)Cu`900!|A^Rv+q{^* zS=7G;&hyxR4R3+huyM!Z5w^e={~r)-BaAaev45wu<)CQDEY4J(PQNb!Kr7&kwA4^+ z3r!{T^VAHqt3Qcni0>Tkno1z?5YTS;$FMW8v@_wG0Se}X>{4fHFff|8utQhCI|8@M zmlnAEW0*}-#M!W31HDP}XK0GBC~3#USSsgG>%ax1u_13f7=vI3k~M`ic@X;+eQF+y zFasvS6g~NWn@@g;Hk;7&O}M!)LPws%U7Ujo&KW^HTJzwIQ~wI|io+_cCcZZ8DAwk0 z4h`CPOE1~sPm`YIEhSrx(r_4VEQcW31m8 zGTS$)Z11;!Gt|yOKHOBS?m5FDP#|{REMVm4ET(Q0C*FZI@^7+oocw zEWHyiR+D&+BcApf_(K%vg?S-A;|9(;;DyL-_+F?CqVxq?9+h~P$jh6K$jiN3h`*cm zHhp~mJ_YPF)=0G~e6CU88ifbZ(hB+L1Y?D$kk^(5EfDo8Vb+(#-xshx?3-{0jMs_v zQ8`60LxWyNC?JmHWza_UaWY*REZ;LOD}2R(n(X zQTtANwRY47QTE$3h3!B0(b;!DhO{E~r#=Q7iF#5NNy9xuGOgVEJ*DD6V8we zt~1+YY7vj}Xz~Q1lBsbNRB}qP%_d0&Xmp(0Cb=l32t{y7aWND-bH)Y?qlUdI@D^@o zN191Z13^;MB4#HHiVNEzx4!Mb{X6#FHt)XW%QkB-v)*4_T)uqMq+PR1%0!# zk=UYJgcHxxbU1%JisuMFJ=GIs#q?7eQ>y<^ZwD5Bmt07<$f-7#n;T zk`^i&3Xv9wNhB$e|LuJvl7N^~8ZUbd>7aE`AFxNUq!{1>a5Et`tjIkineJ;y1q6W~ zI35vA1t;;G&1n)F54>up!U9)e03Qn(d-TTxg9i^EzW2ufKJH<2h><<2H{92^-)^0c z%CldxYP>*}t^zMN;~d6GPHB`UKBsj&fKSZh%$4OHf~9Hn+(_J4V5ET~hP#`Ep=bUd zK;?>`LPOw(b%#<4Tm>|NoHGgtRh0KvbmWXoPc!QB3UTrZnez7PyI1z_+qeJ9yR{qJ zZ<}^v9)7(wb;yv?#+TV5RtJvFy6Nn@H{GPv)Qo*-JDs;34;Qx|wSg9KJ6)^1w>I*y znGz;=P>o1tJnA6gaM%~=P|4vYuKeCkLzoE=Ui9~TFtu>Ny+N4Rn70)7e{Z~>Yw z=D|#J`}@wM1Nn;>ah?U|oiI0YD$NG!T&4UYpv!Xo@bq@|kEM*RXg_G*7+THPCk7fl zf!ndIDHR<7YOY+>zuKey?MLme+TUnJ=xvAf%r)Hu=|DGVXeiv;zV-MBg{McHg@E`M zLWJTHFbGYOoE<~yH2MH5F9!5k?%&5z4LSi|9=K`3pPoOmf6{}!c>iCyE$fnW%hd$E zzGHK*ZlC?_^yl40Zo`UmM7<2-AOSr*-4SfZbq$+~`aDSJgF~0J4a$`h3B*i7JVvmQ z{z;C{OvsFlv0)0G6vyId(iE2mXeGqj?JT#mJ*fcK8xFjkJD0gMbOvEPn)T%tl*aN{s;eP(06$OXj`uH&I&vvMY&XLI;KvOmCi4DZr&Jr z$Y!&p+0xw3Y6>5icg<>bn3B0_A>G2VaQh}=${zq^6L+^PC`MJq05nd)H@w;n}gqq z5HV7V2~%9 z{fhsi{BO~W_nQ;b9%`?cw9)52e)sH0Y)Rv<-v{*J9b3cJVJ)k*YV~Sh6=J0-X_hA; z4vZw26pE}Af_t^a;m^hL^o7vI3j)ax;2M@!2WP`_0KoB@a8JT3_axIWxZb3^Sgz&6Uu#Y&Qb&LJH*zudi?5|nz;NwWh5ptxwv&k zsnd~>iq@x_9{|2Chm~mW00RGy2MV}OM3RP|&sZ*DSRKq*!c?13C(W$}TzF(k0|tzL z$4a8fCrOw{x{-KQ!lhdvAM@TK-{T!^I(w;jpPapqJ&#IIS(*_{P2Rn1o%Yww5p zhd%ZGLM06Euiw1+4x4;_l=VL>-BW!Ux5Ay;LcM;$brIDdziC(tHkyy4A5O}#NtJKyalx10cGgpW)2;VXDv&`_eOxDWDh z20OFHO;DCSX+CnbG^i&0h!&&b!J3&1jM>ByRc{mW+- z6v*29tZl9Ps{Yp^tdz2~sO|JA4NY0^O`5d5L-|&ed=Gned|@i=8zyyvY(0$oye)N% zi^ra2pkrJR-+y=4a6Bsm0X_Ogjg&5Ca79?Q`DgfR+5g6$OnuR zwh_WtDbC!=Bm`gZKPKB@AXFyF=Wqp1(gv^st-}Xw9-DX0yX&S-H4r4>Z6FYuB=V;1hJVx)FO^KvjXc^g^6WctR3x$GC9=Q)Fr3OXs6X z%av&-`y0sJ^fcN`ny^RNlfr_)axFW4Lcr1gvb=&SN9VG~AKbQd(7-?RzIw@?Jwxq- zuetR>`H=S6*78oOJh1n6_K6*?Mvzpvk&);uQL_z+t;*cX?2e$ zub=js@B67oOe#fcFpK~WEMX9!8I0pa*)Jm~mzsj}Ww*m~rBiFpTzhjC5GBR5os z)^6NQ!5yOVVfwPv#0F*}~18jx7>d~30DR+!7yWUxHmEF;M)^5F_!AW)d zzBpw{#Vzg%HF55Ky{Q2LWyh(wtBZB^QS^gixkKtjWz(?o>QNDo&JV*Tov;)AEhFgAG zz95!HW(Zq?fqrhFcWaL%}H9GqEo|)2?Q?Kqs#`s(iay*Or<+xTgY> zc49xN4m_RqQ&_#I-4HjcI9TAeUIZ?JA5PLizTO8MQNpiSkW=g{1^@C(ssp!u@`+6^ z1ApZn`SFcSZ{9f(#`}sK}?fb2BpZh*D8pgF>3v2fD}8l2cIF&fMwfdO?jZ zFwPnwFu4yKKSJBU{&P$_rX4!Qp2*YgAHkMAbxi%s|K6l&mtT@!^m>$g2VI`cV#u|_ z`)2+2l{y>m%abN>!2BU{pYXCQ`i&XC(d%7P5#44?)T&4|ux#|<+nM^`BL)!9aRc}v zNQ9?_8~{%zBcZG-=DdPTRQrob+Z^Q(oKBXzrJP^Kq35ao)FBND;o#ouH2YMKkk~(s!-h`fl6Wr@NKey7t++t#23D zXTcSv+FQ)Jc*BOp+Qr68w{F-lpV#anxQjdfaWmoaC^rrZ60E}gPKE1OgRDw&J;;O; z;=^J?O&SIoWxL&}F1n`l<~A7Ai^@d=;!q%v)>)J*{J&Czk7Uh?>HB4n9y0HI{3v2iFc})syZguico?#v7;^k6_7^q9Pa&=9<&I z4*z3y9u(%KrWCq!i=D-yybwIFVXMOMz#XB+P$>-Nf%Z^Hsi86>m<3N64oKJ z`gg8O2g?DcaFpp0@D5)P@&uHBzAFXuYhlGZlH4#=FtG{ur^Rm0l^O0-VfR&) zuwj)w{yKZp*MEL?w$|knd3E*LwF?)nU0W@mmv`1B>{w2xeP`3HFS0w7i5rZ%=?!=% zRN@$%`zQI{^Qu1hJuItLe4GUiMgmL>#lvGEc$Dv>Af6(2+{uUE=_-J|B`D-&E%%u_6y*>Mme;zn^(>veJ9&_M*N9xjEy_Wv9txYat&(3u}P<#^+ z`mp!n125dCY4h`xS@OzR+CRv4mr-*msav57(g$dwW6STdF0uNNh2WIlX z1A;Y~8M$pToSDu}Foj%JSR+X$l)7K zX$vm3PK45y!9>X{o6O{@aeorb)T6ZMUdCH1JM$g+efw~Az?p^$(84@o8;sPB{+t8o zPx4y1nMew1`Rr^-}IX2fhcA&Kau z%(FC|t9-6+PXw4n@vY_anMcQb%Hm)6+l}|m-?w$fskt}2JF`i<_~P5wZ<)2HVdCNO zrd@@F|9NBQ(X!0kTW?;xrtiS_OG-XFd+_b@4A+b)b5>l{op{Ma{TR+wG&&&#&FJKz zZpy|a%0V7_0X*~oGFifiJ@qHf-S(46}jecSJ^@m2i{r!eDgPt3|c*&@p!_}@% z=bs;4x+y0?F2A#GN@e9ym+Q!$CEHsixCRX#HL?`l1(e)FpZ(O(Thp$ z30@j;JUmKm<#49#I7@u8Jh>4zgzo_BbZA{D!^~dOx+y<5{ayafdu-o6xtHwO$73wF z!iE_Ko85|Yi+rTn3Xj7=y?+p&)-zVPAQ5(_93dsA?Q$w`Uvl(%xl zAbo)d6!{SqCIwy{H-yQZbLCccLWnpmy&_faVo7%1bi1M~V7JMI?x_c!IzF=YsP@0C z>|jl0@-dTIlHQ?L#kR}U(~H_}9W(w}^{KZ%nBo_{Y@8lQm&^J^Zo*004z31NQyRFQq2@)wm73BEa8IF zA()FIN)dds7(^t8Y!L_urx)vP`*Hak`TcLdlm9t)`Ooa-rRz_!q7&Q5e7FTei; zqHK4vIjrmnW?y&Y$RPR5KmJ9fA^-XZyKc}Cd=a(~uq++Alq*?YC})a)Q>cKS1OX6R z?lNNrC1$nb(8sVCeQ36w2f5&mlIg`MDI_Y526pA}xG^u}9kC@{ z)zw#UI@Iq~=xTWa-)+WsKdt{8vODlS!{7;o8+9;=C6R7fB`XdxI03-=MNs5VA`Mf> zBK^ZY(hWbIk%v9QYM!4myL-3#fw2Qjj*NulLfs-cix5y!se3lN^I}#+kI40b$>A~h z?iif^zvyPc?`v=cVN``^4aI#yAU;ZkL}O2Us@=8tBjuHOj7HVZ5NL?K8k}rAotheD zr=XPHpaz<8n^K6_KM@TuvZZ@qh4f21*h_|oFwUi21FV~EnB zg&Chlg`pL8rvh(+Fflt&Kl0+w0E-PmLhtv(1XPLaW@jHTaeIWnH?qJF8yLFQf z$;S@JukAd{;tsIsTvp?L{TOlLH()tdyDF*eUWnFn0jkI#OruK+(^49-N0K@aPQCsu zypSnbNCuiOA}taoWF%zQMpk(`%yNL)aIhHN@Gy&XlrQ|aX$o83)HH7Vfn#ieJ4w1E zZ)jdKd1Sr(iu{@UuKWr+v2`H+Y+Zj{?Ll_-@F96XS@x{vP49j8-Ft0l#Y9F-A(AlZ z3cLb6I7J5FYhdMydWvakqP#ugkqIBuM>0Cs{%+SEKNyNsPZbXXp6u=cw3oOF*VjP!|0d%SXY6=hFJru(+Gng%Lv9z@q z;t-B*ls0Cgq&2)Ul|XY*D$-NVJP0HSg3SU)&Jra)K74Rp!>Ia^lVls)$r8Sl|G_?S zV+rzJHdoI3Q2xeZ$vI&Q31zY06sJyJA(m}FBsYB`f0Z9I>2}b2FZ7!eeuPbc3lM^S_jyPN;AL1eRHN$&Vp6wOA z4m4_K%0`wmQj-1$$zz}sGr4h!lZ2olLSW%!2buzDQN+wt^)NXR^@knEt!3pbNomD} zkXEso^{NQLd6EZ6d)&FqG2@mgBb4JbbXm@&y<_iqKD!X7NeVnHUx%|ab<2C-F=6bY zQvm#$ErA{5pZ94o$yx%7_L!@sGcLSpMlkw_>6%r$sJgtcP;iYcEU@@P`TK zVIzfc+kUqzG#vEBW4~z>oHhc zIs6_&$rv345goz2AIQz344$XqW)atR96th|8TFf7-x&?K&xUo8!zvtznA2FY$E+dTw~UuZx73i{d)M@ zLtq2(LJ9(XdgMcrTs&n&>RfSn=(2>j1$eo-PAW6NmxzwbmIp0KNZI{@{MdZ?MONr; zA?$#LU7wBJH^GiWudYyZGzA|R*#l}TQ-)5ZcoshYXfWQ>s|#=!a}ZTH&>zZ^OLmxa zFbYrxq|BTYo8MrE<^TDS{pHm;?jL8p%05xi$WFITI(8+St&^7i90n2 zNY*@Iw=1F>{C_+0;5P6dDM5ioF;XZs8#RD|#%5H?8v@Z4-UM=W!Wi&c8;puj$x!SD zg`DDDxz~D{$5Ii&Ry*=Ex{|W8M1e+|=627?PIV?hO-7nSLjaQs5`%)Fd=yj?U5v$) zNheqY1zpNnF=69WctlVg6+6kwR!Z~Jcrrf zR|M@``x&R5Oz7xzx+$U#c9mlPsT|cBid-F4;6;%`Ce>Lg3XU8Rkq}4_O+r$oM}YKD z2XBaw|NI9HLr&tO4B6IF&MFPqR?lD^maJmPCn}Qz5H(R5q4g9cK3L&%AsQL)-+92l zsR+pi4idtBXf~G=lN1q&>p!K^X87Eq6 zT>X4$MfU=9=%PDXL_S1A!>VE#6B7~)e+LvNCd9=?qJTfds(`ZyQ`kxVqf|SHZPFh5 z6mClY>@?l6P~)#w!#x|Z9*&@~`*Rm{3W}D6Zr~voBrKAWl2VdVBBFV%DvWfV>Fg}t zq4Kx0GP)(;@k5*c+GY8iKETrw0`jQTp|xZA2c-8mu3p+tAOApCY}b;STkH` zFqqJGwoRpJW(Jip@`6l$%UGPLFb}#8Hxc54RiWHy!=+2^7dj3#9i~!r!)vHNYAxv^ z$YkiZ1J@_d$Bs1?aN22x$s)h1(=@CCD036KUqYqxK>^faw_SZVVAh>K*sc;ajK-Bv zsdUAolD+eZ5~G%(D;>S%pR?e8z1y+Otq z`+||ufkGe&l(IXc|G(@Gl?r-D?PPbv5EO9zhTYjK|IF#<=fk+)vp-Ay_9p{-gIkrl zid<`la=Lu<|F%bDN_ZCTw?|?=m5+6{N&lcmEZQDjRre@I=;Lx_G85{55U)1{z;vMX zb+K1zX=yoWIoVmH!njCLzZ9IMYo90W^18;6Vx-p&ZvN}F_f5akqug|gZu9J&L%7Xl zN@hWURMxHOw=8rV2?}fuW*@UT#x0g?pCjIP3jp;G!1_-`K#cH(0H9*f;AKR(=7U#?K@4dZ@l*nGv% zHmB{10LuQKaIqmVqn{-tOm%2Ql;tfGAZ$?W22v*J>$Yy zgul`dO@H&hEq8BNcLaFJ$SGjA0 z;QdAujyf1VKXXBozzNo?cdik4E-H^vFA+Ez-nlYKGbErlMWlFmmMmFc>7ska$174* zf_x)gr!3pwIpQ+JcI}X@Ugt=mkMK>(eM+;L^U*8hper;Lqr+1`BgObAHbH(-A)aS} zoX8NkqX?q~Gm|N>4vtbFGN+jSrw*Sdpef3J2x%Jc!Yq{E_AXw47d(1jV$=RP!?gGqmfucXS^V!DIH>#pfBC8)Aju;c38T{=yoOj4-x z+h-GeCU^?yXwGp9lmf%v!o}q{baj|6JW9V=y8I%bP8Zl$hbtPt^%sqPQteN$W5?xmMlF`u<6_dkqzNoPKGJP*kS6Y(cKgZqz_K2PhdW@8k?;PZU|w)!PNRwl9Ued zyopf`tvnc#>hs1``Hhp-v8_e-tlMyZ z_SP_`Xj< zq2>({W)tFziVMfU0)FA3{#mJx@vWo~O^PwcHg+*qU5j*GiSZUx6qmf*wva*+mdiD| z2*klql_%sey(^Md*4=?}LkdL4A|OTrWP$+YD62zT$^fiR6BT}g@);Sp{=E|l5tR2b`}7k^8*g;6_bs?r1Z-5wjaX%cCkSRjyuMTHp#Oo2<|R z!N83{4)*_w9y!%-sG~+tU7NvK>~P0u({>OwtG^A)up?7v!v^ zqbLN!lL)*%F`XWSO7&??4b7({u6&GpfL0dmzd^6PblUDa2o&`a%&wba0#uFL`uK8?7IO)`I z;G{d^M`R~)!nXWa*d|`sh8en?PUD8S1GyaV``RivgZ?teaLg+TG~uTYA(G&Zvdv{x4lE@5eLbj*s^lXcQ{YEvzRY8 z=l*?7A%Q9I%ZT48C|CjJ?2xReJt&DsuW%j(XgnfmDbRR?vrN(RP!yPx&1Ql-2o*1i zN^?U$J}GuZp@&(&CV#fWIb@wQ?JW8unHe|C2ziqO|QFV1yjnlQmNj&vklpg=_+qwBc|QKSqX2|$TJ zi8=@C0?~Yt+mE3KQv z8rT#~(_XFb3Zp`KTVOx9y^yZiLFqVe4$M!sC~MXG*g@PC*~ z`D5%DAun|5z1#XtS=MZV+eAdBUdS&15NGW`0CB$Geh7O_UH6pK$0gGb(gpC~kZvy%kob^oe zx`s)4g+`RbcVSObldj)vOVWJjZo*ftuN81(~JLJJTt;Q$~ZAAzH#gUweEHRLpGnAH4 zVWB#W-i%Bx70=r77bPOn?2=gf>E<5mR@bbT-#C4mWuF;py{&EAHhm`CixstreFpH@XCUZnJD)R}DKSq;=UazJQoxqB*0-H1N_YzV zL9Bvw1;r}Rk4rsSfuQ>TL$m_fppK#y(l#gycCN!<1-0^1#?<*oE7Vv8=d%*4nCzO+ zQLI8;K`?9nEm4PSgdC97`Tr4eP>yTg|6Ry|_OJDY|4qz6Cj|WZnC`gRd(jHJ4G6~W z2sh_;Ll7q=CIqoqCy+cCX#)H_Z*HVcyi>!b+`i>jEn3E8Wo2q};m{E{iMNYGVP_yC z5DB^=L^DETbESou-DzSm^;C(rmRiMq*zV?}TZiwy&17=F$9|4oIP(5m_2T21+5dIl zbh2XW^ha%}|7~4(w8!mD{FZoO$QYV^I%h*S_hs?rh7o|8uCJde{;NTj|3Kxd4Gow3 zw_e8#dub}_(E7hngiR;p{<;ryg6SNFK$dfb0j|DS6~h80T}q5K6h&U5gq34fmkUhL zmP=#uRMVZCsT$reD?44A)I|l`v|g&FQ=0#y%*tv+`w?x4)L>3qx~iM+lJirhR&UuB zT;rV5=k~ipLvK&d{OR+iy}htA5@9Q{LoEwq!#)Qf8i zhTTJG#%f{-vcD3d5vWMklOKtlC7^NpeO0D|&=ngNijH5wj)({o>W(X!E!yg&!-=$u z&$i|U?PazHf|i6$8aA{k_`Lt#8kR3zwtPuhX^#^5kl)^FcsFJCZK?2}D>N5bfbPfw zz_Rpa0fLBRlgLb7k^@jM(0+e?vH-vBJ=!j-V_Xq04i6QC!u*`9^i+FtLVR>oXl!^a z4u6Ov!V$t5K>A1J0I@+Wj=UBK4h-6M=iZ?t%&ptDZ5>owJIHPN z4SW4K4)GAKlj)3H=jtCMnfPGhH{WhE8EOZaDb0I z)0kED2$L(TB?y@349l0L8{NavDr$lFRO=E_v(%>ze`g++=NxuFewgc)<*)%Kavf^q z_$kDx&Dh-t-p5>{6Ns--NLnD#7^oW!@-$0Y1vCOtoRmbQ5~#{yONfh(3JWm>`Vbr9 zLo86G27rK-l2snEMr{vND@iT8OFM63R_jLrTE0}iD!=u?&)EmQ?Dw9sgBte{N9Vk!^W_w>$TOzw8tM)7qKngNMD2}-R`~y%|InTt z@INI5>4B`2tc*0`za=s}Og$FC?T$s4{IBpk3F471Ho@l*OzCtJxUM7lH+bZ~kISXW z70EvZak!JL+*-yu3hx_#r{u$(u=_~<%hZ5KZ3OhZpX6U%b@;IE7UXlsg6$K~?IsFUg zk0PhwPJ21+gh#(iLOD(T68fGmn|viyh1sHCZ&M7e_Eu?-Dd!qpRUXA$s9 zeH0VbVryEovrwx?qq42-g79A9x_a|9;_vNem&0Dw=teckDC&J|Xuwo5b%?yr^m3x! zcY?Xk3ViN?PD7U-QFOHloBN34O`S)~$zD--uE=N#aXf&ush@`O=Q~Zfz{Ma4PCMZ) z%wehqr3NX!hDv7{5autd?4x$P_eyN*oNMr2!!;|mOe%Q_oPLAIpaWD(i`t_a5WQ~0 z|M)l1nN)2x&f zq24tZU1@+B)buHre$1~y^*@j`fr0!O1at5zkTeMiBt{7-3C`q1E7holhXnfwlJ6be z)!=Q`SMw5BZf7H+eU8P*PNziE-9WJt9nFU({~=ab;0lUmIzuET`|2nuM`?yc-!lRk zQ_v(lB#hD(Oo!Hf&sWdKnyCr^-kngp8cFNiQOm(nd=^bc} zj&}`_FlAa~M7V0rD9Xd<$nj8w-?V!6tiK5}z;Ek(&RV_y)?x4bXC|TRjV4)S6SPB1 zlSm;85fc&aXX^UiC|#EocSI4M!?WhI$7NhI!n9<5tkc3 z+oRo{AUBkf1m)&&i`(5cU2lp1og;tU@xFME%+>Qo@TSK=1 z$~VO#-X>DhXUTLfQ~cN%NG`z+R*?tIG(}sdMY9CH1th|Rzqz(3f4S><FYUP^k&e>pXod9R zE=MARaKor;4Xoy8BNwz&Ul|FNT27ZuWi&M{;q}RgB5?F9M-tN5O3q}86QG`xQzGA^ zPOl|qeXq35!I`@ipG&=iD7S%b_ozk?Q8=P(Bia_?(~;Vw_MxbMS4X$%bULff${Xn5 zf<@~f`mRVGkkIC~svU#suz8F9r`6K8KhbVjFZBx;sv8chPIm$QoKk?jaauqV6J1e( z0g}K&xibV6k`u*xr>8n>5#bUF&2;9dP=o=D#U&|fBdjo1Tv{m=7j>7=(V!SxK>`*k zN;XzB_w28N{Kc+|EdT7dmGdSn{KL<^rZrbMO9$4ZwS52Ymu|hh!rF6=xWAA5&b*iQ zZJ6lTSGsxE{dH5<7S{Z6W?c1@+lQ8pEOZ37oI5b`^y*&I<}U)HAn?cJI-L`8RYbG{ zmL_J$E40UjhP0*K%6jK^%S?}nCfbuE5T*xs5wK;z$T{KoClL-vIT~N{mWonn|9O@6 z-m~t#|HR$3`+wX!CF92H%d6h{r=xmQRk!5)KGn{Chqg1*`gtvjrn46V`i>c$I&jmh zN&PF*!`5`4ICk>b!qM|$N8Uan#MZ0dv>rMAv*JzVV|K3_aMz?cyFkB!A*)ewTk!ed zSP5EQ8#qOP$F!KF(pE^tu=<9Y+vVjY0LduX2kAqWO+_OTkSz1^W%u7MYe<4S+z?KXps3$QohIUR8V{9>ZRLal;bNTMOLhYCdCBH(6l@R%BtB9c&IETAHvx-f(W zYiagCFaE(Vk7ni=QH>-v+%J))*8a8*^QO|MQ}V%r$lgAq zIEK7<7l8w<&nR9(aU3@ymntGK*q#g=<7T`Fn0`SG*Tr&n&!KXCGq zw=cJj(!cTC+(l@$PCi=1ud{Rypy!oA$Ur2%)-@mvP2gh!N%kye5pjPP*ap_2jX_|b zT8d2RTM1ZuN#fo6c=#n$*E>HiGBPzi(vcEjN1ZwzTksvcXM%7j9OBrv5792ER+PA%# z9X(pq2~|vM?$vsMW{#m#&DFVCS|{QtK6#7@mqAN7devA3WS=c4y*Ds42~h}umc-#l zw=pgQ>g~}11(bTw`Q!tRipmr%ZvI<6wFg+brd35Xg*><%Z(FR@nnhwGN{jOR7TJAN=01V;R zECK+p5pTvkOq#($_{wKFx>B9Npn#!s!3#{g62}7_U@+HaY9hy? zQZI$qT@i^uEhQm7PncYqTtN_W3oRc&Q?!*Bk5V%rZUZocL2Wx?1>8{WWC+y-wo!8% zQnL!%^67oJET;YTHv-Yq?me7uBRcv{w9ROA#bsp)yc0wB916Wtb&A3~K*Bp@URTlg zw%lZ&brF7V!(4H5S21|K8o%2I&Kr4czmu#x+~YpgV@hF`A+Q0r1MVjEoB~wnun}a5 z{!j;gPbDR+$xefJewAe6p!Tsls?|m@+12;15xFBMjc{yr<%Cv2GOIew4|sYGSz{O;AjXz^}d}&tQE)t+GTRbgFGsDq+R!$$0Qjy;y+8LIdu~M8i+|f&Zh?g2&tB1rnduUKWH^bB$!{d`e zf(tVZO-sVrmK~6>n~>+4!0YY95Su6!?izSJ2`8IZ19EV6U=ZMnfyOboI0F!X4G0LW z4(3~lq`3c9#=Cgc8NG|nwE?A$FlN-Zck-S_myIL<%*)U1mXSu-QGY4WDgir@f>MQ@ zMkluvRc@9l%)E(e0olLXNX92UEcVc}6mbQcHa6Xril0K#Q`k!W6Kcx35SM?JMn%>( ztlyDf*ZzSMtH=)B@5H|h7w&uN6HPa}$FEiaEkNx+I5gA_S}SxSB6RPu4egGlvHr!@ zY1cTBS}a|;`{UK_%IfWoVlkXRn&j2)1p4!wN=)dc?u6&u3~9qvT*LBxogOq#UP#e# zbO#r>a*0#0d3oiektX=~<%ZN81?L!)8#VOA;h@UN&iJOFz)?oo5%Z{&vh{;&uur8^ z>pwws_I6P-SA|Yb1tkzZ2z8_5O8ab(ZzhNxA1y{XrbYB6xV5=*S2=EN|7TlDIEL?Vr(P3$0F77fXCg@u0RP!gY!)Os9Dy+?ndn z9VU4X93}mv+7{`TZC96Q-V?qD#M}V-ropx{AbN69LH35HqumiElnBfk$vwe%SETnP zTtFz(Ht1-O2syAA4=U+q(9_&mq@oV=s4~Kzp^J&aK-BbKNzYKtP{+@5_>Ov$(ethx z|3~=;s&zHc7Hu9Uv@{wxWT5*|gdJ#UKOfW@g)XqF7n+_{p`xfEYK0b3(ipEP6)EgH z8@+7$1Ntii@>Mn#k5Olqtm{#xc%BQow~FFR27`Q&k@HDB{gQ^5xL4^WVtC1nsq(wv z#I4{d#l;M;K5$++E4foGV$W4Rp)kX!8%D``#UN4n1u?+#oemt;=xcb?niL>dg05&! zwfCV(5HL@;g@S199cQ9lEZ@p15l{n7RG$#8n~2ymbz;LYq1NXh3de_fZR7aZVb<|J zcwF=_Q=k}zf;ie+aS-J#G?0X)xW^lL|8qk6HM;_Howg_(Jvyi)Hpws?L#su!&Cx+# z=nB9bRWwP&BpSUQ4IQb)a@!~PwyTeUad-;N=<@SYoRKL`OpJ(t!5N_i6?_KHO0><0 zHgfQ(rOoKV!mk_l4I8#kJlIg*Fmz}`{r7R#S1h}I^Riy!;^)SX>$Pn2mYaHAA2-)C z%Fw+`ok&a5Reh!z`%E{a5CjRouvD(qHR5aqz|8mZ0RD=`1D_>ZeRu&EB@nZVIS(k? z z*|IdxQCyDz3k_{BVPf>hT7|E>Y=ONj{m=oAxW|z{@D&(6V zC$hjM`59LJ>KwVxnzE7k(~H=@SbRfvo9=ls+ z8jXAlWYm}+*k)e*lFN+gkr)+8b6W}5Y_!1rMK4Q2ud#VzQN##Lkrn^SC(P~*e02Kj z4XlbKj%_F}>)*60-0Z$R+%lPF%%V?liou2kpD*6*zLc4HIq28^EcXOzQ|4gkY*<`V z?WyZRf?ID+x7~|@v!a4));$4FErV)!(M}EXA~TZAxKtz|9FYJlCLW7H%R$d#xVh!C z7@89iNP|^?f%I8RamQ=9o4s2(;OJxGK0bu@u7C^U-s;Ozaf}CNWK6hzzQgYRI3#R5 zjiF^b#nOoPUl}G}pPjuY@UuZoT>B)8Vr7;f^Mb+a*Cj=}S6L$F(@To9VG6?dc|fS#}ZZpk40%PM!E}`?J{+Q6kly^Lbql#m2^i_qiC`EFnDCg ze*XpgEkXt%fu=z0cQ~T!NK%R}M20IP%%YBmt_8n@NCbw^m`MVG`k^nOO+^DT7%A!E zi{F2LS?;C_=-!lGD=)q*ub(cx!p6GSiYpHHt}UDCe$gGk-gJN5pVsz<9IlIn9w??> zEchAA(+M`LQF1}>$*ZQ`%ZNaXfVgRGAN6`|hjJV-_Q(W2BBf2{3;lPKSu{*g)UV|- z{C_c8$5KMIC|AVP2ql*!z35FN-PnBm-tAd~(uXe?(D-%X)Pm*9`c^Jm|6@SE2M1jD z_N6fgbv^tNO5=x`?!7r>cSYLR?~9$`=kyc9rZle37enm>YF9n@Cp)d}GS;TVG&5ak z7Oa76F}#i->j+{n1@ibcfnI4ra2)mcY9=Q`xeQ@sVV3IA z2{)FS?`m^#Ff4+48ta^78WfaZtUbGt&j!XsoGVO}f4zF?(&qd3Y|$p+{NbZ_-uuvf zNR)Rl({|8;gaht8lHoY$70g%AiBL5rqofbSL{(}(1}fB8ItM!evk{MHPB%o&IK^y?|U@BT74%y!er zQA_P%!4Q1$3wJdAJ*@lWnX2-hJ?MuLt-?J!TC;oC`Dk z=z_-IVBAK$$2~~HTsrEegkl$QhWy~G?9`9!)T{dJD{rWMX0dL3#;f>@7=h0yLefvq zduAfEj0WS4WDfFxn@6?B#>U!XZDiy)<80`*8p%0tFhX7WjL^YIY4joFIRfWLY!D61 zxyw64XZGcnUb?*T&O7eerhkLREDNubbIGr4guxomDDFCq1IAwXnSPk+sLGbZ zAdP8J##VoEY3gn{Y{R;Bx8J^Q-3IB^Em!yZ8g_Efn|z-2+X~H3|M~&?fZc>WN)R4D z9fPgqrX3ZbT4_;8m1%uX`2=oqY?O*qvamhB=IIJ=zfn9wyW7Pl5Yny7PXJ?h!61DJ zj2AGb&3Et#n<(K$Y>;^4Q&g;)xG7!Loc+986)Pt$!*%V#if3hz3yhJ zon8q&(t|<{Ltw212JgfrFh4>5+FgxA}Gtxo-RQM<1JFG>o`_ zDdvw39bm}rReRUksau*GoP`epTmgGeUBJ6jjKY3b;zYkYOuFl8Tndm17Z3VGs! zExKT#O6b-^HAn3Q++jw7fmBFj5z0CJMI71bQhRp>F<a-S!XYW%zt{_L&}K7ta{B?m13&yDv@XZ`Z|~damI#$?jlI zJ^41g&lf+2kct0epG8qff-IcC84Sc3M20B?=Px}rCKy(y0X(DBzQ~cv;GT|h6%2uH zK0DOA*FmPV)TBfhr0Az)$_&bkLG5-b4bULBu|O)o)Jt5oTy>=t8_~*6v;jcDa7b-{ zCW*ZV8RcwiY~`o-v@Y4bxktS{f9)+ZtslxerVNM@`-esKl+SP9{pO~ZE6e0P{hVW@ z*3TC2*fnX-V;37H-UwztdFS*!?C}i8l;&e2q1zt$^$T4F){{p*3U%T{f&|x@B*L?k z(qMV$u_~-Zlzi2RcdRR_>{8Ry=rYk957=^WffcV(J(FCa&`bwq#0gDoDk@>mEU9+= z@M^=@aWk4njU2RTM@`Lb2OrpZXw2B7Q^t-RJZa3>k@D@Ec8C*Vt6k&Q?+p%)c{n~K zcw}uwcFwjr4U>zDBFv7X38A55#~qwaO^v;4$)L5^P+ph}BoJcek|se|3%q13j*n&` z%>n^Zl_Vw|r>59bQd4Oyl+yNx7b;;db!cKS&+@=1lET*BEr0pzh|?1Xoo+gM>XDs$ zAKI|(?o9)aHqSUy|Jo00#0l0Nvk#t0NI2?n&Y0XVXWOWX+L5vG568spT|fR7qPYk7 ze=qpoTNvRQngJ`%RaKdnj!6xm8#9d<+9txYaiP}8(=p$Z%MKgbk8M|gf7|E66~2MuZe1mX>cgb#+I2nK}Dqe_d7#T1yEQdZX7 z{FG}$O^?2P2d?SU&s8=5#ud{_O7L=7b@hyBOdm_9n@;(lhRraSKVuW#ra zu&tsH*8sXY5xa+LLESa->o_cmFIP+5G9kqg6O9=#K?r?BVGtplJ7n|h{wpm?qlvQM zg@MYlY3MLja*KQAqiooXy~@k&w{O^RyS@A-`F}<{xbH7FOrCth<$Vu~kiVARlE=%{ z<>iA0l_cGtRJwcN!tO_ROur*O;g0D$j#ZpzqZvvrcpOzXA2yJMGD-oM_z1fdgDyyY z^4c(%tEzo~5kQbui(nz=0l`(8IsvyqYw4nd_$k(^n=e0b;vxBqF=OOg(4+AJ`%!E@ zAZKu^guR79R9j^eJ_$B7dhHeAeoDhB9^|?XcDsQva8ckL3=~zqaY2!7MI(wqi_ysW z2&>r}=oN(AZdn=ll+?6T+_8ZOfcV`$niM7ROtGj$7NP$m&Cs&pWL1k_*VL@fkL#J3 z(A@k|<@!E#Yf6^RaV{Ty?3GuJ{rAn;3m49rK1Vm+c45ZMJ(ZO=U%hno)-?(7r@QCu zKOV4h{5aN=89!&e-0!f5-;yW)os4Z!xS!Srz6Qdc#9a`J)tIriaAj?(QpJKOo~&5A z-UVSDNaWIaHrrJSJM5o=iB^SnX@&grZFg+luC&ZeG1~-pHCqn+;wW6at znmiz@hyNGgN`^~_l!_m+gzW1dcz5r398Gz_+whlD-g4je(WJ}oh`r?D@`K zJOLg=;X5M*#3%WrNi3gxpV(WnNV#naz#cUcr=X$#2n92bX6G`@r_pNOZF$(Kae~ z5yB3NCxm}^PA$~HN|AqQ%ghCH}psA zcdh5urdq`*&X-*bZfTJ}WN)&`n6owqHH5R|HJE7jp&{z?7iH4{`SRAStoQ(%!TI(a z_Rs`b300>Wso$y{6bPo%9A$%G+9`0W=5k@^=}a#i95Y&epS?AD%wsdBJtvlLahKh^ zf`8^dd}aYYGe~gon3S?8rCksQ1|k-vtO3G6I3T`I{tbmOR7K5gSc^9>%+wrmB-3UyWyL0AAt5E&>kz;1msxF z=tRuzg8+jR(1-{>`UCjQ-t!|kE-ua%mrU`;2#3?|pf2Z{p^c%%P!&iEbCMB;B?}fB zLp(gT@y*X3I#nru{!?)lCD^ZAX|WC%GLG$BaWe>g_sO4P*{$1Jzu&iS?LY)oiNE`B zekk{^ACu1vpI+C`_5J$;>*`1J**EImeYLe~ zH?z_1uT<^;cpz6Fl2g=qluCoVooatP&MT_zoXKMv4{)r&=>%*tbYDFE1EseFH=wwe zMIFhDh^;6Lg;C1G)QFj-;+L_$^Lo`Mprmo&@BqzFjU`X4&i^CS2V7Qq8FJ1Hqx{}V zz1V1uZzMFW1F)Y|uF9!FnG!+dRbsf{sA55xo+TDInrk=AIaJiYzSp6$9c70O*_tW` zP1{n_?^R|OH@a65WI(*dz3SU}^uJg40Xonh``gU#S&Hin)t0Z4-JW8y;;@DBu2>&p ztNC->&cyG2JK4(Z^gGG^GunzGS+9SX_#*cTE zJF}H@{V3Ku80$?IMxIhy@hCx{cwE$;IJ_FH^Z>LGlU3vMnzh&FiN-U|s1yX+puhF% za^Rx*%p6p&b~5U}SiYfH?3bigpEim(^OO~!ql`JbWPVZBgWJpeXR%KGx$zWc zmD1qANKe1MZ7iI<_hH{3?Va;Vp_3D#YLkPm1#OmDIs z2%)G2y}bF@;2^4O4G#;74310*H-={mHU&xnd_^kx&~}79BJHY^%~rA3{`=DxpZ~=E zxw)n)Kr9WYs@dfJYiLo;<}Ecvy5;g~@`u#Ii*;jwi{3SR!tvu1X1m{CTQ_@l9aJDp zUfpKkaw3F8;X9=^zy`L!8x}zxJOkB}qt?ob=fm4t27^Os2;3Qs()f-ZC&!PhRvMb2 zMKG`Zsn*}|sX%Zc(QOdWAlr|MHr}U71SKR~W~$+~L}IPTf#MH&o{Awu#tbeYb2vOS zD;F|uXXtK`Z)Z*N9=6(j==+=T=X;y=9vXpsk5xDEu>AFX@_{3FY-Ld_;*PD`o2S40 zN;3>JQ8@hThq^TEcQi0>*zIHl@L@YB$gF8N;%d~HOl&273#4pXT1rY(3b$!BIS;46 z36RnhCn+q5RxovH!Lr>e&IrFAWwx)6 zgF477&TXuLgsvXHIgRMa5ErLKoD5y~sdYzihaWHVnQ^4)6 zj9H})n?}?$*^3K{A+p5XQma`V;wzC;NlO!>z7_BN_Q44&mQUFKt-JZ#BTdVfHyvr| zms3-d&ByqlHx%E)%`MBP5-gt9%@7BLb zH8I!Ce)Ekv*C~4R-d{hF{s%U#8J%c@f@lNGFxs@dtQkvycd4l-e#kA#YigaG7VvF6 zh3lE@s8Sx1@VSZ8@Aa$b|CGx3#q6v5wLB~4ArlR-sXC{D8*GY-^w5CU{!cVWU;Xld zmxgKB&(+{VEbXP)1UM^&HAELSj=R@9C;_$}F*d1^(J%(ci;dZ>)C8X_E zHI5lF`Jod^npxpO)XJ56{(9lxlw*EE;RHSsA2<`=Px*1q10aV)>;?X-reAR?eQyYS zd%Vli{$9ZAo_*kHaG#4nOMjm}>y!3=>xI@#L%`p8#@kCnywHHox4?o$g@^*mHx=a+ z4OVz=DK8u1U2zH_YP}pTDDN*DPp3K&SL0k#1DWu(w0t~A(m=pPXHL%8FXV?#sFd+6 z{n)6LRh3|sZUH9`%$hap1$;C#=|1S=0?sQNg>aNgB5O4nVO}>ZihnIbJc&o|=}v?K zE4HJ{`OuTEJux#ah0TKx*(`qY`s9gw@(S*CAKr>)Aikd;F3{(zI-OvD_$3``xLX9o zj^XVI`Q^IYBV zX@u25WQwL$Q}b2r1J8r{TGgbP&q@T>^X5*{N@?^8|roA<;>KS z`4np!Us58MW@QZ@maW=+PvDG1Vc*Lr8V!!=9jHGOtYD$!0zF#ro!|-JD-J8W}0KpXY$Dd(-6j6)4zW~(P7t-L4)3ZY1%1W)v=5WknVy@9-1|H(8l}6jI}&a znz!faH?J1Q#dphT7?_cf8kSN!aLwK$NhEVLD|}1Ntz%Td2!`04o(4?J2#*>9) zF6k5-Cl4K#fY-{WxH$guImJA+Z`KvHiIP_+6#2)>XKbnGq`4o`){XOE;pmspnw_5@!S<$fiJ8!d__h z(J5ltiAAgC*ds2Tc`BlK=qdSC7J6<}!-ZqVn^Mzv7gpz4pTBReYvNn4>5iQoH*!}- zCf|>P@_Ai0?8!)~{Y4X1!2s;OBB~Tjf~KIB~_~?FTQr_idHW<1@hLTjfz45AXd>jFi#73H-+Q z4^@sz`|qS(S5Jo$C=;joH-*se1%UnPfBARn0)c0z?}UR1oBma-(+a-da4L+MJaD39 z!sP`91xR|6ipv8DCX>(LF=t0l@R9?QiG#l^MmX0|sDn+6jlnlq5sK%3f}^v|z7ReH z1h_SbU>M=|l(T(Di`cVe*RGa6jg5<+d0zaF`}xYs6?cys%mH9>0Q*@E037Vdw1WI^ zKQ&1Y)YnZI0Ul0(&AI^V!F&za2#8c5+y!t4{AoUQ7E4g22(~I1;1rzE<`}CPiaQeK z9yjHpZHhijC;N|U9{~wv3KEx2V2{nN>V2HqMvv}2poyLQYC&0v{IOhl#~nq*OQa_b zyxVWa+}j>FKWXybyPD=!y?dZ({+tb8%J1HJ*T>s$n2pd46L9nDmViE+kPh??Y<>g| zfofGQMNkLDI20t}`YJLCf_hdH;EK;EHslbvWL|fL9lE=kc##x`$0*v;c+^K8dbJh!;Ks9%ckB z#E!xA^#75C@vKmHen-ohqb)7lzdZWP`J>Xz)}8cMH?ei5w3GP6=`xt``S@I*EC}oZ znkc9rsyVahI>6Hwl>|RQ5Ea;MB2+9IvSYaIohTiggz+F56wRe)!c#rCF^= zeltuN5_C7{Rzlwto(TZiio;C7F@g!fVFnkt8B0H+luG%r@g$Z4hD2&*SkwLvcu)7g z%hzAlt(42yMfW!M_hJY>|2*_r82A!Jo>K&3{y10A;2O>sLP-7wkLzgnA1bR-BFOVV zSen_bKDV8{nAzVDA9nvD#xjegJichdGWX}AQ4ZEkJkq@6Z9!W5NlH&~oSr9?PR5i11h#Tso-=eQ_?cv#vc$vef9G!?`>=uf@g z`3T_1N28*S^&ef>tGoyc*^YHF+fPq!FBuCV0vUYX3D#tzN(37$v3Mp4p)mgu&kzyQ zrK2PObAkLmb*JF_r`=BG2;}y;O9vvzn$VGx+~FXTNnK7bVefW2xrB7-48)zAL1T*0 zjnE00ODBOs4Er;()C4g=2|aVDFBW739>G)1266)ega!jpUGOe?Ga(0EXOojGsO<<3 z<9YfNmO>-np_=s3Rt=G$Fjrj^kT1@n^gN@Xl)_8M-IcPBW&N}_c-;5{>J%1v z>Wo{OhBu@)?aGL{CvfGnx3azGrpSYyysFogXXUS}RVK0U5cKrh=Z~0rU}%~7rYl(k za|iN$IFEA^W{5!i2e&i=WMT*tSRD33qVvf;Fx=GG4T|9-*AfF14p|18wdMs+*c7|Y zXm+x5RZorT*>l?Q`nn-Q1~oK{V3C_<&zg7mvXr!7(ByU13!*LAN1Wz}`&T}8c;S*H z_ad;*O9$`+VbBlZG!vEKOG$t6ou~1+r1wD$v=IKAAjGFydjin{L3Pno< z8|mtiA}$@CH*3yD7CEA!VbGAeA@wJw^k6+lJ}o7+ekg8ETC(u)V=M2EFguTATcQ_K zubVt*L0ftx@Pk}aC?rwh+E6X!)kwqf@~5ZJ%mveEP$UyS5W`9-gu>2U20gPk$zOAN zhSX{Fh(Ac+MQ8M&ri%8-DIh2LsukAuLujQzDgl z0MSh6f~$J(F(!pH@VE{7InMJCbhgMwc%CIdtc^Y#STbtyu6z=dnK)SGyU6-AHlDGh zrCMMr5*QC*GVY!UHlY-IZ{r7xMAYi}l>w?^!tUK~y}o<5{Hk0hzi?`56N`JUY3ime zO;bN|*mJu(?7hd^9b)n8d+xt~&+Bi=uduwoZ<#XXxhP76>*?sR_KVi)H4_+HFeE3LtD%IyELhmX)yuYNG`8H}h%aB8ZJV_d|S79j`vho1MozI^4X74H<* z#DrA#+HmfcAxQ~h;*(XS>j&1>4qU%R!Mf-QA|BWWLm+J5{SgK|duu!*FopN*n3>kw z3wrV99fE`^CEsAd65zb*XnZ!zD7AMOg~EJZm*70{>!I-scL=!Eu6*i^aoPAs?(^` zk(GkzM3focBW_ky5>dYd^w{$C9AUFK9g4~mcek{(oIDp<+;9q~I`lmJw!%|OBx(7~ zG+>H8zkGGyeeej0U@+1|xTM9d14D0}t01N^dmvq7@;R14a>WE+Ru#+h9 z!cZm$s})84g}O11x!?Ut9O~ZrtyuP$JV?4nP85U1;qLcDC&}}VV8FYGt>}dUh1cQu zKK_|vJv1CQSMd^`OUAU98c!me%}rKvMSlci-Keo^%{@%Cib4wbxg2LC5%^r7SHc9c zS6tAk+Eq@FTu=>pSAorl*>E4+5(P<2rAU7&ciz&|DC^Kh0+HkrAbPmV!qd|nM)C2S z-hHk=HfQ$iImfQ=(>tf4V#B#rb%_aQ<;<$8cdGE`ovK4kdHMVIi{bnC=jSy&_vS>1 zUH-0L-qszEXD(W}a1q;y|0;aeYyjRnyNxXZNG^9)b?K-&L&uQAwIP$zn|#JLdSbo;^oBRr$#$ zmp)}JuXkiP$h$oxQ2cuW1FYklD#&^|XHe4z1}t-at-Fk@pR1otg3- zWOk}w(cybZuNQRrUUDInw}R_D^n@xz8b+$tT4-N~mO9+X#R2T-9XwMPZnxW=cBeBX zAAV6}1p0XL!g~~+QwavSc@{f1lb;`v#vnm|o7thJKTVzbCl)nF43a0Y2i!k~kGGeX z4O#u*gR6&>_1wm`idW>BpMJ`AewrjAuO;=@nE8n}2Kl^E{f)NId5{uJ zWH-?WO>`Ox!hY+})q?k|0WCap4sSOwkT zIAVM;R40X*p}c%ZaP{*01PC?1EAW066m-qEQ!3UH8XDRsw709WtON+5sMM6mRA&ga zS5PhxC_Pw{z#b}F>{XFSJlQQMUEo%~!3!MHBJuE>w-gkN9#vRSP&jII0Xxa&I*W^I zmkk;`c+j%i;$r7qCI&`+mw znSq1X;Sf$TPfHO$xR;;%AR$L6WXF^v7o3I0=R542xMASA{33G($MjTk+1;}7HFhkNQlmF5gmON#NIGe`6vh;Z~jJ9 zxhmU#24qhA1T8fd2J!3g1Gq}D1q2kL=T=U3Mw%0o>*HY3VD@QPNN_+1uJOGIPybh`SG^YKBJ?m9t7>TjYgepgd_t%GwR=Vyrlhy*17` zbKp(8cHJ~^rgIL<3vSLT_UNCeR#_6avqPYD+&gvi#J z3?e0g(ONlx4W)|}RfVb?WpwZy+3wWsh-)Nn-zd+Me_1H#P3q^WJEMLFX)`GM4&Um^ z*~6A3u%wAit^lUybEAtN{*8!Z@M!CGEvT?=DifvfZ!&N{3371Z+D9H zDelau${Wjv3{Q@q znKpgwZObcW@%-2D;jZiKp*aHwZQOI(Y__L8@R~SL>2>4Yw{ghe;^IbR!BR5AQtswS zFj3eAdy#4X5|5Ef1DgOr6ReV)Ca6i6bcMG34|Zp4PdV`L_u?iyT!y_;tR_E3M2b+T8m# zrKRJ35KjF%PZt3h?GDe;#YQQXNh~^I3K%sZiMc5j$rR*Z1{3;fqVNdvMFk28o(C)} zBq%pUG=*r-7$CmM^lJ$iVdy$zyC;lXoC&bmGn54ifz2eWGeAp_NeXHVHWHExjTj;0 zVbx(FBGNBI;oO8M|JHFlJx3-HA-(Yl%;ytAv`SsY0@@o$+e7viw zgAdX6mhMHgC;&a3e*&aBv9wfxFHu_6s~r6S^T5vTD1VG}q^CPDn3kdz7R68S@lCDt zN)-0kU@=mCtykjFw}Thc8VM-`3>~(8@yBECFU-&Do|~JSH>BM`BRw#;83Pg|fB*hZ7 z|1&e*N5YS@3>8IqzyXl=LgDhjgss1#fhw3w5Ww{x&it5vvzH+vRVh$Ha5>aIcMg~ z=J_*bmgk-nXJ-_b^k3AgTs+{eQT;Vw75AP4Qc-%fH5cCTkjMYHtG;>4F^;zcUq#_x zzkVcr$@NI7u+-;9NJqdN)7q)$i>mt7S46y``V=VnQQ+aKwFZ+@X?8$L99YaYzvXJ) z3rlP~gF?2b?u5l;iUe}_mM_qNt#U?RArii&7oy@>cgKfTqoij2b??Dh)^j(zW-E8*8>C z0+ZqHxoPmourT?I`=vr_e7EeO12ddifEbQ_A9dp<_PrrW@f)NUTdzoH zvL|ds-n6$q8Sz-^{t;@82$KSE4^rZk@oQJFsRYB+=lKPkU{M{;@*y_GP{V!-9&GhnB-2&x*NuNB5 zxO@`!G={oRS-B2@cF=+?Dv%ACAgEaQDtbNO#c0NZ;+ybLQ-Dz~#IP8|RrR)5G;-i~ zBOnIh9BD#>01V<<`JEnhsl^+XJvQ%_O`E19vcHLcMm6)(Z@PQS7tS3JZ~Emcaq?fV zaM1EBbXzcJaZpd7NaS&Niqea=fUyJHilS!;>DTsYj0Yq zv&!q(lE%gx#>so7>GB`T%GQGi_@4XlJt8pb$Y zYnIL$T{2Qyu!h#T8~iNQCkbX@qGGlXkQ8in!JMj$cLm{pBo)pGElcJ^6oOKCCm=ZZ zhe*msWH=`=oScE+4VWWP_E`N@4<`Omj6o3l z5s64s;5GanFX60n-(QgWd4ZSh0I+PgABkcsk;rP@TR~z&Kjb?>KTh;VtOZcTTocYQf?dumV4IoMorMj`1sK! zB};?Um5D4Lvat{ABD^C|GYX!NYeB#s_?!burwO{j&;*1k)Cv9Df(ps1lhmQp1=27-Ffi?!!v}#a{=^7=bt(~YjTSi znke<73y@M5#n3rXg%$_<_CNFH{YQU6me()G7rih2Tl@~RhjT6Fx!rg+o&Y>yQg8e> zTnI;78p_5O6)V|G{I4|{hADgBHF~sbLH++@?>*q7sfM^bKv>u3z6T`}M=e0^Uy;tX{(tKNA*aq|z}a zI#$G15Mrd*Voa>CsS9G%UuX5})2H7odcXElzkXl#?bojD(Dv@3$cAHVly-+U)A}3o z1aJ$g#S^d$;5H=~f;bEQg4;;ZI@O)tfT>WnEu}Yj8q8~zmDO%WLGu>Pn-vtadVI*$ zox5JQ$kN;0u&8I28%P~vVuC}4b}1e0?quhLk>^hfWOKFr2Fce-u%4i!x0&RiDRiW2 z%W)8HWz*Oa>2>Pci>~Y1xy#_kTNM;E162hx+GS<6nrG>aXxkKfC->;mE<;0tW5xh< z!kyK#sG(cXl&Alw?ZSDsDhcjbIQ;2YVOgLGGKPB?g(wq1NL{%$mzuue!s@4=T21Zf z&LeEanD4XLGh)=tjTa!XiiFE(ydGLwv|Y!c)(U{Bp{eN?RzLOh>I?dhZ0`BXndlGZW7%Fd~IGO=mF~PmDXs_X*Hk5ZEG2;Z4emPjSQZRZ<;qD*-hax z^IBpmtW(K8fLwqIIOZjiH888i*!)d(w^E65KtEkzh4rM-=~Yauyg>nivP40pAb1aCxqtWE^^emn`%c|60^(@>(%0;Yk z!U<*!LK7eUOIMXu1zuJE_Y*HMPAygfhnB7pSb?To{a3Cks|viTpuL?^rESy(L08I0 zoSsyXo=Ed#(A-RsFE1#l4^={i#!kuk;8@^U05^6Os%e|gp51&_y^;PryBY6X$v)9~ zs5csWCAJvfHFnrI7KKi&2XDt-WS<~S5kGBe$$Y3F_3F{1*V=XKXgp+( zbq26D^$Cb}!&mA(%91?N0nvp3sQz@02J7dv`8F#S0NK5D?*Jjg5jQ7{7s|+h+HRA& zv?$!w=HEAK=6(0goOR#)p>Fq(A#V3j%WpGx?3hX4Y(I2}yTcH|BL*!G@f$S=ZRqSH z-66mbQbIv5S&xMDXQwBW5%@!RUICO1R|x5GzKAt>Wa;~KxkV5gteqq=eSoQ5N=lx} z&L$?~M4yNNa77TUM$KuQU(_n2U3yOEw3}uYwjG+@q)BAtvXGD=Bb!Z<^rc%;wY}CN zC0Xet_X;owfUVS^Ta)@oT0fWxie>N>&L$z3JCP0zcoY7@#RnnaPB_Q%yl4O#)m&(uyA8Rx9AgSA+Z6_k(2B*dW3RqIOU5RODn;1rveO74U_p8^H=j2Sf z$bb3U5M(20;~(L9kOPwY9YDyP?i%?=2BXOwb z<`fD3&a4z513K5!dw=B@z_Ko`JW{@rKf79ED;6{D%%4v!(Xl-)?o#t&iGjN!rfmCAX5PhRWS zd~)j{gWHX4aC3{6_pE9?zq9-1w#7p;Ql{lyH)hQ(?irTwYvSUXHqFY54oYa4-+Rc! z7{_&KX)PKzLP2{j8}|6BToKD=IiqY;LB7(Lc3bQ`eKn6UzYVEFS?8X7o3P(#rZN1o-Lb$_g6+%mJ2yrjVt;3(3|n?1k5*)u19|7@~Eqdg0%dGo2TW9I?rNb}cCA(xsrFEB|uD;>9EAn=QI_DQMZHE6oA9NcxZJ1;Hod+z!&k$izlQDK=Re zR8*}1B>Tjz{29p@<>x+x{(4A!F3KH_7ePuxaWy0-bE&@_u%Q(l^$H zOW|ThLpEy^wIjp4w(7rXt*yr(6@i`)G&#i)8id=Ws%}!;CV>NiN%zKIP&RNC)vK98 zjm{}oR!45XX)!`O6}9Ea9D#uB@uiKWv}n1pQ}ejF!`y?d$I2`gcUC9o(Cg!x#T1Up zxE0y)@S=mZ!8Sl)VC7z(NA>awK#b<3~ zNgz{@_J{QpUr3G!^A3J5>O*4#8a}ZYE9G8GzrQwnCI7{EqkOBXyoGnJGxWHB>YXSX zcH+0Mxx1;>vAIO6yfWM*UKpgSu>gp~Pn# zn<1qR(Lc{~P#ap+9CNNiwpk$C)b>KQo#HETFc`ZDpD7WasUg=a)Q(^S$u&Go@89NO z>O1^9=svRk5C%qdZ3K1(mcXafAmu{X%e_{v+{3SUlE*zMbP2{@^&o!beHX1zPk`T% zjszHF??wf@i{h%Vz}10xmuK&j>|66)vnd03L=7>(@ptq;*Ju;1%N}kZ| z`dz@weY?{7^-3Ox_v4`l)k>|2J_EKVv>H+gXvb7HeulpWzd*yELGv}eaMGiJXTy{*yF*kO#b)NfqL%(g z_1%$+7L6?E+Ld2Fc5yk>oE8PpXc!yo*{k&u>)27k-X~!D6>S8xG0a37fKc!h);Sqb z4=^Bj+^YYi-S4^J^?yi;x+#ZKCGlbt`o?UKorhY zmS?8ATb!xO=-d|4b#||OQz#{j4f1@UEx_k&N{^mCRhpT<9Nz-5w; zz$JteY6R)U3aS7UC^O^=6d`BAR9mK6dgZJS?6bqKoftJcbkfAg*^y^v@zupFN!2!Q-o!Qot`z&8 z$CI^PRT~h7_~-Ocp6rcJ_`Rb}o6!;&ADJSdvHbU+*Wm~6+ZJrJPt@nr8y8B51I_f{3c zhf4Y$WNhtz(tqDe%7@nCCH+_8DL7&LZvA*wNARo5-5JA9Jq$AydV~0!(n9cLL{lX-GaTI>X_z338QFCm7jLn5A-AY03kKX>4!8?cEer`nf-u)UayP|yL zqbzh}-|<@1(3jQ*F~>}{etNHidsKe?<8u5v*h_j2nCfNML)h&(m8HOjA#6kipLYc}T>0*s1rsA)EQ8WW@!glyYWD!(BxXNLV5xy%KQZ8%}hp+~_2&JollrMgL*Mb&Z z$1W;gjQ0)Vi@_65f}f3&JQ2<$d|L!5w0^`9fl36{MCt$0=AC4|pSa`AZ{nhorYe5K zw9ep40eq5DUZIrP*`QS{b`@XDdc61|B6TG92YG@8UnaSaGe$>CM6l?vDOyj;=Olv% z!QEQU7#JVJZ*76+eYTx{_on9qHHVL7ar|4cram6r13Vb(1s+UnHX2+PR~I9d2q09b zBnWy)COZi~BkPSAvj~a6O%cFjEr<^}Vq#r6a8I~$a`8uWQ46*7D)87FBT6Sk&JHtp z?8RdKrNLs6v_kv0T7OmRVqF1U(Yg=e6y&d=O=WITJo*L3+tkvV$J~tn7t)`W?(~mq z7B0L7{}6kB26+h=tZ$)Ck@g;MgRP580*5YL5>n1I^=f;HJ(m2IR8lM;lquLv&BduE z8cirDfiqW4$Vjjg$PfG{1|)u9 z>0L$01tP^ps>n6e)K19At+|(U)re;huP|L@ zl41PEY+9g$b=FVS7dzBdBX-EDVk|#f4%>>Mxa`qzr59tzTnflpGYC&=1m0}e2-%d}@&!_Ay7371D-M4eK6A0^A>gAHnDI!c5o`oa zhk(+A`4dG-J3+me-zs@3GdhE8Mpvc)u)LC~7ncs*R1m`lAGqrwJjsUePZ2{O4ZAg1 zA;fXK6Zed!sIUQaGO_0>5?(0vm5wHEE1c<2SlA)f`sH`Wg|pUZl01q3PB`gW6~7Dj zY~eUk?y28r0(Q=-Lw(^Vu>!UwGb$Pkf^`Rlm^2fQq{8 z3xG#wp`js<>61`ImrGgWX^{&9 z14|_H0!0hi81x(Ejjorq*`9&w9iAK1Bb9S*7v!EU<5SB#&y*RosvK46z!;U|j+82{ z3xg}x5!eu*ya+G=Z#{gNuO2?rAhDi@s-+tH)yETct18sIiVDwr6}L#rJTIwNUCdX1 z^4KMDa!srTZO9)FSQGGHp}b%*Xy-&eEuvz^_W7>{{4HWNPH1h>Ex1kPQPzgPvd&nI zON+|N^d;;{oEoiaKWe;2i1Ff~9|Cs-VPSC=$r~U}3q-Vr5TXp}tFegJMw`9$sO_|D zyd3TD`&t~KRV%h`S+Qcv))jC6?(tmsz0&i0v|KNDp37ieyH@&zy+WpmQP5FvY(_N};IBM}a<; zJNrF$J-hCG?yT^vG!}e{x}oxfXRNwiJ5J+N;V9~e#4G8FOPTs~S~MgsKoO{>ESn&H zaUKEvVZ*&4m?d#(=yGcPh#(3{QZMg-=OCtm$y5^fl)(RWWjZr3PI`_#Hk|>dYqp>m1X?=D|1ep{|9eAcllFWx9(d$m!G2P z>|V|?o<)o5Y5Y!p{8|3VvfaCTvF;y#$%6UsUw+IF^a3*wtO1%sD-eAOJSP&yHtlp5 zcPAw%IH*(!)`Lr_XM`+#0}cZnELr1;ODg6pf|SWgi3yY*M=fUYmdF@qRw$UP7d;SC z8kVKQk5j2HWoBJpGVQ72{_L&biVAXn2&Scv@#L>>f{sXI-=QY$dweVm+Y0`C)DOrFrbc`7(X(rIlr%frR4Apr;SM4i!Gs zS{XCpcVVr(63gt;K?DY{WY8(OG2Xik?_H1g2Ge_Cr3v1z;*LuIDC`254#{HV4j^Ti zWU+u*!$o1vz1oS&-?YriQ1y3Dy5;oNOVi4>>gxr)tMJ}#f?mRz#f3DXO}wn!N2ecy z_A+O5*!J>eIyW~GkF@-ZuOe}CKr7y9>W|`-hz{yzJsy~&OU7p4_Kx>si~cN9YsP1= zwIwxpr20zP%KG^u#y)}hS;hQFd#Oh#7{GKwIFd*R5C_-^DG9u5c0#-px??b97?ABD zIjnK;98w)ZjS@8*a-nlB$+I~>c%D%Q|Hc!yR$$#q)w@00E7z#sKjbMF?={b(z$zpi z1gDWy58{u6RVXr03xu}8F1(482VH}&q4vv`Ogej6m}^(d8;}BseS`pQ12zOs2#&61 z3IIckp<*Q=0i40m*a)Eo@xClZm>oKce1>1x!p|SFyx|E^FI;S9aaI1TMP2+z(CEMz zT`)#4#W8G@l~Zlz-or=9B2K*4!D7^I@A2zv^_F37!TT+yu3AW9(Ighp`EY% zSpCj(q^wNspt@;Sn9>wuJb*F8x=4*)ER5u2-gN=%Mm)NyK9e`D;Q4}qTPXk8%fo{x zhe~KZ-UBILfr|(O#|vobQ*&?wy$TM^7rYC!3S^|2P1<}j}%Bn!M zlsD3xG(MWDq!Oxr5@q1VigdXEKz*wDE*0>sINT3LHSB!v z_RbBXJSWs5e7*hN&JD39z^l{`i+uxs5*bi6Z>hrqnDau-Ab24uQg`uXS(Ivx26Nh1fH8enqdw-7Tjphi491&pN{jeU#5Va#zN? zWo7SX+;s%{FMa3P^+PhXhiUJa0uP$L!txY`>=&S!CR9^K`-*K8%4i%uhLSr&|MdO< z<(!gqp?iY#%juqV=$)6>IO)s@`DE*ZuWY#4uwuaMaScG%5U3i^G(mq@2g2I0^##aU zxUHjKn=OdK(vzRck=7^qAUMoTl=Xb@BDqHoXz7h6AxYAH*qEtz1GB_MguKiK)DdS1f zkbG^Jd+v$FhngE7vf};pVhm#KPXG^q1FPeMZp4@bO?7>SWEG7iw4GSAa)!4wIwGP8 zAWb3~M&#u~TVl8_!+6h%{sFu~;ra0vVeMP~GXXvRU-jmjG}esXNv z-aUE`TGnmSmE#_ItwFFWFJtJ`Q3LbrO-3|cd+dhU3)kMy6k#|9fAu|M(^efgGwHh1 zT0{OE%l6#=Ve`CZ+XglqI;Er`Q#Ws8F)VMzT^jp=Y&+Ta7kkr8X{n%(aUGq1K@_Y! z1zRFD+hLfesQkxz8J%Y_V|$$J0!+|jn1V>T$JG3a(IuX-G4;SMz?kY^>;%jXh^hXi ze!zN~Fz(PZonq;jCs}r5(E$nWHF%Bb0A(l^EBSsjOcAbbnFA~=W;zzaf0kuDqT>;Q z;Swhb6UXeKcpHzwn+zxhs@o+e5yY0SZZ}pW2hnco$pW_A~_WF zO?H?@541E@t5`2xDX6N_C&3m@Q!BVqrlTa*wGw z10p?&D1v}3!jy)25Tj_kn(53)C%f2T4-Qh&SXvmYDZ+qlg=1dO+>n~tl%TIcRFbW% z`5VZyHV?ZpGAJ!&@}Vw`8!lePFQT&rdyB2jbRGAzm$&Vk{mjJ0b8a0rf9BS66>l?X zHwzouGRtQ?BeF`oNM9&;(c6E46H(oV+8-DIb@3mU{{wX~56N|MeY}S7HtXRv=$mG8 zCBG+Y<1oPK@^Ke}>Hq88S9*>1dCDDD7A!F4f_K73*W zs&V56IjKo8(LhBAWuXFXmXMRAK97!#lCh=>kdH_Pba)|4NQT76Aq5AnF%lkX>Fw** z-M(hsI$q*v(C&wqC$_k&W0yh28QrhSO%Au`B~1Em-U4b%Ha}hali8;1t{l?6{$J`DzY@I{0bBx=9;m?7 zC!V>1{>{kV5xN*blMpAsnFVNsNOxiidHWppAe)lPQmtTX1~YTDER2(YcdiV?yrG-L z!a7s`SlV}BkA4qc-7q5~{R+?1F?O|==X-5pC2!Jb5$oA^?#zBediJt3a%C4bY6$qk zvuwh_gZvskj8n>>kYB(^btpXpq!*Og+GSP}D6dOW?XMkPLW-$C5vA4;PIShNo_Urt z!cUk=kqMaXGQx`=>p;X5`lC$8wLmv;z&J^ak4|-@MusCb97roJvf*)>5pT8HEKaN) z!IiQW@SPeibM01J`)+H{HP5CNdMd1L>X_%|-+d$6>0QvS`gFyXEh|1PKf7w{)>V3I zK8LU2xAA#!k@4rf(DZNYs>Avi-juz`hk3fF9hdO-M6=Qv?_G|w z7_J~DY=u`>x+jIxBBBG<89(XhbfK&`Iv*As8FA1kU4`+wdW)(b<;VEKqwKpLO}94h z!lEq`F5aVERr!+M;@Bd#U8Ug7Q9e-L4!Sc4p@>kM!lLog^h5`cp9I=rG}FBQghoz} zP+AqRy2w&Ddg8%FW0fsPGjJZrdYLGn!Kzk!q{L0d{~1a~7Fu$-sGE!fP9n+D%r9hT z;GA6KfuN6>{b>2zX^WN|%y0&$rsQoXA)q5xiA@ysRZxhah6E}iHg=Mi z9b?Y9<9q3901Yc^^pq(Z+KpW4-y;XWr0aJ*(9y&nrx=!Bg0|ucv1*{pDh?m5+`Dm*t${M=%FN zUV*oee+*T4Fv>tE@TXO1D8yaBNn*8*;gDYrdsuvUycA4ecuc|%h?JCEzl-aYJ!{On z>J>5D0{dOECRoFMRqu=Q7*ASm2v~0@oK315pkdfL@|WSd5?n6n5e6}6TAU3JGBj;? zy9Iih*;^Wbg5)!D_0yZLXBBa_|(TrMr0uWHlo>tzZ$T2`%(4p|J?GAUo-{$%(O!uu#CkN3kechgOE< zrT7jBUw{}%xI+kSb?Mi$W_^8f;+94Sr{2mwU$JcYZMQ97wnCrJw%^OY9%o~G7n1J=4>qZc|{ zarTWjr%n^+=u`Bb83XPFPnz2WyckFd+Atx9Ae$Qv?@or%kVUB6!H^J0Q+ec^z0(z6qhrhi;J5ay9qt?8$IjhKX`!-&DXdv|Sk+nhy>6DZQlX}iP{Pzjhs(%9q zptD|rdCbMS#*>#jDjapduqoYOKi;;F$Ss2FN5QT__BkN_fEr}cAp10-p=ZQ9z|S3G zKQq)H@8G{5VY3c2-3A$`bXvK3J=~7!o%Zbp9=v7V z+5>Cn-EweXyY>fek8=;%iLT#s|Gs_&z_JBJ|k`yGtm1u-=0^_!!> zasv22JaP!(lhHKMFhFSwm0}WTu?k%NcrpjAuw$~a$nuM(y@Ko{2?|7JR1n!wjZOm2 zUI5%?`Z704(}Qnq(eu!tTVi7t4?Wbg#jS@Ivgkbb;LOCb#LU6&ylA!%D#;(7Bl8bl z+pF7k2j{CDSP=h#pZm1kdR3iP%;xbG#nV)EeY;O_;Sd#q+!t|k-`XVj?^a9Yows&>?*m=r>r0pCXv9hWD=4=A%GMqRZS_ z(??Oy-8K9Z^;}`$n!pl*c4;$Gz71s_pcj z&wBnqwAQzpCk!#t{Akf z7A27AuSHI0il1uM>?}Zis=$xRaKxcsO|)bZY$OZovmq&c_Z{5}*$-^N^EXy0{D)Z+ zLxLACe~a~Qk<9Pt^s}{9@xy;>HAI`M^k@JZOn=vTd_De zc=4*wU$}2m_)%M*8%E6=-%p!nD~Ua2Fl!sOX4rc(2-lWEftt1ULk5F8^{D;ka;F>7wGyI5q8nO{tE-_$x|_F#*>FTc3vVb5&!wx<@dhWRa%$`X>B@f+Bx z!ldS-Hx5jQHgdW?!P!klL<>3;28IVA8f&IP7>XoLMWvVs2qDWMmSEQEA%;$6odjJH z8B&)gi%}XFc$8QZ#EpnH7v&nrb%AwCkt+sUOQjG#NE1$9BF}O;@?=1%P7*y!rIYva zM5=ob=ECTpa|-16c*H@`*Hy_?5DU#nPm7BU4^e|~OGu{>!E5LdNfK?2B)8CRAiW_b zMW|Ais^jGOBDOD;?<-xpbmZaky_1$L8};1a!s6nF*OU)w*}s1S`2IE|%%hg)5s%DH zV%PBd66TV_?AJ%;CO#bBb?WJ7S9D3Nd`{~WhyLdWZ-aqPx?3Cg*x`T2f~65^Y7CSe zkcVZ2>M;?`rZki!QSi?&yUoBC6zH^wG+Q^Ive-f zmEmY5EJp24&z@XOANZuDO#54Z#_nxqjo_dEnA_k7{#B^ntb;yU+qKTaA7gLxd{|rq zJ?qy0?)d~NV*!6v&G>0cIqB2|yoG+Jz8!IU)W_r{IiQ|_`@}G%U6aO80RY8iz)m#C z0frxtT(PD_He6Hu1r0>Fd2mm#ytX3as?e3j-KA#=b?vze&e(+K#vEURmyKCDJU{7< zHp7b-UT``ZR{LhoYj;1+ib67e-Zt)f{`-QG^_>SUT~P68>GfyZ+B1K=efsq**zcR3 zvlDv{+p$Be_l-Cgl%o`a6AUdgDNMz=b<>ZCUy5`P=^jFP1R#f#Lz5e1QEj(kI;09( zFnLzc(FATP@Kd{HCWcfg`$o^F6wU>so@P7LJAL_^o>Odd=0*x$i{wo{k1u#}QzoA* zXj%oDx(VAmnL6@Dh9S|K8jTvw$Q zbO(?vE-1>(NJ@x|fF*pd3i2Fg57}lIjWh;YXW7*FTTxdHkLix{n+=dhD`3KH{F?A8xpfg|P|R zOM|X|2d1v7_6Q`7wT4;KVC53f_6-ObiuDs&^SH}36SR@6BjV|lh>O6zNKbTqqfPUS zP$ziqLGn)-pI+tx1{&(LWKS>`>4Vhk5Rm&U6%gVnX#J!Ur+}M8rhlVyf%=0XalmK_ z27eK{w!lb1&t__0W!U<#w#9%nf0zoQWE}2_CsvMmwE4J#tl~ySP{+t#9Avr-H`=M(Ul#N)Ng(3%YkV-<(nC!EuTG+R_$sKR~vj1quR*!YJ@wL8! z4`&NKjm9**-t}CU;{EIczFu8t{0l>4?4?-m-c|>^ZHVQ-wTo|QY$#4ARzrv){OPUh zgs0R&S)6)r{#E&>o*b4~{;4*-a-Dii>+KmS-si-cZ?&9PoD>H@n+uj^fyt$-Zj3{j zR}(4wKzM^hLZfg>;UeI(PQ{ssq-Any;4-2vr9dr1a@J3 zMt|hE3el<*6uP2vwSGSxWaA@R@Gb|{^s!BzeVaA@_3Z9hyT-7V{8je6tGDM3b@`ozU`(fT0ufI)3f;t!+Vp6z_-g}J^(L4R<=Mv%!XGW18gq9?FaGOsz}f7ac^;Thu<^1$K2haO@6-M zY%yLx->Gv~k`|10I>ZNSuq<%4?7|ZU&O<3n;?{`_IdEbl(uwO~k9ML>137F2rdf)gPOU=KcAg_@$4*iW(<*aXD6$aJ;{(tO8F!sYqJlctZ5HLOk@e|bne=T@4bU8#JNG%q`imfrN zoou+U9pW0$ZG?ETK^{Ol6|`uNE~BC+Ee@1ug{KE+XOEkFVB+X#^5>V(M zL;#`#NP_*4MQQA2)M62*7?e0|0A0Cu}D?dj||b zyiSGz*m=|Y4?PU$syTGk`tG@qK$pGe@~GpUH}Czxa0DHXvi2->_yfIrlns9QrI%hF z`e^sUygas9d+FxGz__T^v9FCSbzzx*_x&z2#1J(rJR zJ1)L2##jWo+ZQ^WsAQ@whaLPxq>BjmHBu6dJoaRf$F2bY$F+zhzxp~$KKSXD&kn+e zi7_ti(DsTk9>N%^G6-W(oF@UABRZ_cvLG92w<>jphv*!l*!-H=%1df&w4%72smb_Y zf&+?`-A-;Hz?o6kra+btWeCQZHdw8`?>xhsv`=f|c`FH?83c1r{J{byz9 zI%cr@YG**=b`z(El7mZ2k`*h0Ghmns2+@JpQ!#y!Q0wGL6!pOclJjTgtnU8kP}=mt zWj$~hpi8#rNBOzo4-{h8Su-f$1+1C7?Ww#xel1dg*YU}Dv~Iq$m`YrZq)s@1{}U0V z13ARyfb*~E7Q)5xsYd3(v^z)yk-NNx2r`c*uB@x> zqz0&2NGrfjSs7{^jMzB{F*3!xO*Y+5?_-!2vPlM2ds^)Xtb#lz($MX3*_mi6%}87! zTtksra)grmj^gP~N>Ha?0!^N}&X8%8+fr@YCp>KJjL9=54`~v2b;Sj3A@7vkEHlEr zDJgEp(1_4M*G>9;fSsSStD7p=j=Sz?7@IQUF+R=GxU9_ckA?~M;Or1}V0hH@&v_UA z^_&|~`GNmbS+^$6K(Nr8Fny$*l4H-i^<-hdNYr&G7Dy=-O^*mrjS0(5{rb=sTlrH| z&qf>k=e?pR0`K1q1dL?Ltlh zrR~ST#X&l^p)(?h7kOpq?a4;z&p-F<=B;~7NwR0_-G>i97_ZJ$H+|0Ez4=rzM9DP# z+ERS#X8s$m5;<{_wjPjYxumy(RxK9s424`?;AI8}6IartCqFyCIv_FO9q3-Ol{&=B z7J*qXZ?)e>92~WF=afy8-+G?^Q90?I>t?=Ix~1&K_1C}gEDQf+@L|gXuU&c7vKiw_ zT?x(KdiwO)#*N?W-g(vh>9aEun;zbA{Fhu%0lG*B`Onsk`EvcKhFj$NBQ6!pC_e-! z3fLN1666h3qevkz*WYv#AUoD+2E_u()Mn%6tvGoSCqY)LsV>78%9JVSNA@gax1DT6 zVmKr|R3Sddt0X+3Qm4^K*Yk-FToq_`IDA;}DZ^hZT|0x{s&;+*_c4dte&4_UrV6cd zS!Fc;@>>8B<6Kw$fOUHX;~*DKxGGQM;V011cQQtQiD=aH{{B6 zWuWnMHtuE=;<%^_X`x4nYNgmH)#^eAjcCXjXY8<>=Z%VuUB?*bYftS?IQji;vtxGN z!6G)P+_URb-t99>{zZPw^ZSnvt!4MKAxOnkg}<6;LXD8JN){}qA~Z=^B^FjfJuKz) zsY9zQRF>_>GjSm;tT!ITODyV;+MaZyL;;W4pqvxPaD+cY*WX3 zcFh>~?U~PL?OD}ftUdA6O!C>mL#N1`Czyp=37T(PETZMF7s>#i$y74I7hQ4AIBL3G zode3$b$=$w76q`r3O}xBXL;^i@<=;GntUGKOSX&P*^63r}S^qI5Q%W4}Bjc?=4T; zrnG8P)OybRn=U@JeOizF+}%x^^v-Cg7goNgwZpov;)jhIV5--JxjG5T0HFoo4D~bX zrLcQ`jV54Q;ndP^mtE8X^VyG~T=6t+Up_x9q=ryXjd!nz__OW2oKXdC5siP!|{ zJ#vvy1r|r=Hyb*%WNj@RVBSs}vZ^!{X+~-s@0u-C2$(@FWzH20?O> zQAig-v>%|tdI#n4O7lR}b!({Ww&!X{y)9sB=rb(k6hFtBz5H>>GbJCt%$o6Yr&tOY z_2cRQ&(6wa>TQQmr0~We&uneJI?VGp&580oil7fQP>`pR0e^lvEEWh9jq>}Dpu#L} zoHBxCBN=Ksy08O=TQ57ynI-%(0tG5iE0WGN$QZaC2_6a}748r%Xu~%C-T7{ZU zu{-zfy?g7{)!WuDFF9N~@44nfPQp{`fbO053!QGcZBojJPm@$0}&-XND+{fDUCShJpuvdJl0~_E~&|2g;7tq=HnOXSnKB zao|G9r?ZrWG5*{2|0KWvb9fQ|e@*^BTa)ke!PM>d|DW;){=2pNLO;Tth*6NAi_!xq zWl|F(-#LMnAw&dyC>yRUR-5*teo?!+!yc`v<&dm~ZL6=vczRv*$|SuDAnd22q3z^7eUTUeH>DyB}k@uuMw6|*-lJn%Q| z9bii*KG-kyYIQCkzwW#u{v}$U8!*-wF$bV`2xLcT%P7=05od*LD`6}^lOw4kexYI` z`p{YYGHI8*@+z-RLw#|r%-Rjzr)lrSdu{#5Rz1;F*{-@rvuJCtcp-kH8gM2gom%;x1=)=!&&O2b-saPisi;|$AzamUi z4Ztess3=Z1ytBn{@L}sw^%Q}UoQQ-7l;uW6hKE`a0|KlH{EDRAg9=Ik7d9$pPU-_p z(+4Xm?;Sp|&sFp03_p2t_=`lv3j|fNvq$UAf|Sz+C1mfB&StIwSr;-ePinf<(9L8f zWBQmqWS`&cX;>pq1F$7D`)^O4{Pxn~B}sJJE>^5VGE1gT)S0=3a2Ueif)@lye(;JRHZ7xH z?DU?ko1cAd%xH^er8+aM{n%%pxqIs#mb&A<`?jaT?X_X!S7j{bn!Di)d-XL>CeqSW zCSS$CX{Z$r_9KMqU^`Mm~&oQ{)$&eS>~v{HS#tG34g%+LYc(u^dc z&A0a{^0kOJ;;2C)RC^LG3H14n&dS99WNZ3To1$4k5>!PQHc&NqN9_gLsnOS6H=2HX zT2Bjk=H$s^$4*up3Yk_>Q3L(vA=U|SkBgDrL{N2;S#Qro97X)6D!p(P2u~&mnF@%h zqrOHV!ylYN(Fwdz1Tx?tGT`EHB;tbMxNU%p9e5&9CI-J(COl>Yf0~7Vz`9^;)*b6v zB>!{WUHtEC#`Sxd6-iDN{A2!rp1u4QHG0*hVd~c0y?fvK7>s0&2kc5!mSGQEBG)QU zndOdf!Y(JxI}+TByw3zY0hmc-F@r!VQx+Y=5%nVqNkG98ASk<9o)GS7GdD_u>p2Ei zuqzFjtPXobII^Qc)lkaKHuC^l6%`i2`z%->U=prmg-z&ZQdy6SNBzd(w)a1H)Ae^h z!44k0a^K>|UcK~>-`VmFqn;l=@tL8kUv8U|p%%=TK4JRXhw^%Pmh2oq`h^Fcc`HKKQn>Z?v0GP*RY;95EBW$IA5tGj9aWmDdK0Zk7yzF~U5zN6SH{M4XMod$2-I(^!bh{TmQZrues$&;&Szkp7G zNk<39OoTACe6xocB?!Tlez08qSvy(TN*}WspI4Ph{8POYpO28-8_AXM8wFb3ksX3; zxHew1J2EmdAu=AN>LdY$AC+EBSGPqp9Jm_3jF98N ziGKhL$9I3<6SjWkvfV-I?Zd2J9BXo0Ew(m&kuF@m>nD)~vN)-af{cu39_q0S84|JRy{iNq- z^;Nc!ldgfW&6@Xr!fqFr>tD0mDUCskT)K&WS2bw=m|pwGKmPQio3}r_a^0redOlt{ z=|I1?e!E2-9lvqP&I2hak7v3jjqN{m-H^6D1}7#zl8~@{`KTpC^HHo<64py#w~@CR znlH3pMtQ|jfr7JD))GVbixB8oo>*SazA7)*@+#lMPQ9n)UD`qCLcB}#g^gE+?sr6} zx`lvL(!e`YNz}smiGmQStR|1Y#S)1!Vd3BecC_(xa9afH;D7h~DM_Vhq%_y&0Y%oH zK~}Y<0BQr1N^dV&&vbusLC$}xMmx<|Q&D3Go@&;qQgR^a*3hufgcQ&fxCKID#m1;c z)>CvL3)bxAe01_%hl*T-M#bu5kf?C-{B!)xZ#K_n2~W_TA@xGP2YXg$&IL}n6iMD( z2yzVL<}=hi0|NRa`qfDEZKN2ugLV3v>oS&-87FJ=i@L)O-s zBqaFJ|BZY=rkulhwc)(l=sZ!sG>J+oBr;4i(CW>?719rpclC{OenQKkP0&tmCJ{*N z135ZN@SbP|*auPJkT@g)1sV=S5IF~scLjNuBb@^(gqw7C%D{*=tV!2#nN4n^P{@d` zyzf!Cl)D~fr8geoe_YY0&(={d>3u3UYS-gEnlcV!O+XH#^b4R)Bq=d2DjbcaQL4|} zcmxU(qeevuX_UPzoB;@glM8@M*f`onID#EW{DQHh2F;y3dG47LuY6qo@hd0Jl$Yb5 z+PjHc&YyoEaa$Z}+Vk-%G!8kb*T(Vl$nHJO&&TnZmc^BiCO&Zf{1%Ld`ID}^4D%O# zrvm!n;%1VDAr}+odbDVS8>|xk18#mW(?_AIwEQ$6qYs{D<$T(!ERW^l>VNGiXD{&f zYBx23U&l7daTY+=7$wFb>kNz0O?H{rv*jLbZ^LKp(Za@~Lw6Ww}ryARw@X zm8}fElB|!d!!IBppG9UUV!-wJ1&)?qH+AR@SC^L;-oEu3BjiPlciyZT{0z$an#!%wTAaHX4Y2%vTv z{sA@Mjo^x~ocw(aI1Da5v$BbJ@4C&tH&?de*ie$2BrmA8mvS3x@d+53>*ag`1dxTg zeP{(P_WBi=sVC|DMvb;GQk}114NULkCYSWt?&gv0TStcMkW~aGb1|}nPA?WT$w~C?SGNq z>dT~~{MVeL9qt~pd(?nn^bAXkzIxQ|ksG@A+1ejYu*7Dt$XkNIU0W~hfXUVdG-%SUu}%?oO@`9b z-OXp&ASK5NghK)X3^I(Ip|u)0si|>ssTrwMRcIPJA(t_B9MH^)+sW#;}Cd* zk1yJX+vqx6&YtJ)=DQZ`*?;ked5=$?f7|ME?aj5w9PhQ3&m1%E%TM@I{Ej9MC$a<< zclVkDkMT$??d21(gi*rzVx zAJ{Dl^re$PeUR#KtMRvRXh;zV6Q`q61wW&@Fu2u_j_b|F#ichg`{C*o`TX8&T&jEZ zRfOR9qqUbPK=77@+_`~edvRb!ULCC_dOi&vFv=(o*+yuhW_if;0jt=$J>zGfM1(1) z!QZUlZ}sK-fiSEE*@`GMs3YHx($Bn|4x1uVRG^B+X|MI&G2rI;BM$UfwdVV`2JD}F z?Xv@KT7Ew0>ih2e;N-BKdYh-3H0eK}XAf6I(zcs-KI3v7E-V~Zvbeb#k-lNk{eN@P z9w|R!j}}`au|wfvkBrO)k@0WXb7abyDGo9iAaHOYg$>AEoNaa$dyh@2oXVyk2_U_^ zTpv+cuy(E1PVM+Lodr$Vi*Y&wmx9KzlLs^amjbvZ662`mSme_|=BjrzGx-k;);nUc zyg0aAO)+RkwLM*v|Ec;M>Oi6B72xUcc~K?>$WA{D;)R z>I@5HNO_Gfyvz!?vJzv~pHrRtoU*eBV^**zRr*E1pC~64`FLLRI7W+vm^TAPWSn%%#^)=C*ZS!A=;o;pB22~)lJjt&Z~^tELE=~>(bw9 zF1kMU!Kf`GIRDo*I&!oJ4#MHz60JWmDkJ|WCMGmACM5yiQGRjunl(3Gl6+KPA?bi8q6)%< zs52!>SZGp0Y)n*Ss3Xjg6=jRcSEx1~)mbp$vqiNX^m>OEcybYnBqK*%c?{x9BUoBgWcfkdM#<7I5gCAj| zO&5UoT|#33FCu-R^+BfXsvN41VOMYjc$qQ?caHkxgp*whcQ0a#uz|#$()$o96s*Q4 z+lVY^MD!a>Wza2DXrQ`0A649`{96BG5_k4k10kR#9pI?(QvOA=j^| zccD|Y90EX9crg?&a}dUExkdfibDZr!rPgm{?8S0^p^S&o``_ae1?>WrPr-4tBHfch z$YLo(loL@)G=~mU-WHu`l2!#h7m@xRKEr3Mz`Y%}I)C`C>Pu1FYgVid;*Fa+UJF zJFO+N1r>ln$3P0F;X0%uE{d#6jj}FnkPj4eC$M!@1%@CLbJT;Bpfpg_9>qXoK;gH5 z;3A$YxDGs$h}Apsv1ar!K*mk{%b!F4g6bc^^{0DV%ZP|9m$;D<+qzZrrulgdaxycL z6Tz=hp&L?rWAMM69IDO=>>$oUE|V-;t;P6da!1i;0DI5?y!$_}2l4;n9@P1{%kF{y zC;vNpK<+g4rfPc-T7TfL+7?_s4oLa_$H6NiDQ7D(%mxP^)i~2}V*_NOt)cEA6enXp zB9~jVv63u8AAG|*>D0$c7GQ|XZPCaI+0LS`6}{|x+<(GFu5%o(T3Povjh4TZO8CeU zEV-OF#HA*HWcc}nZb{>$V?O)De2~+J8wYhAXee?zq(aLqF&G_E^!Sp~MGy!RA`SlI z)2FHD66Lwc*?4Pg#GA%qE(^q5Y9GTJhO2LkgGY~+o1sdY3Hy^HR>C{6=P(B9RB$(_ z*4v>pR`$E&Q7@u5cB)oO49Xx)#$+)VQ!Z=;v_7h1yA~sm-JE1li7AD?Wn~Ef0pI{9EJBj>Xk%=iXB4`!yX2P%*N*I!5Nax047G|66 zlvoJAP(fwf;IE=6IG;1LcNUwkHpU8JR3#`p}8*Sd8vsyr0=|Ofp>2VoW_O zTaMAZdf~h*_sNf%z2|dW$0~TrHZpH#HN* z;_Npb#y&9XBF9#6uS<;h{PQ_Kxx)Oe1DtL-&fE;@V=evLbfo`YTj2iayA`hq_6%l9sd+=N8zmrZhr832mP=hAHw1CSOs_i2f*7=#lE28b)-EsZr7$q_v_Nr&xi^0QV%|^~~aLcyRpf zJ>sV^P8U`v+uyN3{9CA%dbiSRKNC&`L$@sDzuqLA3F>IGh8uf8{=C7$pI2i{tbjSD zk@eym)8g+u@Qs;d`V9u?Uz@nv&p-CEv72n3f4R8mc7-dl&On7nNJn|2&5W@ubj81Rso&S-hx=L44BZ zN~Y9DNEaAiwxLkUWsgS$Cuw(OStB)f^yh+117;xuGyot#s?~irInB!WlhhA*s^|Rm zZ~C}i6OXPvaWS7Q2@sf&{z^!QaIjj74aXk59+dc5@K-)2G88NpTQM9Pu{OBZoBP%Tt<+1<;nx_{ zH&nIH!1<976;aTQ?SZ~u)@di5^uEZIN+ zaryRLG~&eG>&D(k;S`8oqslsWL>_j(0d_y$Z};=fEhwSeFJnh**0>kRt?62D{ul0|xr9?^=5q_6)x4Zbcy;TKU6e zb_(1N3$;z?xDKV0+YK(MqIbp+*aQ|W$TB1}7?0Tch6p4RTnioT7ljfZ6{RRqjwk@O zKm{@j#=;;t4Iet`^mK9KHK$!)#h(DE@@s5@=N#WLp`2}@-}SbQ~Yu9Rw6()OSI$myl~Rq<<)* zYf4GHa<^iw05k5;{>nBjTQqH)m+Nw-B*n(app7#eL7PJFqEi+l{sE5Q6uFLO;=a*S zg8I&(QbjytR;o~OIqJ64n?E|YWWb0X?1$b%hV(+yfLO*ROz*p-MbXl(Q#WPgF1u#i zgU65DIBrzyrR{nzy=wS^Z0FLFC)Tq=-Gz#+w!huEAP!;8|lite_cVr?!5fs zKK=Ube(14%L+38e&)wy6ws*Jf_yd0(>mqB*`UoDINVwTPK0?|T{6KZ1SS2P9o2^~h z1oVmwd*E-@Apl=vMF66e397-*dXcrvyrOQf6M#yrEOUp@%}PLSifTk0slhMOTSHhd z9KON&P(R)p6l9}IB6(|nrHlHHAb^FnP{iSL88JznCrXJutI#4nUy2r&{`LyXi{ zjKSK@2^}+J(3prhq1)H5+pZV~d?)lm>yq|z$L zcM)1N>yH9!NE|SSTOw#@6i1nLNHNg`EuxEV)Eu{MmSA?C-+%XbF1&a9#*GURPaF{R z3yYUXc4kT1LgxB|Us9^LpzS8yts%Hum!}QeVx&z0VXqe2=*o!eAnIEXT`VGns8!KT zTB=#yg2-47Ka1*?@=YjiiBgqe)&sJ*g};K{D!=jPS>~|^%JysnY2epl-3*MjR3%I4 z;_eg;K>;)`oF<$KuxCJ|p#TSGB1jJ=z&25;hE+7q1_W$cT3S{b&O|oghrwmVagbb= z)wiPFj?PcizO+KBR8G9i`s#{UU*x=y%%M4Sb6@S7gO~CELE|g9`^&SaYwf+W*jMK! zScPCXRQFC0N*~#@eZ(A+DR(v*@nk!iWt&zl$cLX`NHvQ#DUmE%Vl>jCm8)*6&6YK! z*t2yQu>w1{q$Y$&}#|K%@WqRx?ZMp|ZL)YEZeiRx^~A@yog`P?BQ;>%>^c zW=d~&57Inx5ru;SWHV2N#W>l)bh3esX0ajE3;e8K z4kzmZ{N)wFps=P=bLfAW0GB-I+vn$8Z7qhC*_5IL^(iL>kp&aUPoOjg?6%eA#s!Rl{V({-! zMBcx!9eagDYH%_nTjr80!2zqxfwov^LPLGUurG`}#?oPi(sE};R^jL4$Fce2$B!8G z&=c$iPnw2aKBc#e9o!FCv|l5a_zkviZBP8Sc6s+6JK4dqUA$}S{Oe0^`{>tSKf*|; z1>n7a?K%dQDssLv7@TR)h|uPnXqM=o0uBwVT%Z@hb~I8C;aUKRIk^JfN4W5aA~J3b zaD0D~)oUg%9y_={5jASu_{js0PdPkp{D_ecKf#{xOwcB?Gp!p=A)=xk*+-kV0J%$h zg4};>*aaF*JhEmuHQ@@Oct|`lA|FoTAryKOMbJX81o|VO$lxD_?}bXpVo}Qp4noF0 zV{O&Jp0d4OP@85O|3teJKL|36MgGJj%LOr3_x-^rVn8Pc8KjPf)Ds zqC!oSAA@^J2eRo+12CXHi2UMozmcB642wsk1IXDM?8x(ycL9h`{&{oY5@6G{A$$W zcMnXdQa>h0NZsf&7KQi@^%+Z7fD}rhQfbd1YntJp_9sIETnRZ5L@m@F>isDjl?L`3 zLvCbUJwUw;(yI3yqh$nGrLP-F&8B0UD2LUTllFfT``zf-X4q#bbhbgW$h`hv&quQa z=#WuB5znHXmbxQJSjzK9*JU^#fHG@{SR>&iHVEjPE@x^=JhF*`qJp9b@H&c;{Ee&V zFyP+Nv^iR0!22QUo44dheZcxsw*FW@y1vDGR!N79#%awWIfSo+f^9)ymp&gw2=dH~ zC<(L$6Vy4zLCwSx;vLB`$utK{0vybkgkEnhpmEiCd3`y7;{I3En->WF2Roy=!T(&! z0C&G+=sro%eL|tp0|^89`o3K;v;=q^0`wj{MtC5>K?Eof16M;tSdc52l7gc`$?;`4 zPwGP~NtbHDTXh4Mh&}mpOs()G#7i-cY=f8PQr%24=8y#a4RwcbWCiP}JCM0j0Xt)6 zF$p6|9JJWrjyW(&fC^6Zi;$0LmXOo4?t&}UNX~&rUZ(O&?90V})L(y93i-IiMzT18 zy!~+q&%z51@ka{16iHxxs?p65XjG__Fa#hbjbBDGA?THeoI)nEU9}@q*_v&<6kZEB zm64+?fr~$-@57ksC>iz>5s9*8WgkU+NaHcQYj^1b4m38XHHhf8IV99{-1F``nf{E)^>!Q^={0CG&QJx~8y zaL1(nm~5OaVO#rXGAIe~eG^qUX8#&h{~vMh0UuSB#gD)H-kX{9HZ$o7nM?{02#`)m zG6V=U5CVaO-h_ZOAr$F?fS@!16%YheKtyF>sUnJblmom)+G>$XtKlbKjfE zOfm%A-|zGPqd-XBynF9C=bm2byb7K*)$%DHRnOp1$csKL@}m7E)W{PXK>8l}sPyJy z?sOVzKH~Iq zyS7^W{H)EaiLs~~vP3kw>qfQHu1$Z_u!LF@UnhN5Qa9)u>#F*M(T4gzRiVs5g9Fwd z!#%z3`Z$t9Wm1+*_B&n4Po}=6uA7^@nx%+;cCz4?yNao zy<)?|_io+#(4j+n#=JTntz>`U-#)A~OWr;I$VW*@C!05)KXb~wJzJKpc_1hEY)aa< zf7|>TsMFOmr!7^81!7k;L4@|4ian?K+_TUZTzf{eFEu@lq%TFBbI^?nnKo9Tg<`i+ z?tSY6iD*VS4Tq(@pPAFy@t;fmhYp)qGk8#+)th?sSh?qs2lfpa`qbE=L(4`F89IpH zyLyv6GN!X*#EKn3LD75Tf`bP2D$HoLero?Qxj7Nx$xp?HgbW?FXUZnfIQo|Ie~B5A z;qYprZYmU>2IfFj2^zNOfk%xAk$S9O^*jb;I%a^ZOwS4(XIkxqd+s=Od)wyw7GEbb4Gia#Mff(E3I~N42o#Yd0JV8Hap{; z=v>C6oj6;zIuB%EJPfZ59AC062@~wHjaF){mXn^MWMinYn$37SURZv*l7+JH=lF;6 z5w?g;WIyt7c6Q>Jv4i%Sjq25v?Y+qcsE|DM5N|o zsA6t5E=29n7X=X?16o*8$^ch;O6!q3;r z?`-Zq=j4`8T15l`BCoSo*_bgr!@`Yn=r_ap%TstC{>STVZ^$4;dFSV&|K%cQa3}VZ ztwsU^#=}vBTZ1QVbHl@uz?ldzh9ol~xF=6tb80qK4XdxS3dkz?`SkPa(tcavSk$>-j^f?H&2ut8V;*-nXiOfORVHZ%;5QMDNxxlRYmy7d69# zW9$P&s1XAOTG&l#paXO+-TLG1ckZ?g;OF^Dw($P$A-!r@XXk#obnssvKOpz$!gud| znw89AF-Je-C^}ALUydE?ypv7b0LAFX=lCZY9>hJi0uIK*p)%cLEFGcHnqg*pni)V) zvwph&EJL5)FJImC13b%bv6o~!fBbdik~U*w`A%@_|GdG5XgN+hc(s~?vgc-aUvwkd zDP%ZOZgy5~jx9GSJknrQ&1w$gU3l~9PmRIIF8PPfoj>P8)sFj-j+|9+aGb(o1gYlbhRKup z_wvZoDg5w=vZCq1zq1SM)!CLuEW?z0a38CAySWGZ)r=e(jH#GxDLcpCoxzn$_$qq&K6-yieWO1 z-AuNIgD-#|5t6`KKX7ud#|R3rxDH`!FoC9 zOJH-+2f@(nmK$L<)K6yR=cJ|(qo-l1)<^)dD^F*)Ju?*aCh_lzE3Pp9HUIFyk8JSC zuP`?^jU75RWYI?cF?5GsD_`Gi%RAT|W8SWxFSJY)Yl0@T)hu|0J@}cDZ6tsitjO0f z;D&dWY>{>*A{TOLw2MWDUZw9inX-usx+d+A;D zegQ+HRYK3@!-)#P5HpzV$jqbr3m}^F@OL1$Lo&2#iA!% zm;27&RKXu995Y6TYqsHMA&-$CgFOJQm^dWvKn`?W^fN{9N6qGiyv@F+lFgyrj5z;cuVW}|TRibdS zMu5moR9mxap?gBvFS7HT^UNu>n62PvLLU#|s4tagRRDz7`#P693o&x!CApCObDHxD zId-am9oFat`A4v`HR2bbL%T8DWKR!EC!H)kpRy02B4ZG3idpR?^D^FS!{OB|oheK2 z4p{C#wWz45$AGM&jO8-N#WU+jw}fhDIKHW7;t3o^Bep9szz zu5RZ!1-#FQ`||RRx8wvCH}Rh_c-Ww-@qFZ25oxe%l`T zLAL4Wh56@r5@TDIu&raq@+sE`T86HbpWMr@&E;3%)Fyb5Y;FfUCjwpx1TUel2r(dubCSv&TeOikNB+weh=ev*Op(oI-T(@nJ3qmv5AI+W>9aq$bGrKE!k zf8V|{qMIX^^$IK9%=$cW-`o}BI_&J+=Rx^_Zs%k8%S+D=kR!ov)63ZpY{CR!qPX-w ze_?x{{@|x)_<5H548OLTui=N^V{50+!(K?XWGVj@dWq0EfghkJ%#c#Z>_%WJEHzuT z;(N&4g_=;x(@ufgnk-e%fICLLhsygv7I(M}oHgr7Vfg7kW7ro=-TSwX_%q+i{x~kt zf#6SME2o1FQf*Og{WB~T00lilBHMHEm(>m#EEF{8sJINWEeo8gnxpCet7l3rYu9Yw zS-I`Qlf{+}2Uwfr5gs*hkzB?vD|PcQM=Lw`}$|KV_58oZ&B^WP3UB=6ZQU zH4_QgM~pR8B^eNDmJN1{b4g8!VRpKH=16MaP4d8yr<8pO5Pp3K#Lchqj}FNgd%8H0 zJ(l?XONqrSwLrOAgDREdr(R>7(ZkxzUvVB$PqRV%wNYiyzso;glDGme9t0TAQ&T09 z2SG;SBgBHOI3UQ~9A#9jkV6U>8rXDt9wN!4kE_F;JS#i@>-^`X4Ugf7!&nt#$BrMw z*SprSV@vnS%ePcn=0DHP@=K#xS2nKCHU7a4=UKM&>OIHjw8?yGVP=8r%(yxU1u$C3f@-}%?-JInzLZu<01yX~#Z{NuZr^9QGs$)Rb``=InL zhqQ%l1K8%^e5v3ven(ojh}L-w$v@)G2GTLp(oJ;6C^&>bZ&o|57fNr?6kx^V>Og z+ITbT!OHy6;E8pdxO-xLkIoZE%Oz)(3ullIs>x*!*dsm;*aPh(L+Z5+z#jTqd!GGd zi(b#L*PrG8;y*A83zCDK|CWQ5&z-yOX3pQ(e7=mY0PG>}>CEaCp$|qj;8%b$QBZDb zt^roI!J0}A51cTQ7v8?!!Teycyttq76Ri9FtehXba=HaZ4ZX4OzUqnHky6h}p4$H8 z%AIrny5uYV@5O&vv9QO(|Gz+phmUl>H%ny@y%8UcYtI4pze-VmoiUjeqyf)9itHGatIU zGRgMl+}POD_qDO)tyeY@9tCbXSOdv~hOGHFa2M&)LoLC=HqFXUfqe`bHALoHQ__ua_84$eY)NM~m-Bxq z>=kx_|8v+n{@Vj*{=OboKlmY7->;pj_amGV!kj<-jIP0K8&I7e&o3E@G64SOBa|04K?uj!`AysbK~+oG7s^@6_zCNXQLf&^2bv z0K1oY(o@Q0{vEU62FPslG|N!_J2NE#3Om_ty%I05;R(F$i97hu^=rc4kb*S@ed;oW zR?Hz~G$q_`A80{dw@@>eTXku`%lFmRQeo0^Zq7<&Hahpw_yY0vyel+>zTcL+1mm) zx8wed$9~9`45RyF!v%&12HGqt6r)V(1QxWJ61r#(ltXnqbN)gCxI63m&=F>MJb;a2 zm5e_F#IQVA2ac^{cs1M0X3m(f_|zi>*3M`pv+tc{W&8*JA!{)|Z`fqwAG-w4YL2Kp zY*>G+i(0)%ER~a*uR``h4+T7M1F}gf?s|%$X_JZn{v_BHFOpAGT0pwY^ep2YdA7ox z7oKNroqs9*6n$~?S@mZabHY?UouM$3?${L2{8%*w(<2fg6XIjSblF5Chm^i3s_zlf zHzz;E9BD{_;*~U&a;kpi5AdryUOL41eSH6qeBAR4v(G#7SNIF^?d$~OJ@~gz%-V5; zvHSY;fhV=#p92T8UVo&usADbZj646h(~zP2ctRw)Yr^*l!x^p*vMO1+1b0^=Mhi#D zKh}<1+GS~%+V9xs=>B!*1`yOJ08ANi$Dsu)nc>dbUgM(^p8|Z3umY!{P#zY@KX~-q zn3fyqjL5i@vXrNl&p_=a$o7C^lw%4%K4=RhZP0%+`wK6yOD9kAHqSk$e0K1;r@wj{ z@L`+fUzASZp`o}Ten+g~enJn*Qo>BhF)RmO{Z!~U8g)b0GV~DJ)jZ< znl)NqbD%ZM&}tE^0jNK46m=-bZkO3g>sewk2Sx-&SW`s(ffeS8?o&n#A`8e&wTXtx zuDoi5C`6e7(i_QYB=bhh6L6I!gv%%O@&j%zd%6#555B#n>I3;Pt@?o9ack8FEDJQ@ z70XCN?n5dv2WW0z5G;p4L^Tk9QGgSVxqa}d!;{b-Ftti0^|1_SEI1JbDllnA8&0hy zM+$g|i8IJ6*9TMMNhR#oVj0F;j%6I;)b!IV|A*%CEcy->BTrH?n5@6ZAhsC_Z{(!Nk+Mp8QiY>m zYBO1;wmWiLMnk_T6`W!ygAIW)ejw_LqB_%D0zagoA-v{S5)>#&Ia!&lwAz&@bSDn9 z23cWo2c!mtBC!-&A<;x3qg1po`Z6qyp=ba~zg{$;5l{qW)TId{IW7Dza`~XaWo*d! zit?HX<>hq)*|%e-moID6abd498{6hA8Tj1({m)e|X_LBi@H6Y##lSTG4J%je$dDuV z{m4IhdaoRdJ3jEy^|{#xGFo&g>Drlp=UmUfE9zX-`FlYptK>Fn51czl()*#yY$D<= zf()W$%8m_^f|5lGZ*y1#l9B9MG50ErvH9;y>(|`39)nU6Stg|yy?ga4)gwyx0G8e5 zHlFVkUB-0M@_eV(iY;3U*r?rq<(aORqKnyEER!XQmonI_vbskZ0&4<2VW@stBV8g` zwDY2}cZ~L;>GNPJl9`!}A;5mFO}ny01a?ZiHp-vW*P5#%_KhC*iF|zW^rfqhAJ5u1 z;{c_YZ) zy?bqAi~HOL*vV3z{IK$_;UD!rO0sKVak_YKZs;z`bASGP%nzA(R7>1F4wGJ zL2qqkNq2YUN4wr_Simdg(7IDsui|aL;JqK>y)>D8rWSZ>?kajiw>2DG9pGL3rng@U zr6i;@P^DL$oUe~aCDo3o8`sH^!iF4Mt1Z`VqB^+#|XNK~jQ(luAeg z8J7#$-mC=KERWFt&L+ci4s!uIl)*~q^1apiPbL= zO251xQ@z*D6(RE%bg&ru~?asVE}fl=*X`;mb0kOq1Vs-wbSIRoJpM)ESS5Xr6cwpAo!D(8K1MQUnDfE z&1kXzz|(ufBR(09eRlx99uWBItl=vPz|z}0qC8yhS{+2FqIfqAR76Um$M-$4B-#xi z2!Y&q)?o=7v1k$By~OYj{sbFbcM6?wX8`|La~#&3D%QlD3-ArF3&T7ceidmU{KFZi`6*Z&K6ezK^Er

bg2+PvVvx=UK*sHV^s)W3_KkXC7B)4A?XNo}f5yAB6V3#zj(v5)`#0nL zVn&k*s*uDSUZlqKI_+YG^LOzV=V6=W@sMy?n+Xml2|!$RbIXFE<1YV z3awF$v)_-i`yr#DzjkXea|h$-i9QAI77R@2PJ)5Oh@a9XFt$>d9okdiUk()QA;Bgj z&|k23qX&B@u1+QdKzDjm)z~rB{Cj5J{^;%RmB>@vn=yICnVqMD$19 za4|a%P(_{(Wi3e)sboZ)UL>aoF%!y4EEcrGjZ4Edv{1oLBI0oN^h|hE=xz#5?v^w1 z1MRxyELkHkyLh#!;1^7%{T(f#*)DFMFcbX`*d^TlU{qyeq4|T5i1{$W=$}T6*de_+6E9fo7hvg=m*3kOU|N#Ws^#rn zN^Wo2Dn6R|DT+h;l8aSzW4o23;&!j#OF>MB~bqkzhq~FD`F4G%F#9G{euC)Eh@NK<@i^ z%#q~rGa0V{O9c$6QiiyUDtD`{K4wozLHz~g#8K{>dypse169~uWXvg%wY3SOikEEM zxTJVAe{Imf0aaB42CC2Zb*}5zrtQIPTb^#a>!*41e?W&8MY@hNy^AvifCrXHLmY#B z`C5>g4VH-Fd79|!^17f{D>+6Sh$8<5t%Z?t7#!IWWY zREzB5th`?TNT}@9rz*PK-)tVzKR#hpRCH!W>sF(NjT+akOONQt5tayhN^c*#TBFAg1)p=Nqai}iG^g0j5x}05 zlLqxJGD~q0EHOGO<==-5+BbOcJ{~{1^Wyt~zflRbY?d-ypo@K&+3x8r+YYvE(@&Y; z+T&{Mk?661Jv|b&k-F|xn~O;X(&jbsEwX|`uQbHwN5Zr*JV7|a4sH=IbxjWh|p*re>_ z0duG3-`TBXe*4Ey9C>KP!?p6T%7Ie?lpnK{3DcV;jgO9gX6plocTXKMaxCoq#{2T< z6QT32`hF2A>^i#C#D`U-;l8M`0jVK68I$proR+U~AjIo`^}VlWeea90e)4){Dd5$d z>dsuy0WdshXA3=a)y+cLRr|Dx9U9WCb3 zVWH!P7Y?91(_r68@KH9?eUvW9!bhoDJsvI%e2}CeDOpVN*tcc_<67uSJWT~h0M46X zkO%0kruTjNX8XonXL|%+_eWmA9gfgc#J8kyY#si7g#;S)nzFfQ6t`YjMmPfO%Q8Lt zS|K@3O>ZIPP@t}n^9>)ZcKDl9(o*g4j9ZBpfOLqiqXgaP2QEZB4pgMkI5M4;$jbhe zLxv10Kl{Ljwi9!T#$^m26hE@tf{hy&bRCgct4#Q6?%c2DwOF$uG<1AS%+N80(%kH4 zHf=oEHVcrI;s4*S++zqAK37yE!{-IzB$IRjk*m0QMhNEKy4Tfc=pxK<;dG_iZ}PVx z#7|Dw!Th~1<>D`o9GN*&-XYt|%Xw>lYMH=)0ragc;75TH`dMnW6N77n?sRXm05m28 z)!oB@GB6lWm}OHim$hBPzhNb7`Sn3_jS8|f)$jP7tZUEf;@zou_W|6AWNDnJQahRe zQx7aTPJDrCuxhP%EyiS&A%cNHxthL|SU(!5C$TPZFv*QFGxml?qCbG+YCkrzE|{u8 zW+VO+710`FhC-{kM?JsL)eQMwYe}2R(n-m!vQj6dw8^wjnq(f(;U>~N2iq38~xLxock zI)&%uh=YotbqBZe1|-9L|%N{BBG-X;N=fu?}3Plp?(qa z1F&_=LL5%lRGDNB4-SHJDUbykysEV`S&|lj0By@PRYQkXVQ$}dEbZZKn>KD!Uz;~~ z&iwgv=FS`Z#Liv&_U+n(&bINSW8)m1~4 z%R8TVV&~j>^XB4doJ+t`p&A7Dd*N5dE9o4>5M{~xy=34bC4xc?xypmv_*Gx;C4Tml zuBS#z)%7!FiNxXoCddj#>Nu$gO0`QhU=nUflBh%NjfK(jr~Vo2mF_McsXk`5xHM4Q ziF%D208Y`B8g^>dEYd&kzki8i6f3ACg+~6Czo?8UZ=inSy=A!9cN@;Y-i48qr@t-p1fKgO05Z{rjN6swYX7(aiMPSK6#R|ikcw~ET1rnjd89W zkyn6g1W5iNZ&%(@7t(%uA4~;iU>M{07{EYI9WTEnF)Iq|VIMj-5D&r_3~Ll4@fC`Y z|H^x_BcrNkPUd&WXC@UEua&n?=v3UZtfnSzWbx<`f)?xfYmJ+~;<{`66>QVRU*n0J z0z1pM2GZwsDlM4J{d+ZhjlA4{bTc&sMigy~Nd?fHeSc*>=| zd93_x^YmG}+3kGG-JQEFLDuvZ;<0RkbB&9~+Cf)O8$w}ziyoRJDu8v=J>zPPgiA}f z+(f|+v(LTwx4G9h8$zA`l0%$p01h0y2atb{QX}LgMX1oW0HU4rMld{8)S3&&w!6!} zKA(-^3DBEqVj9X$nt$nh;mg1NwYFBSb$(P{&faESm(u$g+lu$+%gdy234+TG{09bN zRqQgH$whIFK>VeM@5lssdI0V30rD~uq{3&5@zQY)GcGaS1Y4y3yVXas(b1EbpU{jc z^Haa4QA)l!Gk(mZ+S=4v1A`JGWJ`em9k-({X6ESj`7*tU4gKS1WwtyMblJ1fJ%R6y zj2+RCR$LPW({$q;k>Z9>5vcfysKG|tfci_4>I1Xhm*fXucZAt-vZv)*Kt9$HC8(|* zhXi+DSOlPTEXvY+-b0NLG2rIXNk=GDIynMzH7yp@KzdyOpqdCtN?Zr(oFbfgq7u!} zpPX$}r`G#mD4t68@s!aR-WjMA#e&+C;kWRMa<)@N+6TsN-{m z0up2rZdBDr(hc;Mz4ES=YuDYgc;)dQ{@G{GfH6C}Y`&+}LsMS<=9`x%KhWm*>Nl=j zVLRTx%ItMajgLE;*=qMezl9@)@mG<4_8Wh7(2xxpZT|ldCy>yBPR&(Ef$q@nEWjVb zY;YN15z@FkQ$G|pQ}1=i2J-L&_t+>&1lKR>GN(n1wD^slCZOi>b!;joBu?h**>t`M zxdQjgHIMQ0>(;T{$JoSm>-dAf{!Zjk2cV5^oX}|W_z^mgg73rJBdXTa3Pi+85Sp=( z?T*}A)PE+(^&OFs=S;1C5jm0<53RmZJ>>C=Cx*0c)%Nit{C)N@dtkw$_$8K?CQf>| zsA!Spofnng*At&<1-G2FNKAR5S-ma}ygB zm?TMHd2UgTS2TLW%cmsbp_=9^Oc6+Q-85m(dia!Bd)=obf7@5SqoKiHudhXuzDDse zl!Zb`gNsjb;7^zykY?aE!g?Y-N0GWwz>8RxkO@8lUdo-m6gK%36gHNpDQpX8)sn^r z4N&f>EHT8xcatHZ5I}A{!CE*1Zn^AAkxD0CPa7bmX9vjNOnS z)54r=qZm6hu3SxlHs$1tV&Htls;V-=2EWwc*P;)qcr z9?#3pZkshG`wrAUsA}$lQ|zrA`MbcRmRpn3`RSC=2NOo_~iA2xbK z<)9I%hGlc!nf}0@Jr8W!!&ppKbasBL>HTx_`41+)+0&-ZnKQL;24shq-{Su>`~T9w z;ZN_%o!P0)%;G6CCXF0hQ#o|R;5JiAy3EX4zNJF>DR@BP@bRHxqs^9%`K^okw@q%@ zHY9X-NN`o}+#Uck_B|N7!aTs)ELCXiK8~W46a|7d13;71*D{1GeX!ZGP2d->@gb1M!;w_q@vO<>Rl#$!!}5LOf+?O zj6t5#-?qHYI&Iq2zMy93#`f_E^25W}Yvs@aB~uiY@3^|c{cKHWQG2U zuhHHiy)6pQAq?{KqH@LR@0a46LLq?$&*b z?f?p$Gg3IyP zIRBIQd|PRm=Ijba1|Y(I4%9EHtT@gg{%vyoTleNA18*?B%fR^%eL^N6O%TP3a9BWF#@ zj*W3S{Zb}Qv=%kjoPHfT?&cp2aDnbd?mqx56?{wcWg@~4KPHak5N5SenANbAVNMUB z?=Tu>&5VM1xjd7CV|f|Nnji;}+BJ6eXRYSCHB2*`U9<%}#Ywjv2?AGh`6g}THG*zB z9`Xpvi)xor)oftF(BXqRb}a2LZSMO%@T!Vv3W{E}3~9}(c4bM2CkS%@ zZEVuha^({Vi5sTAgp9h+Oo-{{q>G@ING$ICAQ_wI1i9%74 za`uC4_k-g*_3hhf{DXYNgOiK<_AQ=V+bS+IGj3;AVrFKdVehbEYeGBIemjS*7&dHq za97%O*Wls2O-O3doVkUmyd!%zxJBXIIYli5-dsNYPD1X1A*G@HuY@iOsv;C7q(G3< z9^ZtaK?0Uo7@3!{(yet1TWT9SDNMRKLAz{5rG*;E+kkm%&4$v`3YGet{Wc=Fr&%IO zdAmskgIl(0)@*q5`8hddeODC}1-C8PxN}B!j-#l!u%fD&?e-S8k1FlH)X}~`b&i3> z65S@nYKicR&S+USI6K>4F==#|+^&5>XlPdJmRR4fTKi+EPd}krkTdAlf}4T}!+9GD4h_=1-Yc)J~o- zqgAt#w(yj9{%IRgkDPv3Tl>8R3v6uZl2qd92Y;_#n?03Xg+0G zdQ-knWkOH4NwwfQ0fJjn_#Gu>w8h>k?yY~IpJE80p#uR%V?Y^(*$7)AfHGjx8a`kO z0IR}Bp{(Hf0GiJbV4}1ibhS>1i6%W?Q}e^agCaA`Q1rDtOj7mjxuO9Tnn9ou1t^Hr zlsBi;vI(`bX4SSV$nQ085&M8|Nl))PBEOxoWf=8xqTj=uquR&EtypT1!JP8i0C<3R zl6ek1naWlL{UgD+OP?7yF5o?2aT7nKj@VP(lDL;YMH;;Nh$^+nlFmE4C90W-!+@ zCXC6W&~bX2oPEAWx5H~%&lq3Zu5;4RsY5%oRbLj1O`e0=^XZiZj7_QTKfjrl531$k zx&6o_s>SL+lH~FuQ&T3ietKd4M<32-{@ant7y>8cOtEiGZw~`MhZhP0A)a%nCeGUM}lwxT4IlW(r{u0&)b`NYNoPK+N82KDQa%nf|XXwl(_hT<-Gz~!mY<+CokH)d(nhNk3K37|M1OAAAE4>O@a~T zOYs0P2bKDH$4bd$4`Z4h7$AP8%^34^^uamRaO4>Eb|Xz(I2tt{l}U@W3w1US#E3Ey z#irPmu8W5cTfBJK@Wo@gXJ?m|W@mSw=RJQ6JZ#C5Vf0K^_tNZ~((cCT_4BB-{VvCT z?T7`?e(h3c=>bPbd(5IL5ECJwq=IhAeV^%`E(MaTcT{5kHyB5ibqgP8Jdr9ky0Bwj z4h>UJOHE3Qw#OptDkYhwiQNDk3hBcFF!{Op5LlWKAm$=zNX->)ThN;iXrP~%5iCf;0;NUx;wfiP`K0qa5Dt{kXYgeABBpsl!&B=F)>J6mSr(< zDA-gI9IUD-$z~I-eHM+#Dy?rA`T%z zpU((f(}N&*Jco#Y!fF3hD(>Yyf2L-&Pm^T17wH*UxYMSE`udanzUc7un!@YC?d(D|Cgigq@+>IQh( zq-<&mFX-`r+3oF2x8sCSQakBgM^p+k8QZ1GekO=BzYwMvf+6?~U<_t323XF*^JQc; z@W!jE-v}I8pMiyj^s1qPu03%I5laq7t)k}b%JTl8$xj`B(@&!M!)rD1At*^?aQRpj zpo5*Dsx)jbIVnC?jZ&j9t|%-3QiWP)H&#W`Qz1r@B=qG&p@DmKL$&|bzCAY%f9mA32Sz>A*@*7u*CQGLzI{dpD_|D~tgHlRz8+76K{dRJJP1LU;umNkZeUW}LiICu6BY1BA2h;`+sQ2urag7}*KI(i%R zzJ7g!C>VVnx(#y505Hz*2}yr1)eu;;Vhuog14DOi&t$Etn8 z`qBl%)TTg9^bDC)4{M5*62pWT`V-_V1ZZPG2b09y+nAs)ZIT0hgPQ0W`>BU@jW?{_ zGV(?sCxUj%$OaF2!Mhg0j_+0vi2#7 zs)Y$ze{jf+5CsUN!O(bVMG=xwB!x*8z)d)!=bAWdDLw%EAE5%2EHwEE2U;8A?c!l@ z1GK^O`57aLzgW18p$n%ZC!{8(#>H6Tt??9FOie{N4_0qOTRc6#G3KA~=DqV9(?A1u zyQc|ym?h}J4Ev}pOVn(O&=~al^>aZ`al|>?-!Y&lpDC2@M@C3%L{AaR8Ubp?9rg1Q zz|0){U?W zqooo@F&tJBS+$@*3H`a?TbUr}&reV}HGI&h9Fx?;{7g~Su;}pUkRVg2Unt~_e|Ux= z+iXua+0Bh9?T3xO-h1S)_nvA@VN>`$zx*QK>zlBM&%_D3G74YDJVziV`T-HxC|yXR zo#v4AB-!=-HbAM#q@oXmXmNsZzZCdK29)nd1(oU2SD3Sbnkc2SMY+z_G@6=e$CTUo zM2|SC;b;>`!Q5q>w=ejQ5jBdKx+E%!?jl2tes+girBf(U$ez-Nkep+V|lK%BO z_MEvax6?K_+jH2m*p}&}YtXU=^HK008NmbXQXfapFhq7}E(`5O0eyG?5m5+4BmCec z*VT0BEyU(Dmq0>7f;|EL9t_CEo)DbSDTG;VRwJDDT9YZESRuPpuWplDYnxPB)P3gX z8t==m^Q$Zg<9!bXZNPkAKe1``jv>Y`v?0H&Ju{;>g@gb7!P+MdqNOi9*DhGbN$Eu0 zC|36m@bjlEZD?dv$Dtq;sIWn_b;O>HaM}a}1oo2x1A_xg(kZhi8FK@ZBT|zi>_Kqf zp|lpRDU)5epPC`*j1G_uy8_J?V7pOM1Ntq`Zf~`Pq@~CU*!ZF8j#T_BI6Z|e6#wEa zJweZ_@-60G{a0*?x4FJB?QkIiXQ;HSp|7HZ8OF6YC2T#O%By0mS!|@N_Msh)cH8HT6tqcD!}6`)isN} zwe%BIToxE)X90mOnM_0XV51{Yjoj#m2_Aj&0pM&DP9ggn9^2l>(^D$XJ1E2Ok2E(cg^>DnaaA{~py4H2!~k5y|>u z?-vnLY0`WB3*D36Z?GRnr<=V&ptTan)F;f>zlij-YDZi~MoLOXQASbw{H(TK^W#Gs zBDYDt=o8z2Vx~NM%p3c+Fk{|X+?XI_>1z;0m9VXYDSH7lqQ$2XDKe^v{lX(8n$wU4 z8w_1R{1TBk_#H`u7o5^A=U=?Y4=K}}!{pnX+s?y&etJKjzTX*2y!$1rkuKJVqKVtI z1|%S2;Ih`UE(F#)jpHJv1fz8f2H5bJ=NqL)(rRXMup<;s>rntcLGWjE?4au9ylgVX ze`^UUf<*B`bhg254*iw%rLZ3rky4UO=<$B z@1ls%9lE=Jb{*31BxWLH+`_hSHIXSt zwaMf#A%%&E#M1$5wuovItteZoQPzDZs8QAjGbc1%heDGcub>v?jW^!E%0H^(bsn`S ztOGNlxpW7;76tRAK=VBW&4)@)k^X`vmew+a{fkhoK^Cnnu-*S*J&x7#=K$tNf>m0jPm&}eZ!HfroASfBhx zJ%ryVRPc|+=ks*4c$`%DSZ;XIOBYNtJWh&pVx2hQbBm(P4*i@y&gZ#Y{Yf>C&aIpj z(VhW~4+>aoe#jmsc*annVU{op64C^D9KsW+OSdD8WsGRUOaBHKXeQ zOsC!e+pJU@6wAuIFkXeB(sj)ngF=?9&>;xtW>kVd)!3_&4uf6ys)&%f=*32k6%jFk z+2QR|X)Yc&3ZF{T&pT2ZJqjHF{|`c*ouaQG{3$TjUE{YY8LdfU9Sszb*AC)GzW`S1 zEmpg`(9%G38ZLWci0)wlU_$h1hJA9#5t59Ua=oua^ENd{0SpiZZNi{bCv$>fVOu!-IPQkr|x zOamy%M;lWQ!DrJgZF-LqQM&J$g36udD@48u<8$#a+EH5C; z*ZndlM_#_w1CU7Q zvP1qis~6Q5HhEkV_8@mCh5R+vzV0Q~p1RrS$f56_CU^Y`6Jg_Y& z+oI9#rJx{Trvt)BF(lhPR4`DN8w44(-sbzwEM1|J(lLnXHGP!B>D<5&{+)~2-TRa{Bjo!bA>TtuveutbL=@a7yR|iu zjlxfOoe^vP#rufjjN4S#8Ik4aflDBh4e&UsO1)n+M3T(|k>Ng|7Nj`hg~&^rOdWjT z5pfpR8DVSHpOJ_M;UDj#Hnrw-vMTQOKH(FQqtaSOdNa#F@$= ze;{dXfm+Hn5%C2DovMl|C_YE;po33!7*TO$YyZt%`OgeJ!h2 zXP}!NdJVUb)>?GgYeCW2!)*!Dir#0`R({#*pxWvlhb0_sbK}TkLbVsFRB=3kAdLX= zC(>*|23s@?f#e87g!7;9J{OMC9VrAkBCp1%0?gb9qW5_rNF!{v!2?H|5eYU6mbYfj)p8J5Z1jwn~1>X&m zki8#*DmjA}tC!Gh27UvoEyA@TeFaN{Q4p&T<`sCp&7T@kg)=g=G^XDZE(6LS4tTIGRy`tHLz5WSdQ0tFjis5P#X|3k?iXMJ~Lr&NzWq$V4=(^)lGQ(k5mWeB@rtwWe-nCd2O2x)Rg zc|w}Rj=dqE%P$_jF`UD&_RZl8^Q9j)qq(en!rA@ApMf(t$1T7ahkEn|P)3Hw{-%Kp z7=w3rH@qoe>`Bj!so0Z;*VD6*?Kg!oWW|(*P^OtQW7TPhL)`+5eNeFHeo#1h1IT(l z)rgjb1p2>%F)};uZ5qU&V>9k7@_2F1U-YoMrk*K2vL|PLz1vOR|Kl1?(H23$U3@vlVLn7#Xn)HO7k33CVr0B*qA`OB=oPdK-=lAHGqmXcy z9bO@6g#MsGP*Wpl4+If!q3(u?OQ53@qZ=-oB5}k6G<0{cF3|~kGfCqe0ao~Fv}Lsm z1VIYdgF8I0s#^aHva9L^spk`9twQDSbmhR!qV;41=cFisO9SymHm)Rte|dsTY+T*e z2x_FOz5@O-%QORD1>yEnHwR7ftH|s{O`#D5&K|=&NJTaxmI5c3IW$01tiwG z(yx(qjj3QNbzYaFVI6k*=DzI@ui<^zU$0^E-5=M#IcJ)IK1;7S-`KQ#`Nln;eeltz z&V96()961mQ0OO=2Pty&P{)o?1gRvc`o?XeM30x!u6gv1~7PyBCP{0Bh?mPQGGYOZ@BHCAN-6G zd(bWhnH@%@nu1t@5Q1EiEIK+mDY_ZW4zR+zt;aDiR?ci!+!F*q(il=m{rRA-QkpMo z-gj!n`S%Z%%^!Q_JlpvzGwyP}`O${853Z-+Mv-OO9$v%l+%?>}%5eGbZ*6*3u6F*g zbj4k8_&~m}N!aT$A#<(LFh`&j1<@FvtH_kLK;$0hA$h6thGe`DutNK8=J8YUeLY!O z#OCk>8VgWkMp1l6_P0n*@oa!6A~H)m&g*&LD8T*vvaYl9D5*C$v*mjioNue6KA5vO z87eej3ORU5*!u)i;Vl#}y#Xve1zkg^3R(BRLlpvWL{mToOtIHxLT29xrrwbB+-w|d zp2m>$e8K~!;v}~MQ>b{64M2*V2?0~xKM)5?1vN0pqJ#BCl&Xa&ktE?~s19KM{z4My z#-OLOAU-}mCEl*lEX+gd{06x$ycA8sIEZX~xDc8kU*XSa64(kWBv_01u?b%HM;(Fa zE@m|Q!FqL3u$GjLBMEPZOYV`~?s*J75w?W~L3@k9Mjvp9;HLmn(@!EeAzB%eBMM^E z4W34bbGub!?;C*t?e7;GVUX^`Hjg{e-jS#C8U0QW7NHZ}oXrTer%7aqf+cqHMvMl! zP+C)00(_|Q5SSN+7_uR0l$7G2T?qEA^Efd;N~BR(m6D9q3{0MN**xyiP?UfN6$BEz zKKn`Q5|M(wk;MGizlWU|v2M?l&6D1Gf&W%F@txaeUaZ-&f7XV{Z=Pbo9}hYWCjQCA zj-8g@F}B7Y-R`X;m;cea^_8AoSIwV3J1M5k>7B3t3_6sh%h*ZuU zht`uo8tz_edO-y++U|{>yKf`A`qzuiU+A}Uz{2^%j`do#=DW8B9Gx`b)WCTwe(~$} z$o*H(4cSAS{FlFGX7(S@yO%vA_Thzlp0(Rg=jM*BUeZnuX|{3ku4int_j_@Ndl`NL zm-o5%#_;xJhi=FVX88XS@-WAWZwh$ z*J-|u)WzYrb*iV-DHF8<4L70ptA+>SZ)Ek~A|6B}>sD?7pMCM-E!>3P$6vsiE)zcV zyU<4J<|t`+rlxK~6Q{bxo8dlG)3<})eevS0+>mRRFW`=#_E6m|@FcqV6Eh;eA(?Nk zL^jPqEaDw5Mg&O=HCMzWc&0j&w?5A^0LG{HU%PCe$b&2`!+ZU7T~*8iLBO5)$>V7O zN@g>P1yJ!J3wu!1E4b3wqJ)sS$1qcZ|;yM>M?I^Z=po9CsWL%QQHuDm%~%6&?T>}aRN8S!2} z!wyhJ6lvo~2bcZePbSDUIGE=eB2&-vh{Rybw{}FV-m&2k>3rMV=d(MK2*i-j4UVY= zM6|;R2Z@G4-97TNjzo&Y=}4sWZF8Rwa!Wg(_V$4dk4Z`IzVN5HK8Rkt@ux>intP)V z%PYRl7bnhVltQRKsw<}95jP-agqhAm(v{tt_qcIFzdtrs%P|)_Y ztRWx(c}3dD$Ek&amQ7MBMHK1ih#46SLXoz1Ms|qA%8@rib^aK;MqMd2uZk<9smT#+ zj&tY4IgiNIU3Xqv9NP`U4HjK%E zV#9HcWc>m95l-b-0q3=TD%V4LlRt4XQS0G(GO}RZioFn~4PvPhEs341Qo+o`~}~uN3k01Q;1R{hA;?TM1dbYQ%sbz=}(9(0C-?4fGMj9ND@Y* zx9?RuTmw|-M;h-5ba4=6jSnz`&e}r&6+Qi z#}7>I)Rv9B#C!k3dtWkcwuJ;{wKm>1J1j0SI4HY?aon6R1dlVWWq^~)(m3pM3iP@- zDVbvCiCRZlDv+Y>5nI4K1WGm`zyiivwONE-9aXLLB3>6S8I)n@T zLWdSqnF(&Vpq{+D4g~S;ad`I>brkrvcsCd^-c6w=L07oi9`B}*z5Z@W?V%Hrnl#pZ z5Eu$h_r}3Q0pm-;4<9B?ITqrN)Bt2;Y2%5L@Lq^58M8X|bA$ra=v0XoS3;T#O4c3$ zGe(Twpg-#MRJ8-a#IR5?Ox}bx@Mz#1PUE-XOFOske(5N`cJT0_gGSscHrM&@x;b)*^R%++`c8Sgb1Q++ z8;+wJz!6?kJi)x+h!1&yG1>Km=e|KX9uFaKg{YBdMuz9GR4pSTwIS>_HvpVB+|Yr- z4L5yta#V9^O>W0vtLXmMT($L9OYEVt8!8E?%WBL52{Yb~tT&6eQwEKyhY+55n_olsI zY=;5b=D%3pT++MnR_K4C*U^s%}6 zi|M)UjbJ0#zYqQufqMzxBk&SR`3<4<`M?^vcw{V?dZ-#25n+bDhbE`wchc4s8=$r2;d~l9ewiQVCoZ$&eA)%HVofJ47tRNy2uH*s#wY@^jvX$Kys zXZ>~7vd{+vw0f8ZFi@V06kP)lEK7bFxa@Bv!KG76dgV9294}BK1l8U zynh4@-_Os_?1yY$8q(v6Es70$fXr34!yfbjHjTM72AmB0R#FcLS_vXu2c&|ri9nmq zSu|3CzOE$^3VlQ%OXwr;PYEhXxxyy1+u!Fltr~2Kys_@AbBw$LbWwwN{9S@BA|+tO z5{|Kqo>bwENy?apP0{xVvn}0CkIaZ}3?Uf6PF>COg%U&yvg*w4W0Nyi58E`Q|FG`7 z-%G3y>;4jGqb_CE^Zd6Cefw@5@v_>tZj&;ZXp`n4Z7|X7t1vC1%OroOogpxp6`T~I ze(3IcPJrI=K+j9{O7LJ>_X(4`rL0`=+}ro_e3*}{X&*Cm_ zCava|UpDTm`|yGN3Q&u)gAZ*Gx@<7%-C%ZdAi6DJX;hEuRkTP^rGjxU2 z)gPJiuNQlsm$;w%usAE$3scA7Mg|ifKrRtD(t1c*J_Hvmv+GbvEzCJdSwd z#Y9|dsMpCh8D4XpjMftQQhIG6Y7gpbD7ABm#A0DX`zWDooC>9tP~JQh%2h+DNXtO8 ze#TFMNAfQ@9EE`_fT=7%)%CRi;#063)PB@64u?iOfvjEFm*7@$esQrel*SDr3J*hX z3yLWd$1?fw!G5Z7TGiV@XZ#fU&^(|1Ib15}ow1_-teC2koDeG%PnQNq8aOzY7>uQ2 zpr7XM(iKaRu@UIJ(p1M>mo1~I#Pc7io%zTkGix82j|K#T2Rj^9PRUzI@te7G=S+I0 zxN5MY^WZA}P-C419kz)V>icd<`8&;1WdkLbcx=~*?dm2lfQu2CR2L1N*qnAu5txq*;u2;u@gkpIp7Tj^YP^*sLLM@eW4^|;I+QVoAu5+X=4o4(x@hI@G zAciK~4lol@0Z*CF*c;{9BT@&WR&Ni(&>pFIT0*QPLK~iI@*19-mMZ2N!0*wFS@C5k zGva^h_OAUW(zj5MjR7?^_pM)l-^uuzMa0N_i?e6jD;oh>y;+nWL@2Oxg4x{}g3T zZ?o16VcG}NNPkHM-#j4rwA%wOs;0G`{HU`PDTfW1G%lA8U*ghc#ogwaKs&*^uk)n~ z#uvOAIV;j~tVw;GNl$Dot#*W<_lsW&WUd)dc6D)XAsJEOsu*#b^j2`)}@&a z``pdiGNYE~&71XM7B~=k0?ih(61|ZxFc1w5WCwA1(i5m%sa6wO1)itZRlCI+F00id zutJCtjg)F>x4J>mcG6X*Lk1YY{py>;(7=br7J<>q_%pz~lVNw~_wf1WdM zWbUEEm*}4<9MT9{iQ*y`KfpiuU{~ZmoYf3`y$hJ0OAnz+(JbJ<13q8#w9Zc#cWO&BlKz~nHd)rBkH7#{5)#+p+W;z_Jss_kF zt#txDFm>@?2!CLsBPp9-S&oB5?jw(({(zCRee4o{b^@G9esV78ErUo|(MhcaxDY0( zL1a`b2zEg%8jkG%GLlOvSsDN}><{$91*J`*!vs%wr)+v>&*~QWeKvA)lG?MS?8U6e z^gr{R97fO>$%AlKte0r)VRsrEq0^D1g~wBpv~XxBLa%^Ti>&NBY051qKhi-D_R%Ov zSyxj`77{9HN>?d?N^p8`Qo=8TFrBPH1#kR)S-wMc;`WM~dn9LJgMl(i>lle(9ESx) z`~^Sey|Rdup!;q7QEFireL=l2zg4*@{~qP*#}0{*3H`vs`L9yCCAb9Ds-+rxDk3Y} z>6RUOhXQT~%MW@m)Z>VPU}mYf83G+d=aA2+7uJ4KyC|+Fybi(=^ex#|1+UGhPh~cQ z-}ZYJVgsB&geRj&XA83Oh3ti!4~(pEi)B{W!$~n}3y@ed3hK$6d>j>dxm75r=W)43 zR+6wr2%tB4-Eiru9n9g+y4-R-RVb(jxPwpc36H>LqI!C_TdXm4+5>)|Xxb#YL zqrM&xX5M~bKc$uRnsPIUp~G!yz`{A&ZOC{od!p;{`PESb zPMuO4LqxOlR9VUx;*qSwMfK`%whUdY9rZ7^=eE)c>!5>Wg)BBTsVLtM)dHtIj;dv` zm{AHxC}1FAhZ5D%(b3n@*V9F%EQRhQvfBLa zBIHRpEM6-Uol0F)#%sm(5b-8e9A|nfS)26cXPl)p;5~YyP&q?o@54TKiP%-D1u_Le z;e~KjsJCQJIv65M@IvJPPRTv8Tvtu4?K8cXUvuQHJC7W>^R6Q=zMjv&_WH5>>tKCX z^R?6>On(9{?cefAe64W5Kk-vkZgw#^1kAhU;qp&HGKu^=|#2?e-}j zB;7#3$~u#s_S&)XRD#xV5Cw@Nx|(c^ViFhNBeOtU=M_lXTo)>|IsjR)kzC+u9nG>} z)nq*|%XaFdinC6R65;!)Y<6Tcj@wCLA(dJ=jSa~}YjZatmEt3^ z3|Q#y$s*ugU_tHTviuy;2y`e})m!yK$tepBY_V@*nyC?T}T`ocUqn4E+zGVHQGhv=kGc>Z# zY-fA{pB>1{2IU6Z;5 zqy&~>aJWFK#|z~*&^0=L%n2&}?~0Bc<^1WFI3e{}-*Z?@2dLOvpaV32WY{Vgw|&1J zguvL~)XBZn-Gurz$08V|X5vOHhs##Ih=P9u_N$U{?$n(qcr<^nbF<~i0<>RD7q`36 z1uVjny~hP%BwPq%y7_d(0jVmOUql&HyvjjJA zPQba62m)0UC)|99#N-vEN6%!7*jlzVH`>NyNs75rD2@rI!qg-q6nqtC(RetzQwrT! zO!x-C!wrv7HnD8Ys%5!_^XJU&$s%lwBF75lt~`|M+DZuMH817+FHYE$5|yhyu3zkg zRRuIgdi!)(zN^{Ka*1XUqt?P>#Cym!f=Cy{t2sbc(A-h+7kPH+gd#{M9v4u|CdsWr zd~23dgSSuOIg*mX>}r3)iL5Hvbg@`sG|h!uukcDZQJNMloH=9p(uJ!Rt%l9KVCDis zod^)6n!tVmqArN@VsiYLPf0c&b|SBYuwBdoeYz8KK2%ORNd)@agYZ{SZa}F_EF%f+ z3aniw3M*isPMj5DiFcV+8v87ff>d|Yp}vwlEC8ic z3YHA;k%wMT@+6fz0i~OqP%5DaD50U?1VC}*dyP2#4jHFuME#WN$Rb8x)_9`ovc6Hp zWU<`p9#V`;grAm;C#ISo6qhe+eo*MBbjypVByl?&8Y{#cS$8MxIO`MyDso#<1I4IZ z4qk0tm)Po{2>6SA6a^5|>Yuhp4`aYq%vu1=%F*P3+KFx60%x0i_ zvXY6Ruv2WSsB>aIKPFx3VCShRlaY%rp>5Q_a?>>=w2LTWTxg;%7XkTsJB_%hq57c` zsv*VFNjDpF>rBWgIa8-9);>!Jhq0N{`zLp{pESv)LiuQ({zSwdBK>n?(f)jh2wLc; zDkGy3I(n%hI_gE$-D17mqzyVwg$o!Wq$xg67f}W{y3511 zUn;ZxA?=jed>`QZl_K~$$fs0QcA*yX<;(b9S(^)YkA?VNgb5%UNXGZVs^!wZt}SCM zfj0L>YERfq?V;==iuM(0J&zQ^eT|%+d?Dl)@02mWl+RO7@vcV9FUs!=A*iwaB|*Q8 zp%_>V(u(33q-G+9EGms@;}1)*bD?V>o5<;T^R3e8HNXKhCF84-40V-FI27WW?bs6` z@s7-^(nx2z$FOhP+_#ANuV>pH$F>|Kvf?MIV7f-SjadW2Ak zl5?csj-ewDIf9E~GNdwLz!-^qc5ey|D0vF1_TV%`TLwxtcEg0_?ViEE`rCIL*uAws zGq`Ko(Qm!y!pn}{`=|f9>8AfuV*ma}&dj@)sC=D%{2d?r9NA72!Jm229b<7N77u_wp8@6YXB!%(cLm2^kdc2Q z{Hep>iQ%DaXF&XEuinUyR))aOeePqFzU;&w8{u~aIDtbf5sgF>k$vf;;&v8O-e+-9 zu%Z4~MO2pC`<>?#VO&1vbN!=}!5NlRI8iaWn<&^ai8#w-Y@a!m_qn&NsCXjLSF3gQ z>~wne$n23h$P6lG096$+0M%pw4V3g2j0q%(3H+y2MJi?mNs1$U8}t;5#}aX(C)=sB zc!NJZ1sPhFp4=vJ@(UaGNUsrW+b%8)da7umVlt5Q6p2QXQP7i|$_fhtxAa_5@kA$_ zo=k=$k|=}GQ(iD7{;!o&6!9j0zoaNPnz|(bkDA4j;1S8lJ_=SURTq3nYGI&}{uGsS zouhIFwYai*ipiiUw-T05ES>;+GQcr$_HSP>I8I?5Y>JNMoPWJn)qUJ z`c|%`fHk?uxqvi;GnkBnhAL!BprHUG%hHg`9G)z|lPQ6QDw)TXhQN{%U`fVA6K6>$ zh=wfvNYoDrMnf-49cg*RL}YR!m>DJ=MSdXd6}E|=7l0QnsNyM>NT(9xEL{zKA)VZ5 zKZceKlkwJ@R#rBJKV_};pUlaoGQN6LZuJD`Dkd|sd^*$VlQ*neyLx4A@xlf3MoKwN z&BQnjRX9cDyla`AfE-9zNSFF}Ml0t_A1a9;K0)*qA^LJ-Si$M5+!PhjSMg*{7FHR3 z1)l4Ffxav*RO{n*4@h6qf;)Jk2#k1^GOLupkdp}_dj$R#1steW#3mz`4(Yn^rQqCC zE%*>R=aNm1$b5ANd=pkRc*G`C>T@PTQI@v+9MjfN_B)fn_~|6JLtTaBuh2Ivzk$m- zqR1kmw?{%@>I{t)MJriHt*N6HuVbO${LXbq^OtEl^?oYAqk&!jCB|a_h%^vqvRIf> z4fhG?tapV@BCbTE$|eeRKn;+l+$?L1A55W^#;rl)x!StAx&~zFW-TC7tb75;PJ^xp z(9aT_Uln?`bC&|zhH2)tR{-7GE5v*ZVxBOt-W3DbE7c#c@6{ONhqns%iozJu`yq^t zqP^;Cq*?Kb%XUpkO_nIodK`ti9k{&;xQ$!5od$b~vKaQkVOpN}n-D1%i}Gj;?Ng0$ zLCy>cols+33#*i{;eu763m5IQQ7FAjNMCWss@Nk^DNFZg;S_rWe&SK=(GNiuKCwqc z-ikfSaY4?b{~j%D3SF&ekNU5rR<@#amnJfS$ERtJ(77bfn$AwiZ9(aCATot)qZpDX z$5}FsTj6AUXAqnWPMy-<*VEqG+%&1dLJWlv77)Wtp607M6m3TGJ3l4C1&?l80MRa* zGnVd|IHYsWA=+~Q)CSnI#Xo(;S<#*)Z}pQ~&OLhxCeX6N{{HwMw8@Z7Gf)9?OKx)l zmupE*$;+zJgDk&Z)V2xbkkL$BiX=oB#}*!4hUz{@+{DvVUjaUOrMbWUVD!{oXYb#B z%7*K1U$f@O10TQRp`E9GX78z|Zaib>si)}IUw1pdpU$ju`lO|~-B;g}Og28)luDkm zZqdNhn-7ehIXt^2)A^a^bo$g?51f0udf1SKLHCW_M#GTMQGx(S{%^Q%ixdLx`-}1v z2i&(IdsPR%7qLfk_3jv#;t5wV5z6`AmrN*?kU&#zF_IEv(HI%9#uOFN5TY&S&!4|& zJ_0UmzCae%POu=dc85IT7B6(#REXv!>i476&Cm zo|_X?NXZ$B8nRI_DVYi&E$Ss@DIjboOXe#bTLFP<5-;Q>Q;uH_UE^fP-2^H+EXvI% zn&O6pRSFVzJ4sloeTm2kGh;TijFOS1RY;X#YHj)FmdWyrJ==UMQ9|e?BlXxc2us%h z+#%jiNIRt%(e zPh+;Rq22~)$R0bOEiHw_iesbsFB7y4%diOMrdjB-XS*y2j0{5-u&~&3K^6p_AlRPm zHlkzC$DWnk+%OOeyEbW_7`Cd%9C*G};@QcU%VWvtwk`QGi^YLugRuuYL&o^=Tm}dh zdHu#w0$+B;FtJ?6ZuMcoS(ga=sjydzdE&UL`TzFVtBp^V$BuokVHOs9l@k!33_QO4 zUQNsr3v}!?KSOdlX)G2tYa*6-8EOokqBVh+)uJ}d`Cp<2;N;(+FrZ$$ZK#ru3k5P! zpk0)|hwp}hpN_Mk=&zOB8OxN+_!|B^(E z%VrG5O1(V_cxh+<$AOs{rpJt2X$4n|502z83>YFk=b+FRP&S}n|z7UhR|;>$%4`yOH6Q0ra5W}aWctIEMndf>=4SMZ(s(1Zm$ zw{iX?B4HN_hhT;=)G86)Lfc#YM^^+plhR0ycf#)2&n1I5)O8o=nG8Yt0VVCV8a$z$ zecM5M(@k%l!wXoJ^bk|%;ym=HohDMPKzK1SlH}+LI1RjPpt%-{=*W}kM|31AoPf(8 z7qUWX;Vxh^iH>B3pgA9yN$;S;t5}xg05g|i{xl!`D~&DVgEPS6=pZ^aceez5`5(h5m8 zur`(ddxEHGua&@6nrz&+9`a(~d|i|n+r1B30)q<@m%*8YxtS&DAcHnZ>0 zWTeucmj9FkhaZwS95l@{anyI}jYc%PprvG%DyB9P@LMVveJmLGf$kop4TM-?gyqr*Mj zxP>B!%?Lqmgfz;fusT^H2W%8JXo@4(PWm!xG8k7?*U=rzK+`~IgPEw3=^D1UpYqMl z?st!$_t@Ad|7R|)IGw z*YczQV)0spc!6&GI^goE0heZWv*b-P7`nrtc-cNmGIjw}Tsj&kSxy3~DK~<|V8|rW zZH=+6ATAk+QaF<)F(ykk7ePB&3T?-=lYN(8pfe$j(BiF{91Gmod%tj(M-gC+wjW0E zS35FFRxS6dg)|DM0k5L52&j~0V|_5P(=~-~u@*G_6gmDiBb6JiIieWS$qAJNn*iHCgmt>J0yT1|A zNLYKtdo{7kRG#(NC-4J1HHube0T2XTf<=MZC@>q7BZFc#@IEc9l5Dc?vqMTJVWAao z)I_R~PaKUe)fXV22&c2z&fNASas#4B4IXC+l%0wsViY%7ir2JtbS)k?G;=yaDtfv) z5JpmjqpDIIS^UmVRN40=d7+=UD&DELz*5WYTcdru;rVUv+v2T$qRYN-$#?yPSMk0* z#g}of6*lZ2TN3+7lj1Y9uur&3puuy7j9D19&$j~w1vF(Xt#v|0A22})EWvfG}sN1Oe~?8SG{e1sLgWJGfzyB`b;5-%sVRk zIRO@p`zg1**=(W!co2IlwTc3aEWbAsdn9`td&^Ii(#O1$GB#%-PufLDl-9zQU9>GX z=57}Sz=Ds(U_*t)r~Jf?V;h2p`H7nXckvW7s$OQFrd<>OBf<7*@k2lH;@GFbEBypa zVW-}r1v;_p;Y2YL4NUYRuxk#eyEYz$S4}~c7DYisBHhkGx@6U5sU&CQ$0y~kHj`{f zHOMwjac3JRdu?k=d$3wInH8@2nRK!W{h3OtT=O+j9J#I6Ch-+mP$zD^meemoe7p>()WN-_YY2otUt zB7Y~Or?BIE;bBq=$s9j;xL9^RxEAp6Htl>yP8=Q@qCM9(qf&Lm#h=VnQ7>?A+3jruhZ0FT-Nzkw}ffgg-Y%W`pVzn zSZ6o8Ql7WzrY9>d_;XnR!*c*%engGLREHC+>_F&j9Ua7%DPl_Ch%Us-;fO2@m;Jxl zL3omOMnG&ymh1-y$&UetAPAIj&{R#pK@KIGye#G`gM&!}#Cl!e@P>@A;?fo=4+-;x z2^&SzKVC!=mr0r!G<{#fYvzqvYL<*MN4FbMP(&0IVRM?59fvYkXk}tj1EqVEqXuHP zE>L)Dw&1wJUMUX)i|uOq^`85;@mz0=+V>Ai5c`({{VBm17kvLF6%c!M+5elbUfES zc`|2{2PO|7zs?1n(3Q)e(+V*lKJ5dRHbSXXo_%3so=xdP@r02KWCM)65nc)-?ZDCa{Dq&fP8 zyZMY9&oy%fBAV<*MbM+mP?5zHggWgFp<2P_g<|as9+QelKl6l*OJti59SGQXhqd{P ze4DVbn2u1byfxoQ-l&Eg+p_3?U_)f2lf?BFfqF5A2{DBg%sK26Q9vcWLR z-dnVn9++$45U!`u578T_O}VLvvS4Zin=zg*-jsdwGATkL0!b02h#=l$+sX>bYs~PX zB9zch5Oafg2ayj?v@ngj-I+*13Cjs&}dOrDVW$Kj4Xh_-GT+?m9nsTX1 zD8=t26c%n!kssxkQkW~LLvLOM+u;V#dM|o4tuZp453tuD^y~b`FV6ZIAvx`L7@T z%2^xMyz486m8CqY|4D!4SBq~^l=H^;#rl!4^AzQl#lPZhyw(ij5%z)qK8varo$!6C z7BeWnPyJJZE-Txq!9=JoZULV|?13*ygh~!VDXOA=s)^syI;uu}LI;MCW>#8l)Pq9Y z#={{uV+Lb0hGw9$Rw=Pih0#F7qFTg4YI*=beypIbR|ZW}^D^}JGB8DzJJb-h!L*2) z++ZSM3gyjSanpopfbk~|rlwI&e7-zP^D@lO(C#aPs;RO8s>O8r2?w1HTSX%ch?LaQ zbO-6elA@C)M2q;C+i>(mXUr`9=45A7XtF{IB@>`LH1!t>ra)z|G$~Zr22T1cfu*d% zXwqj%O-VOkH01zGP^Z24q6y1D)OjLcX;LPM?eeh9f5&DzR0d3wFv*q>u!N2*0Vs{P>%GkO!t5%|g;QYBriYaA*R9`R8`RNzUz7Dq(`8$wXwL6*&b^K&-FMeCWrv(&u`5>Z< z7&9Frcw<{{Cfk!i7vG`bpXgV(wqtls&G2mMi=C~jX~Kh$cs&h@NRfa zf42OWQb`9sC#S&8$5HV?o9sthYEL1{q2^a*tCJ}?V>-U#|Z443DvOJL)3g^Nq z3qUHswrHRUTRR;Vh7oK*z@nfL2$*WXn}^1C;M;_)NxY;jdcgMB^-@I?9-knH zeUo4dy^v(?3ignLZs+^QRl4!wYLge|=K2flJwIjJ-{g?xStjo1jgRFqloJa2=n3?PZz@8WC9L%jZT<51_S1$T7fzA#K7Dn zRX?561Lpa&1PS{onn8f>rCyT0PJOZVi8}LxJQASFe0Q9~tF#|Iu_F7))ixUQE+>x` ztFF)Ddfv62mF$K!%N!NP8>~i3G5-SbGs+EetJGaTFpy3U3=TMYU?pIk1@AMVLU;x& zzTHr9i;_PX%}I*z#Eu8RQy1zY0)9~ixGICDY3`5uV`-)_D2(}oA_>uOVohFS+;CKr zPLspA(4#C~5q`u4WU$r^oK@Pi0r-JWUDgfUhg{^@)P2{zx+sE@h@6o)0B|vvQnF)c zU!Dyun>lml?3uHTVzRO91nMS&AOn{4`-CLOK*jvDR)ZFu`(2k??Y>{s2*OSyjE=C_ z?oPxzmR8Qq)XTED(fZ1FN~jIEQ~rcNZQz}XI|NxvY9H#XG_bQBRaQEXU=_mlLTYHg z2)cJE@6}^Iqv08!YFKGml3f<}ih{OX%B2Wrt)s42{%MK3(o!+sweVzL|Cx^Uw!jJhdYoFZ9W%~*A9b*+^K9xY9atR)t0%g=pKfXOg6?Q5Qk=u~+|xj2AsOXdu#ZL>!*0-j}- zTMM4)6J+rxf^V7C3i!%9h<)&zPhqQa%ca-cRKZ9yG_DT}<LObGZ`mULNEr<>4)5}Omef+Is{<>MCzC_4;p~ z_{jY@^ly*Oimn=i5s8z|CNzbU&U~h*oX%{MIr~vffX;%<^}j`Dg=oG?=}fkuda!ar zBPYfiw+lK8717xUTdJ%Mz|mG%5ix14sw%xZa=a`z}v_}h5hpIv)+xMKhm_Th4=XPXD zx*VtFfvJhdj_10m@$u3ni*POP)&97$&VP$H^CEy>^!lrB z_e>ZOP1c#PF&e8ma?mqTn9Dd56PnC86O~L>!I|)z*2$$SJ`?8D)|s$v-*f76X9B9H zJ#NfA6K`+oztx#Az1^gzS9~TM&73E2D$E-k>r^mAZ=1Sr3^w&_wg|Ffz9B0nH&2Rd zC{CJd%EiRzFg}m3f0VS}<*X_ZPgEh&k4F@R?@pt+YBG^ZZij6i4<%4+P*p>t)iHFc zt6GX{8!a*hA72FZ-4%t6L3g1d@A5q>>{G#h-#5Xz=v16s(OfJXww8qzj=HUo1jU%| ztcZ6Uhj$Xi=~Xp0TFqlI)S3t|Gs%g~g_+@sF5bK6%m{S{BsDEM%A(P%1E#s{ES*ZG z(n)w|Obp4Xaf@MLXaY0K6VcMxxHPw9vFuIMJ)N6yc?_KBaL{jQhPDf&O~p8UN(o7q3(?yXaHoI5^+D|g(@>v;c> zkEnc|DI`FRZ|58&Q^_jWaOOFPvqUnU*v^uS?4QccL18L+4kk30aSke&D+sk3=fG#y z80~iA=fIrVJO{SDd(K?u9K;jxbOPtVIW@E;3quo_`EPd)EUQ6y_bNFD_O{v+I0&X( zD4YY_?Wf?o8bW2Zaiu1J?XZE>XtlL9yUT}!;w8#xor?`oTbmhUNC?T8f?*@gsnyi( zJ5iI;$=E)zNj>x@$C~MgoEmI;rYR9vfq^SSE(RY=qA#2_+6GZmVHY zejp06v@}g>tS|I@c6Rc%;;{<~YjMMJ*+`gQDENr8f38p*4W}-Stoz=nO>oiPZIulW z>QTYoD;ijC?^b0v@4d^0!pfa4d$;=;^>ZCKZ(tpqS)JR-N?d03c1kMZu7v7MuSb{% zHdKWBw5@@={Q>|+A{k1{?K3HKuP}kBaw|$^@uMnqvo^cK+gC)PnRRtWVSH!1cxV4= zy8{gNzIEeJ)VZz*eOEvzQjID2#$eD zr^&5?wXY?T8lo2q>!F#*Llb;Gp!Td)O0Q9LMy!FYpSIij3En{_i`t{M$b`kpJ&@|DdrD(=Bb4@b!63{p_0q{3`vhk>EllX#wk~JFMe2Si{Ck zK{}YQMie$$A8#icPmL!6!@4kwgmq=p5UitGRKVIf6Q$DxUr&Xww&+~gi>|QNe{Bo$ zc7wJ_;Sghh_tOM#=(h^sSBo6@dF-DYQhYV5Rx+9D-Toy-N_aaJ_6Ct>GF9-TRb{Fm z*VoWYN_A%6+nox@H1kG=QKAHu;L%+RmEfBuHNc3JJv?hbrm97pmelt%MZ6ic)Cl~H z4*q>F{_SH{0PZ)t!o8qDxWm1;M2VM95diL$PgM!rEseuZ&Gm-6)JFWGycOmG_c9tQ z<+s}VVfM1`TTy_dyP#2CiN@;MATE($V^l^>dbG)on(d~vmK~d$>o&}@v7GI-;2W9V z?oOyAR8K=h9G2^bS%9{)|C#I~r~gX8)2-84k?tE1hBk5U+8oZd87Ll37*;aY21DC0 z&!%#=*H!>S^A4vFMB;>@(L-*UCk$;mwC13}b~c5ta!}zSyT*!WBT|!v>Pw|ap+!K8 zE)G#mrPvsiJ1fxRV*4bd#8o^CsU!|%zH}B(Lbb0aw-(AB0t4)AU!kH3#nQH~Aajw! zYEnxJdQ_nSNKr4?a(xv=1yV~PFT$Q^cOdK9o$QIi5~W<&fp&i4ipzo)EOBWgQrB}~ zhn+kZz-3_)0}GYSV&Kwm7S97?Uyr~gqA=}kXiZ$&Rup8eiQv*ag>;kZbrQ|C4zk&h zH#SWzsG#S|b4k62V$kss$H^CesS&}(rslcOu2mOn`C-!XH7$&2b=8IfDJf~+a0Wd?l*B=f~(1r)j%0b;;Jx-%iN;5?50AHsR)nR zLdifOib|{n*GPD?`v{p0{2TJv?Xb7%w)f4IimcY^(YBk6hXD91XzBugHcdTDmO~)? z73L_h8v;yX;Lm502(2Ut{?Mf(iQLkZb1u925oD@~4Ggnstf>%F0&-Sv$LO7TY>y_KU>+GTmRj z_FLJ=0Q)VthAb`D+ON^HS$)K1$2Q9Z{5QYUhTlfy3cV#UoHM(Zv6Pxlr*>C~YAa=N zolYmmfbdL`F8HPFGrB?3JZdVvukwjUwLjSQrvE53>bgdkbmp9v3*5m=AuimR-~euns~kg?$xZU6{v!b%hfNSQm9? zGhtoXR29M6WPeU?z6EP%J8M^Hn@UANy$5Z7%AoBS>UL5d++QVaFJb9;ES`og#Sx>z z;p$AHkX{l2T_~G}vNuo+VSj6p?Ub~YT#D4Wu$%urXP+hvuY1MwAcZECRFf%nU-4A9 zc&KDW0CoeV!pU}5jpQ7~4}AD!C0p!)+dEL(wQ)r{mh(r=hV%9g+ftE>EV8$wHfb9$ zzQq&9iDZI86ipb%SUeHK6-fdqNQq={7#F6IFs^VOf^kfZ2^c%40`sV3MH7IrN!B*! zeF4UfZr^S|Hc49O$@)78&d`%(&+qx{DM`y~SVpa>$sjm)0v*7YGL�W7XA}YRKlb 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

mSc*%?Yw>=%1a$_Ib1As7#;P8_gze*erZ> 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

YMXG{sy~bARDOujo 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

qCQ~Fp|>xA;8}o|+@a3HfaDJK0-M2-a!Yzd zT$BJ~#-;s?Vp-*yfuE-DHaFIyO0CC-VA^AThS{3t!J)bE@HT`>I7$Hmf*mTMK(|hz z669720DAy5!u|~9JqD0QOdG{o$B%?2w1>Vg%Ae8XD~wGYWHkaJ=OE2w?-E1~KGs%5 zg5XbYN6@4JfeiuawufoOm{#HKZt0XaSklj|Ev+Xxt7b zdI*s_GZL{G6DKRM&hvUX(DT#JnMRq$7z^uC%Ja^7+{lBq;W_`VZsXU1kpt@^F(xkyD-k(g}&+O zzQT7wbgAlF?Co9b^M-EP0S7lb3!2L(pb6HtcMvHB9WJ8*Uo3nF-im>@q5%`pE7$H` z8@d=gl{WBHFgd%%fS_G81xf{ID!AP2`A6rxTQh!Yf9OK%mvfj4~P9Ka+nemXG!>+~AfU2`|G_FkbWoH0~SN3jh27hGR`DpUJHOpAxoy63DzU6D@ZQxn-i@$Y+ zV3ADm(Xgpg0AKAvKtm7Pg5>Kb1Ew4Gc?#9QfTSE~(n%D7aqPpT05BFCt&n@R4EiqJ zyzx@MvGG-}+E_SIyS6i#A4{{>rN_q7{jw;}U$z4Xez0wbU83lTfFjf%+9*i_O#?mk zvOGM$XPxYO)yRS{I<(*1uy@z`^WOBTWaqkClz!YdCWrD{CkOnBAgyD=s8@;V_qC&4 zWdn`%y^_+QNV|vE?j4@SoFBlPU&!Y?34Ootd~hn)JN1*ZjOV)k{=9ax+oRbek zEOffS1fBY=6*-EzMtA{pjaOl}O){v7AqaA4bo5*RGwU3Zfe<({Zie142Zljr+5*J@ z=Rv(i%v10{*~bWvfL(L9r2~V5WWrK+*a15i02UKFU}SpRtB=lkHfJ!uZ!I22b;}yeI9#>U{uNvDH_Kw zV2G6N9XhYLcu1hwONHyD)lpU09<~v^Yz{j|W3>>Vu;NOflbkgM%b^SB@Kv~PNM2fO zwoWRB;c2nW9w!+bx^W(BZG7PeUc^o%Sv1LdMRJ!DI;AiumLH*~WX2k-6RS%G`4_M8 zwk%Wu%HkjqfPOP3JK<7IIPRsWXdDLug|)+_WQ6c|smWA9E{&H8duOf`l$Qd^C)pkAq9w;rb_~!hMSgS!QN?ucBgAIyTXI#iuTC%Y!R|Z{LXOjQ5)$||%09`|Rr5F~ zegP&Jmug?NWbki91O$1MZ@b$JnBT;`Ods?7hmnUdC&T6Q=mCf)hER|~eEvt_kI)?E zfIaTR&L?|m$wIK(`6$)c{@v)0B}BktMIDd_)+PkW+|>Ly6`fIx(8U;`)nx zb4SkKmfhEz+Y6W&`)umSloDSDj2Kc{-qMquqHQK!@uVRC+T&$n-1o}_YAJ@!XBXn7 z6t@a@p|_A|8m|)-IsgxX&HYPsh>=3j#h-vKPQni9$9^~mWBCTx+gy*FIije5WDlrq zvQrl4*+x_Z-IZjmGoZ}~BmoHO$)@@AV8zowqZnN~!<3aASdDk=L0+1Q;_Q^Xu`~_X zZT5V%vrp`r2;Q`?t*Vc9lQz?NX~h!2+?maOOP0cgf4~vVSUk9IYndQ~|5a3+6Pl8O7#xt~ zCd((eI45C-}w!Gb6A!sdL8#V9s9mqBH%xd&ljRPp+;H z!Q3RnygEyECpXbiaBb;NarsYdBpgX*X?1Vpp2GH_cc^5t{T@vGrN4`EDC~htb$nLS zGMi_5*Fg*cwE*Wzjr6SFj14e*=^tT-ik2@~9go*s6EZzjsw5lHax2)|+}JnRq#J># z&mSw5Ios^PDit}xWVR@B+I>Afi-HUOSXI>>{0aw(+jp25GQ(qq&E^E@wN&|2- zjgK2^@IJl<$1ysu0>1ec+fsXeO!N87HgTnQdloqJ`RuO}u+p~Z92AsHd@8_8y86-C zwFyC8X!V?g6j?@s#vQgTM}m+9L+E4E#th{_n6Si%4GHYg>xF%!6ZQ!187OG1*Xton z5hxyFzd8sE2!AsT;ct*=Kt>Y{)(36imKESH9!MnME}%XbOjsN{8XDK${SA&C0_SPx zIFC)nQ755-i3-W8dp9-p?SqjI-0)Zdxh~u;Z-u>wJ2o3%)B;f7Rx4+P;q^EVQ%j*{ zqQO~atN0{(+riNGx2o7(K#0s{0DZu39(BEi&($cH*M#3dX}O9_Gz|4dkz`7|Dv%qu85DCk28C!zqa4}g#Vo>L` z1l*}BmK~J|7kdnWl>hVw0^WjbhR%h!!z(n@#H&tS!wWMQH1Q(H{yt#+1HJeMD@0xS{yXRoFO5cqqY^ESz;i-657N@J*rKLBpPTU{;(3AH6Np8|@=7xB3U z{Jjj%QJjs-b`nHqX1Fb-IIV)`8te(Cs@NHd@^Fp`nr_jagFS_GH`@}UynPgeg4tGo z5jc*&^2g(TAL@Wmw%Q(Gb-zNg8Zf*sw69&;-dVwu)eJu}+I)q6EAna%;tkZ2!*uB8 zLzFVnJ2ll?_zsY(Y8Yv$b~JC45HJkyB+EY_ZE(E7?m~~QMryYXxtYcqHcCl}RnTU2#p>1a(=EFWDg+VVC zE=Q6IL8!M9@vCsD8ELggybf6^P&Z>7EbN;?iWmnAAsQ2H0aY$bHph`LEF#wxW8U5A zPj>@WqI5yTz9?Y~yh9|6g#{}-UaLrJ`;BmJ((6MC3UDeQO~;6OK(xPYgeLMFl-)ZC zQ0;>fN9xzUi#i%dQ-WL2)XIAF#Eisc(ST}eDGvc<-9iB4I{+|}<`$0E)HBo`OvFQ7 zn_w5+=Xy{|OQY~4s6O*mz^&iy`jDO1_tG(h<;4wX>dXOtUVw@)hBGovY#5=4PsuNY zPT^MYPDp3jKFjiy-FGRc@R#T;h)ZOMaO@z_Wywg)s_hPovY=L#r6L{Ooq>)XESiXH=zjS z0Jm6NsigzrQXPtnjWsCZ+I~;4ciQU{7C8$GoWLv*O~DD|F$^Sra84kEZ?>aj7@G*Y zRqx6re15Q}&~Q7}QXb~&?yl9CmhANxb3vH;GoB3MfLftLF)CUgWGu}zW@QQMhCR7-H%NgCok z;jwyE9D$VU-{K9}lR&u^9KTu0sa@89y`62t<)S1gMrSSwNhV86k_-<1bJ_=g!gDWJ zJs+?0lhH_;By7hT_S{miy0UJ#{&TClNuj9KXx zqc%dT^v5dX4)_}+WszsLGL-#d$lc1LUlDTW%pR^}YqER!ZY+{>$GPz`+BaRDuT|CF zU72K$Y467fL*q$o$Yiv$r!&yqfq3@B0_eKfJ3#kn3(2g~&^X`By=p*`9*}<0SELTw}EU>Y*U?G0`E{2;;6wz3{6QADv-7dQH#V0Sf@a?RZ}GP zChq4!iqTlTEVFe39$GFzDhMG>{Tz9g%8s8ya#D^b)92>1@*HuR>HAP7TpH%R z$|w(ro-4E;c`2=cG7_P5Jcz)D%{ypuO*0Ehb=5&O-t-lA^5wAxPlkz^|@|TfgRHi|Jd!#(^63WE9(8Xtu zt<9T3Y<7Q1fXN~4+nXJIbvbx-)wWzm`x=zNVyd3bCQN6ila&kod{N;Y#6j`+QE`G; z{LeA@286AIIJ=BE29{a4m8n-F#}I1yIh%FxoFN={W+>_Fn1X$FFYw7O*k==n6rKki zatktmKWuYMUygmocPIBeUV`E%jR6(IJS%_$nndzv>m%4(r8^rc5}@ctX;TC){ogHXNio4+#n2(`)cTyg0#mM+i+cYVd)u0=5=S zG;SR@@B>fVD8dgg(XaxB$03B)8 z3LhiLL2?ILp_Xv}X7^|56wvDN$k2Dq+W~P4a)7g-@UEbJiSP~76QTnMzEIi8nnqdA zpPx(wVa|iAbg%0q*2_4uHx__r9|OvC3#tRW8$7zweZ7)ax+K(BSR1yvc2+t$_)*hM7;DiFA8HjZq>5GdMCGyhX(ok{8Z;JERG!SX1r`L@C5G_TfT3a%y;mQ z6CHk7%kgAO3{ersk%d#$ohDJfzzj~nAX+XD+J$ah21<+g=+Zk5haDIx{-uKB@PFa{ zMj*TW%bNatBs9V<++!>H4Bz{t=lk26*H(~Ws8uvHhWtSUnrzDuUYGx(-x2o__Q%8U z6><4qa=?&e6S>(=LUAlKaPOe*d8S`p-`Dpjc%{NHq-n~Ue2f2`@MPGL8i{?s-7jZJ-3$uflF;z=t+ zbn$3|?g_p&GFnd_u@>pyYzDbNR&&S|I3tTnptr#!geD#2lVWsc5`iM_&;r|QyZ_ix zqJ;ahrmFjc>BpOT`xGqG1WcMX#u;a?FwU;sa2^chc2?1I)WMJ zh>w9txZ7h}=AK-cDn=0*ha5#x6T1{xt}cbuVk(o+6&`QUl6?(ExNoaB(3jAph=z?$`nKFBdWmrqj92bz* z2C1r80D&PSt>z~Zl2GO_MVsAQ^q^Zvw%8K41@}H$Q*SnI8V<&SX>xk=7f{d5u*#C6m80j3Mm2}66_dkAn57B9qucLR8#gF`}OZ+;ey&a5{6~L zE&ve%Tf^QZ-i4TLj8}u}84?CS!pDw4+8;{FQqYy(b>E&_Sq2*A}W95cZg1W5Zv4geps z!ksE-%AzolBp*Ui2NVVCpPK4-5Z}eVU?)noERJLbiHMS$@x|@4!5l0cvjhXo=lRgk zoY$`NMmZK#-VNMOXSle)16vj$uHGr7PX*DbwQ+b8n9SpGP)fX;GlhqEHK?#K3r2fm zbsp8sMb~@58Eulv5OGOU9p=>)xty;}p$3FghXrDNEHOkWov8HNzmIBYJqg;9zXKT_ zdq+D*cH9&kUzixrqy+8Ubz_HQ_r}~b;tKiP6#FAeW+Cfuj=Uv=81S#LwSNlv)>H(` zI<|pQwaTdmRs{-`O;5AeqU=>eeSRFi%}Lm*Em9J>nj3h1qZ2&W_-}3b`hv(90?CB# zFBMEE`Fbw|HrrSNd=;mt5xFT4ugk6sPai%5ky!2DtVq#3S&B4+LuzYK9vy|i4RoPG z+<`ScLpvxn<9jwK64)|o1Rxjb67hTKFbR?OWbv^bgRUgTXM*?h@N;w7sn*?h7$hfF!!OaeRJ zDJcZAsPHDDK@oo8HoW>FJGbI`yQt9Xe^1y4uPFq&PUtYnY9UteMIk)Q0&}~43L=ZJ zCJ6Ax>GA<+9{4oZ84F+lm%@2Y`zaD!V>(uo_tkVQ~5KK}B0<2Tv465SFLV+)o zGqD;q=IjbC58qpn-PmNq1~6^h>8(`1k1%7$!whv{i5?v49^?!{s1#*auNN(Rc_p6{ zlJr3H)x2;|K-kx`DO>GuScu`LMB3Ij+qF$#kpS|OE}w1e7{U(iUynjyaQpxX|5%hi zqRA|Y#a>@Oun}J!c<=+jgWIJFo?B1Rma7rrdK;Kq$wm23q?x0aKzl4`*PSI-H>b@ zbCtRNgfZVP71X__Wqzo+W^eT0(StRK-oyOOS!f6aj@}v`X#6x`>Ja z+DDYPAvFy2a*EW^0g1gW`Qe2KX5J_4o;Vs7hmfZ+iB1f$F(j_Um6^WGq}y|@k@BE^ z`Mi5zcc!6paO>cqfr-S0JA9WEPH3QyLx9>OPWNupjFullsaF(sImi4D)hXnH0ym0b z$$Mo)b4By(MuiFt`Ri&Yn5iUQ|Xy2EY$d_CgxAVYOj)0ob1c{K$l~NGh#N+|ND;HkOQHOhcr=;^L671_kuE zDRHLIB^z=l$hJhQc4RJcy{B=%^@*cYPU^lmRHOMT8(RB?@;aguu>?D6zfrhbK0yU0 zJl=@!F zI7n#`7hQgXi|rNQseMez1Vm*RYLQj=D_otDi7c31Nz>`E})DS_|h#yr&2ySnY zH^Yztjg;_JqJyEv)0a@mhs9fY*%7NnVef3(F$fEKjO3=~dI%iRR@kEhs2wtes)dKa zkG}?t;JX~z`4TfKR&P7%OYK0UNsii3!5NsIC0MEbIn+5dV=AJiq?9Ry>j0(nM{rrM z+IFWCQ(dwIcX)3%#tV-7Bp})Vu-w~>h3u-K}<&-}X@l*ARs^2tG!Ya%F8S?CY?pskV z{e`Gz@Ft*Gd<0)UZdDX)#CR``Cn1#mD9BwRr!a)2>Lr94@$^n9c*PG%+hoULu&;Em zx2;Wx+Kx`|`5{FDTRa_qWFeLVI< z!pf$eLRJYeRR_j|VuHwW2R~BLJS4j)8029Ruh5O@2@2W4Q`9nSjdB#-!^xQNJv7(tH|z|p_RV?e%Q9y=az95F#5 z?qHKm(q{>26lEWe5_{2rro}i}oEregtphxKhg1XZU7G&cV$rIk18~;>E@2_ zPPWel1JeA4^iZFgOFs^<0XM)1>yEjsPw*aSW zL-X#@D5{;8R(t86YMbt_feAn<-U)+h*Rtcb<5{@PxHhg~X#Kyp-*`?F4x#cn_QwSL zP_JuL`m%H_q<)aP4F`CI4kG3Yj?}HG23?n^2oCWe#M6=Nd>Aw?B0>TsapMpW762$T zP^JLKb8%qUdtz?xs;lPaA{A8&BO`5X?1l{uH_sK;$ccEo1*ts2s_c$z^H_OMRNA^P z*x6I#M?OYVSv(=@T6?PYvhn$w>NkqhA2@O111FekS7qhM!pP}2z5cx1@TcQ#l9Gxu zO{xr42Ff>dj<8G1%GPEF@e=ws7M0!2ah41YhRSM&GKX(Mf1FPM8%iP4_nRod~^MP=tr?G1LYsL zq7e?&9Op2mZjSxwpGAoYi@txfhmms%;Bq7~v(X05n>l1aoI7;4(f& z<&t4=@^Z;VOT?B0ND8L3JjxFs01Wf5Yd)Xej^vR@M;x_lj-Ysgc7a|}j}E(CjTMU{ zF7Nf`E!ir*1dg5KGc>L9Bz^aXI)XuzXf-a-^$U1kmf~9fCHm)d;`{Q<5omK{&O3Q= zRY$XcLHfP!Y&LX8`DJ2I)p3H=>pK_dz zUVzlJK1xj!uh@oiCaB>JO0HAjMA=L-Twre#?-Tpo6F@uzcWu}rR`X>8MBbd0(UfjUE?+5F*r{xGwgi$o$bC=~_nIciI3 zEcDId6)~-_(LalEwZuA&=S%22ZAltB zTVLidZg_`EVnO1r7&)BvIgc6;{+mMcr&B>2QZ)U?Jr}Z2V035r3-m~WWPn}5$&z$T@a$)m zvoubFnzK)t4ll%ciYz_!=9q>8k zjz|@5?>-S_7$TM-qwbnl?@*%rlss4ZuHVQm9kq|6lFI~^2h?h#+_xj zO`F1RBbo6EK?p40262jrScz=1Rre7GyIU(1LCC}^VxgvlARy&TY*{a`r=7 znsrnWh;C)3P$8X3fx^$b+W0x~@@Tj*NlD9+)H)$(i4^KG;}pRw@KfBu;wir`Iio2- zXV6_dbQ3^bIKy0h6WT`ySx7n}&G5XJIpj@VTq@(wmiLlzwh?ja?cL<`RkAl#JtvFT zQ;s%-5Gk^V%^B?Ss zfp+ij9SkCUXmjCUF(F2{sJ1~Gxi}e#c0&4KkN(W{e(@Ric2_-(Avfk|SCSdmtq}Xv zv0yPM1glgq+4b`qe|l?GXM4?^UwY!&hJ@H&T^svoH2Tr#SUO(w)xs}?_ul%Go4QBa zzH;ZyU#&}2RHkDe2{tzPKORe0*G8+&!nbMfGW6Jc4*lug0{w#f2Bhw;+5oqZDF|I+ zMMg@DNc;BeBuk!rA4@#YJ2UXR4?gnizrVUIm0C0T@2S+kSJbuUQ*GZad{fx_aN+3( zA7F|1k+t`M-~H|bZ~eW}Qc>4fF*NjlBHitgZ>0L0TT;ypg_HCw0d^E}>eY^|kgFp5 zl>`Hfh581x;^p>h6?!md8${*GRBvN_oK+=QvhbZmU1KhB&8a^&_6R>}%(<^k)iv}A zqnjabh>9Fi$}at9`$v2TN;7uZ zXDg6C?(?T=dup!_TS*iiGh!9KP=9Olz?x>TzGD7BOsw@~{BCH~V7EVBSNG;XXQ%;y zhaPQ=bOc)a^K4_H)iA3)ex%n5s3CO^YDj$mIeqAn=`3^7LR8a$X4-+^Xw`FSBBZu0 zuWbS&&*;N*;^WIax?eaHh{x)XXy=OrCyu8lCeoc%o(RlNk3SHP z2TuK+FDmTCt9T#~^FT~lM)kV=6Ok)Xf_=0zJyr$EMOgR7Yhw|_W)4GVzFK+@#;pRr z%3f}X5SMSIEpn#y!9UMsi$$GauymkVCfO|n6GD})Fie)r68QV3Kz7Npesz;&QZ!8X zRF&8z=b_H&evGJpzdwE}z(POjWk!5HbKKa53Z55UFRQORPUXYykmYmHTl;2TtiDXp zP#0fpJa>HJoJPcfr_gDladdZg_ny(le~ktLQTjjAJfoiKm@z?BM2|-N2Y8`Qe?++7 zhY~=T?Ks=#N2Tg9(+WgAqu$fs3K+&!ZueDDFl34=bVZDPPd|V z4pE)Z#&vtx=px;Oe(bhPR0;J5aI@$iD0R{w=ek>Q9f6EJDBZ(tm0pf0Qs1oS9d`x0 z7Ba$_mI`E_(;$(dNQFAFqXV?0o`2Y34U$!38#UGSe9V`u!PSF)#A^f=3B+6U$8Vuk zrK931N`zq4XEEwGD((XZCG{2>vST->@^wf2(T13$Ou{a#KWBXGoO*DACp977ux|Ik z-Rs_q8f^FncHAfmo<{X?)AB_wh+sx>{(cPk-}sT!&xd>=U|`4-sO~!IIsJ^!YlwUH zh+yuZhxp|&R+k>`P-J&|er*4N(R@3UYI-oeXKiES+V9)b=ZnR52Xq>6zkvb&EtOTZ z2V8K4Pd_d_fj-b-SBJ}$>j~uid<}+CLpB@|q?+nlP_!bpuZ@8QqQdv7ALcR|klu3Q zGq>IG*%LS2TlmET_ZNO~-`AeG|G}SKbfC&VneUtORW2U!yoCvK(oMI2?sK>Q*A;Vx z!du=`_{F{VvcP*D_|Z@AJNn5UpIRpUsBhDzzW<7qslJ}aNk+4g!gs|tN*^XKtgc9S zE#4QE)7C!n>yNzcf;bTJ^WW;Z=0hJoapC(caieCjRL?i+h2H2||I|3E@D9VND%z+e)>bC%QZLGkNvAnbl z)xm{MprgonqAf-SC{Bi|;8i71wwDwyFBKhhngK|(ekvo~(a^qND z^|f_w+>q|D)EX_2MUlh)Yye5(*?yEe#9zWA$zZ*P;=-!t?I>5(s$6ZN$K%b_g#C$z z@@V9q@~WzG!}4k!?MV5Gh} z%)Z!OUDeiBRro+vYire;3R(8wqv3Fved$fr?Hz;xwBz&ELKgPGPh2PA-_Jldx=_|O z2OGpszp^<$*NWUIXpm8u^`|V`*pRq}^))v1v#S%0O<6Hf_+g^CISHpl{I|wlCYGN# z^@oNG6ElsXb|R5&Xo|sf5QS9XdvSaR5&!K&57}m*s^r5!zEayyUK1Irh|@CR{Be2# z_B)7~IkHc)Q8#q8;+E^h{SSWsnrohZ@W6owpFVNo2M->&@wMN+Zto_+vF|KP+mKX_>W{s(_>&2`_pcJpgLy#I4|-nRL* zA1(aHr&R3;Rg=CfD6;T15rp2A&&aD2yznyu7^usl`jo8_@VGDbkpHH$AE=u61tbPY zGm7-M{vr=~SQfq{;OnF`?Qw(6qG9vPe#Say3;{L}-ca4}V$aB+l2!ISU4KlKW+fE` ztX_B^=T%+&qJZS*Sy6jj#W3O-0ZdE(;%L(SI$r1Cl5&F9z$ZP8`#XKd$?De%o~PcVVS zw3)F8@oX4Hd$TkM2Oj#tpPt69eCTQVb<^#)KY7EquiJdxM-ME1hcs3U4>Bc6;%EJ?4eh-{{`cKb1bO67ux#pP%58MRta>IA7zy3Qn zT=$*pzM!+G=w`BvwWJj)g(qJ_hd%Voe?5c8JNfj9C-1!dy6<4^VX@w9{j+4KpH|g> zgpBzruwIGHieHl!UF{TWvArS!ySVKqD{x4l9u@AGP?=xu8s_R7YSJ|s4opKg@|Y7g zPBz0aYGAuXmCLg@n6wdfOw`)gR*saFx3rXdJek^f zC{WF$16#W$%=V%B@@}|c6;$gOyVTjp&s}o$+evo~$9{ z|D`_|#E($Of5Q3E9QD#)W@I3UR?YY$&=mIFUl%p+_lJ6;=6&?xeO9D0PO9CdpazHprhzI^=ni-%s zgN1j~wfw;lQwg)hN6%W3I@J4MD*qr9zRe5->A{}$hC=lFe12Roc)K^mFLk>ajp9n- z+vsNa99sfN`*N+bwP23z0HSmZl|8t(v$9U$Qavu1X>cW|*%cKNd>ipM$C&s^{(m-`K^2mVdn)o7&e!Y+6i z8DgJv{V&&3keYu^zab80aL1uEcajK~kP+N#dZFG!wv)vVb57x~6yA0&SsLU=WT~`i z4DVUMEqKVyzgWAWXB-kzXlYi9S(!4*#V<7;LhT{Dyj?hev`GX<%5jzZ$=S9TsUJu5m7{e1O#?3q{EaEQ2R?{~Oq6X?9Y2kddG z_vV!`Bb?tFsDPUm;7aaD4Ur6zBEU7oEswm#Jzia<1oj&h-go=l;cWt|{tkvjOc% z;QNwuc$a2}IwBTdteCcF5osxvAb-i6>mTv7&bJ2Jkf&e&XEDk89p!cc_9eyq>t9fK1CQ$*8D_s-k#$YI zUGH}K(d#0cl<7sri9P+c?0#tp z8ZRQ>|GGVCHu8K8g^Ct{046gujalwUV>qkF$=#rWKFIaZigkJvH|W1UFnFm>4^Px@ z{i`>m@vNxFt%!fSq8-htC!D49lFM_mpS{9vG{k3k2M=Dz>Y)wm>b zUUGWSSytakl(a-!qrCS~O0znTQk9*yMkrTI$ppv@qE;K5sLBH}gF3;kEw(iRiP>I4 zRNjeKZ)a7jR*lU`Us^TP>>8^ETst)R0n4~N)IuD?P=21+x391-(W+%|`754w*y#!w zxpzA?1xTB}9@W7f_$yQuSe7xbd{$T08u-gq6?m~pwrhQrOfnY@p#73)ph+%YQDxvS zRZ`&3p7-ZUiVR@xNw*Yxo$Ul;@i@2T-oiVFKjHd1>cjm-bqg?$Xi00c5;MULhVsn{ z^X|p#v}Cy-&F#BVXW_4_OcqO(M|#OZJoAs6Y;%&549Y{`UH)~un6bZGsU&{&aw@>Q z_RrD}Z+G;=JUWA11g;x-q<_&BwQOkq87t_|R0wyWWji(IGQ;?TI`g1LE{MVW9jC5O zm}WlQ{O1e)Prj15vt@j-ZpztwxmZc+A<%HChtrEzj(O!X^FJok?;?+l zd+=xev0{rR|3`%P%bL4eRtRb$726ndu|McW*Bopv($;soT$BbtKxGlNs{GigNpf-s{S#sqV2iG9O&)y`IIF?HffijkthZ2d<<)PF`?;Mh@lGaRZ zt(UMvYsN~3!+7(})3;3z9-Ho*zV(6IrcbBP7BtnAN;Q__r@ZO#t}(y5{faBLM_8TL z8w#7-EUUU^*6W?Mg5i|4%@+)n-C&x*%R=Slq02(T=du6j^a6N1GiF&R?3+y{Einfm z&D`#dgp%g0Rk&gLwwd(wvBBwEXJ&3K+!0PD!!ebCBg(I@goV@v9VfI3l&7L55WXR?MM6pR-(v;d@S{$58Zq5lk{ft+`;|>eO-&|y0`iD zy`#hJ@f7=|3aTQAyEw&-LqrSx-|$-nf6*PIOeFh10oU5Io23hnyuR?6t%V2iF8+zE zXAQ2nZZY4HNR94mjt&9KxSw^P#_wx5KWPmx%s=5P^s@DgvIm@nhOa`rqqA_7cpMcm zYXz}grN>4nsIM_%LrQ%V@ebmI4Y9P{&jGsy>lPF-uu(Z70E45LQc8faLjNhKAleD; zv`rMCp;a?rInjSLsC~fyAT~D8=gg4E_a3TwM7z>-%}^wb5y!boDC}I1UlCiA)22`o zD~%?-Xcjex+Wbr#Sl5C-YFP_lc?W$=MWH~XP3;u8;UgSw%(7&@*As;64S^}LcBUGcDxM22S(&^Lf;bfKlHB%*A& zQd5Thy})&>@NKvp8oLPycZUsJFNh0Oi=pxiB_U|mvl8CO(GQi(J+Q#4D!54nqHZxG0Ka|&0U6!;VbTn2Nngr?Y&~=!P zXh;XQmWf#5cussx0X^IC#jpdg>ScT(nQ5|$r%&gCH8FI5!rDiQGD@t%3&mHI6$xdp zFcRqbrpdbG^J&N`_KAX77Q|rjp++-O8bVV>7aU2|bP+9t%%tPI0tpyiF{0|He z-5pOFN)!99dHQbia1sk6_SJAt3_La~Qhw0>yt9{I0*!d+f%J$GPe#iU>{bik9wc@h zYvda!2E#`Mvgk?n8WEY;h%F)~1UwzA+AP*KEpl#`C-H>NX2Cwg0(C-)sLk8cjU7YX zJ=o{bu`AUu(x{^#pRCQcR#%TMis*$`QJ1Nd6`zWc-PT%D*RrW?B3oaZ!8m3cYI-1L zo@DM&N7r!w0B)%15xH%~T3qMWt13F0yINZVqKPYZ%=lV1wl`!uYc!$0r>)w63}vnY zVxs?wm?&{$S7qcV5ZA?sC=Z5aGyE6DMB7$r9v{LOr2HktCjbYEEhp}xJbNL zYH>v|f@|<#V7cSJ5>h=nGm%sQIo_t#BcZRppIWROby1$*0qFDA4fB5%hzuf z-tpEq>p6GN{-xwHri8s=-hp+w!2I}||ix$!xPx2#{AmiO-NnA zA2?W}-}t}!Svrf3DE|H@O^Jbmt7!CF(_+ddzkP&X_%d$j0pS?r%0)VT-y6JszxT#P zx)^Tb++L&m;6OZ8fbRZPJdr=@SJ}N$@Wbfw3N3U?NKauCzoOq?h@5fIWAqV@!J4?3+A#;UsFH z9L*2R&gS#8v)^}q3)cz*O-%y={|W7V$<)*(l91ckGj&N}M4Zp(=S6{jep#H$=jTNJ zllB8+cd&mF*GUY0X2Jd=+5v8hK0ticE8u3`*?({V1;AR%lbeuUm~B|!Bb>xr0|)!- z&TFfg^Q%_2{+x^HS_;duN%5UhJGekKt_D{Nx*iX@MraKdxm6%P*c=CPQ0PYO0?dMF zraRn_iz-+k!z{{)5m<0Jyi1?3YN=>Drm$Hxzh93812*|C4en)=wT z_Q;w@b6wfR$?ZmcGEtvP?cF7u8oGEoou0X9=+J$sTW(6-fB3-o_?jaloj9R>&5q&n z@;8TvBX=h1*%Q`ReBnfW{dafnyt$$R-$7Z zb*OXpk~PB@&!+dbwzah~MnBh*GL}(26PYLm{s28D*84BLN!Hfd){1{^BhLGDfPJK} zt@qA#*N;^A&9bYyhVRM^UA!&bIdjS1_Y4ieKpGkf>VDlomu_Fuil9)A?l1f^`%K{p ze3Z!y4z9zyhTG5rny%xA;npKqzbq(Ji~lH2VEtMc7cdi9ccweq?XL;fG}JJB(_nWF zuf>`uezDLro12|x(>s`d;Aq~M_w4X2oV(3J?tswr_P4X>Ti#Om0jn*1zp;@;Kel~4 zbefmlEj}r^p&QUb)zy>B@PW$}e`1V5dJK1x<*YQb8vLtj7SmXwfu3QZGu@f)%A~tG zGu`R#Ou9RbYL-3Sop_>7yy#A62E=q%7=Ly4A$N-23gd753*l#oUUsK#zY22CZ#!Zn z+wfHWp}M+3e_+u5xnal;6_3)Au!JOb`a>`W+*U~Zp|YDS^Wy)wRSmnM_!__WD2ftN zdd!g3jo<7E#r?&Ky1I(u|G!KZVrE3Z+F@T0se4LJrL)x#&hIXKS2InGRdp*0#z=L& zomEP`(puzqP-UPUJO=Q3eZGS5LCLR-3b=DI z4I{ax+MWZDfHCr1en)wR9-LKZ6DO$;hk?)MvvVDzw&z=ogG(&mcWlV{j!ujn@fl+W zSVzZnM}DvM%XNGD2Ah8&2u*^pvw3K3TNW(=XS2Q2Nc8u$AeYwX>qK`?OYOkVH<Dp3{T?rlP&+ga-p1=#-UlK(gzu;a_FMmM&)CBJy8UCAkgl=L z>5h&4!v4|L5x7gjNNeke9L#OpmgulQP@Qv}nV#thJ>9*N zdUhx6Y?#eCN7%?NX<^+31eBaX1Vu5xA_f!;Jj8%JS0st3D5wv^L&5OG2L_a#;`iO^ zp3Ma1{r@{V-924ZH=cX$xhH&wubQhpM!Tq4W&SkTJlg5^+WVatxNwR8_+ojvA9mrz!@JG9nOo991d*Lb958KQ!vtgZZDBc225p+h7DdDXn zktZ241R+7ZawQE*UUC^SZLXWr+Efln)$IfAKua-yx#;Y%S!MDJQr^`wZ;oyjIHbIr zPM+_a+mf5rEe;h*)0kJr&X^2V9_vm5lQTZBqnfEMZQ~HOJdZ^Nnj>M$!W{EZ=Yo7@ zyu;Dd#GqeSSpB*HUUt36WpZM_XySyNxNI(qGkaDE-9XJ0rx-QaDO+>4~u4&X?4@(NNp+=Um4JbeX|58&Noufpu6{G|QJIZCeRf5oeE6sgLd!{R9jQ zC@Lv|Xx(j|sb?>F_;qRo&d_mHa*PxU)1o@xek zUK@cTv%ldoSQ=S=!6m|fHr4Zcw18})1EmnUzx=vXJq*>ACbLM(r&VHk8g zNtRYjM}fNO5~`7@!N49BKI*NrY)Z=zOKZ|P^f(}7qA%|!vHm4eS3jbyio<6O4tUzT z7bb&2XrD@{Oc{Cxu@Y)*44J0UE3|bk?vV zJ*>^{3}skW@ufRD(jf#|gdq+z4zJlXy=9g!R+)x=P#lK@7viee+umE_IP?%pcc%!6 zvc4!&tVN4M735$$unpmi<}|_t@)c(tfeRe6?sk=-5Hg^$fm;-g&s+viU41~U%gQr$vFkC6`|5YQnOvQRqk5X|De zQ{zZy3CY0iuxXsbo{wYWAcYj`;BAiLlt7Euk2S6;+_L5@H`eDLZsf*#{UeQRIvbWx z|IWsbbm+`CjTOZ^WEV~rb{88jR^pjOMUJyMY!$}oa@oX!Y(9b5I$2U>JMh>t842+t zn0T9$b=!k3w}x|!M2faFuV_;U(RBkkHU-BF-xMRx(qDI3zhTyNh;&%noeh8CZs$x$ za}{K2T>|?MUDwq1{7`LeQ(Bk|ovaxPE&tHNk&{%c6$R>4R6Fa@*px}_;F~E2OOpoy z2Qp$NvrwU;mPyZM>!G8RZ^`V@3h~35MjSjLZa9yDR!C;Obyb^HNYTQ<_WKjHoQcU+ z3kKWar6A0Y)6Z=&x}*S>g=jdlnqy)>($TvfJ{zKuOCz!$=q zhpI)Cz9mchdzUaGWPz_hJ>#L^&DQ@H737Zs4ucX1^x-z@`UKPjVAQMyuUJeiQi~nr zUU-utwoXMNU0Y(>Y6_TbQwCRAxfB%@5qn<3X>dG6iKHDLl&Y+29$T-?e3j{0KPA;W zucdcWufP|jrTu+N7W8nUxnm(UtI!wb4`{xjEe0aa#EW1gXhcNuc={Cb9H1L4Wm2!r z^8(ThBAYMuo&N;lP}`7KrX9Z9t0(t#OVvrwGRJLqRA~y8swGS&>RP2*0BxQIfLZAU z#10417)X)S*}cBmWm8$<6U#@nWz}30&9GN&_xVFfKnilIKOYJragVDtz#v(q*$0H5 z>GLW;okqUOnY^%SDkC$oM4^g(t29dfIHWn|lnq<=AS-4@nDt}3^=a!3yC;(O+e8~H z1U$N@F&hVqK5{O_BvP=ITcBC^l9EVVOOxNhD-^n#{Mt zt@38smrB&5uv!aXzrbzT4cwO1R!kS@6hl*2z!*4hP-Y9RhM2Bbtm4RbDO3w$y6&+M zT+A~2rxBC}tQH#6Rr?lDE{`4+`#@uFP?7U3V{hvDTIz9!2spp%yccLh!wcsjvSIyY z*IaY(A}jLd(0^S-?hCrzp^)1hWWIeDi5x(L#Q8KrV#9&|KJP!Ty9RL&-18S+`20om z9jgUO?&7lQ&tYHj6=0`+{nIzW;H1p9VkcVDe<>!Uae^lkLftfX7nFN zaBw{mFG9!c?c0cuR2pgEtm#{;UkPhapN05*mbok6)1M$U$r_NDB z$F;HRos1)GVr{q1(^K2q4r4C(6s`7EMta)@TGMNOixLDmzHP;K+BVEDT|-nPe!CgY z1rO@7Y!BI$ryZ`h8N6ECK7S@=*C+1f5PW#-{JwqrCg;~upj+qIw{PDbOs#AWt9uc5 z_*Sc9a&ABN17}*{eb1;TtdW+t8$VJfKdO~@`-TN`Z%u9HMa)(@?Gqn#hk-WpFOF3M zGz0bK)bNawxwmdopG`RjO;XOahwX1YROb8A&L5C<)=IdE==NuP{0U?AwsYx%g6{Be zSu6Fe+xJ67KZxeJ96x~i-u{+TY5pT4pGoFh?Yj|3{Ch>3%>CH$d)swtX+#b;5CZ7i ztd8hf?Pwlv4b*tphOkH&DDg@7xxg>OF{;E%XetBu# z&NXZ2;IIdI<8V2!J{(gHd!(F|m(IyJTE;FoTuS?OcYb==tP5{E=d@$X(2kTrQ5zgb zm2uVkZRwuPhf6rs{PLG)o`2mQY798ihPQZr+eSIqGVAd3XP95RcgB0J-gCC~{HgV^ zfc0>)4_+sX%BOw`UB1)&&8IH!KK$gL%u63KzgKJbzx&+e*h9NIS>KV-I$Tq&j+T1c z;2A`8Uwx(+rnPr+mU@|k=2d^4oFMZl*jZjV=`-Y&vnTs=HlEr0>%-5yh-dx-&(PRb z2kP;-d>}R&WD6Lr2gWx}3U3QnGY7wIK6wTWO$F7RYktFOBRRkRtWKY$NSHL<9t4G_ z&-WJB4xRtscW$`TeBrKL`N$%htH1ms z%)!l{{^TVc_4?PCU#`_J)t?6qqJH-1`Xx{M-2DqC8*sB$x>Fz>U< zz)NjCfCl`;#l@{95$EnCVGzEx9?W~q7uX$m{mp^Nk-PKAvn-#ZI3G^bUrZw%D4WAN zt)BkDuWcf?wa(eTXDW>~W**-3;0MpBo=IL^|M^RH%`^~uj3(2%*+==t28`d~=b2oR zt3SW7Z}a}qyUgF*QGfgz^6VLp-@GezhxyyX^|ROVO^8cA=K0C`8#@-C+Iv*>pC(`1 z@$fBYw;)XV$n%SUp#bng)Xx;l&MvEZ+_3*omuxuzEGXtbF$?Ptl21HDrkn=mfCp>s z4&XV^CLJ?8r?W{6S?Iuh_Z={Q!)`P0Gk<&F*W~>`07=|&xGv^-J`ay%)HV5xgTX_0 z?b$-_mgZiagPRKWJmp_5m8W-H2`d?s6eCVbbOcLD^fUcs-)rDT*Oj?A}JPn}kZ&=9yP zwTk|F`HmwsJw)#Q1{v6PxNWo^^xNt~7E7e|Q24G-fAoQCkJPo0bp84%GQ8+W`)J>> zE)PG4EMv9We)OHe({EUOq{3;W{L1N1-gk?Ib-<89Ei*S= zv;0U2g)`2&YX9ug%2SuEnLBP3gZ=&gQ``j@f)3*@h;NO%Fu*(^NfTYN%ufd{B@f&M z2Xsr=0tjLF8Ta(C3-K%jHOzDm8naMXrLAPKe5iPk9r zZeh?`7NLsr!I_KNP~iP#K=Dw@cF-Vl>Mwiv97#=G^%!xg>Z8aGN3KF!VL2{XT6`e~ zNJ{!VqzWojP%N6mH#?|i1A^OIm5p3eRM%mdc@L{6X-UvY)%?+@gN2Z-IZIe|;w+Sd z^g?T`Y1yC*%VmozN8DE|uXe>2w*vFM-Bn&ibLPyNPcdhuQ-?=j`d}mjptA*sGYCyz zJlZv;5canW#|4o*gBOGVBO@0>jJmo*d1V_R0vAM{4LCT3SkYnk0uNIODafLO7+V{> z;XN9(*Fm_11%XL}9O`~ewV#FJ0y>K0#lywXXg=B2(&e@<>31)w_W7xsH5Aa^-z$B9 z90rhPpBj<8@CCC4Y&HoxAX~^*_2@NcH>k0gbrdIeS2&sNJ*98FFIT9n?Iu=coig&9 z1!!`|0M7{HC8obom5Gf2>6oz**P;s4nC9E; z>VHGyzdwLHS6^)SCZ%+0L!wmvFOhm@2lZJzLhB&)f0@pYEP{W9tU-)NQ}uxrqmzV* zXsmV@Fp*`s1i~DWSdkK@$TA`blaP$d;}45sG}<=mkn4o$-~=JaNETrt)YCCZm>@Y^ zu?RC^(W1ixQUt+brt72#rv^|qE#NRI!j)f9@+FsjX`g3le?PODSVqlIB8!B3 zWr;BO9i}X(7-yH5a?ULimFDmwHf^juYQAzT6}T^*q=G-PqF;m19n}3nhV#6y_Pqfr z%An0$z>#sO9OD5nIXQ}ojy%uE?K3GAEw1Haz83LaLx{nkSt4&jyw~R&9&UINv7-&{ zQb#|7|FAjKh~q@1E449FzVs$c(K0PYh_9Vuxpo-Ti*1rKf&;z{<2r#UzFT6c6qtT$ z+58y0eAs>Y@REhsRE_8;ntozOjp$Hrqo{g|Bn-W+2TIMrcxtm z*6hQ@M5_enn$oH%wapPc2=*ZSEA;d7QLM=CRo#JrC}NkKp3P4kMSBzo(KOcZGqCk!fq!lXPIn8kKv0jNGa#E?fr!&j0WAg|9Y=+b zWC2`D4HY#JiK<%IV;p+GT59@ch&dHt6jgcwC+h1(#08RqQ`24vVCZnWr$GX^w{BOa z7mmh9pOm_ehw*_hb<`to=2c%aGJY0`Fsa20W-plT><+uyOP%WFDhr4o3d#eBpC*cr z13VvJAG39w5H$za`0=gS>?MI+e9mGMNvThgyHSvo91zj z1ED+gad+%kHp8k#sn8 zg%RRWajmk8a%FZYD64i|l3iiLY3^yPrk$bIQct^Q)`IlZ^}V)qXLBSJnz@DQWA7t7 zxmdmL@Q#01J%?B07Xkjr_-N}LicI?$8ZVV{6Th=N>4itK<#N{QqfMFYBl6#V@Pfq` zytB?sJWr62k+yp++I>d7-Rs|FyAzdEsmjx21k{6}SYM~qA%gzE*_loofTaF~X}gvz zHol?vGCM+IF~4 zYv1LZ3l_&>EsiCo(7A+IJiJ%IL1@F#iyAQqa%eW~J5f(Nl029mxfx z!BWW}u6sS^tFum3Tm8{=B7lUU@37aa1Fc!FFIAw9%igZ_zYPY0K|oe|F|TVeuai7r z1x}Ffj(bgF{lG;hh2BH*D;9va>|m{pn;I3Uf?_QUt&cdVGdMaHstN{2 zS^Y#eU^BirK6mEYk>Zp%3HG{iwBJcw;Y`lkKD#BNY|Z*{1Q&n?>yN&}A-Q1Yisdsp ztJ&qE=5;5n?BmMZo{qMZG6K9^kY}OA8U}4cmKQW z3!UXECG}jzs6|uIDTc4S51#Th5zX?Dt5BTI$(;c1f7y-y)$&>M&Gd9pq}1IT%_ z=3R~ujr6EVgf;#uP=Rpr8~~WqW0;8)t~1uRVkS3Tu;~1Y1NqKK+pOlWvS4K1o^71n zoivOK2@FbWI* zo%M4IB*X3JFFyaBP4UFf$cN3%m!z{&3q28))>aDtnhAc1A+|2#-U`g}xm=NAdg1l@x^>K@UaD4{_W!w; z>N6-7UaE$5CipIN7czGlq@qtkS3zS>dI{82bu0l(zKOxXOa!iT?U;ji7?SY6SVHo! z9F6WTbt2>o(Yw6_@nOBBqv$~>7~T;P)@}eUz$j8DH3vcLYn`LPFOvo%AYRG}`Yl&* zCZ!*xGXxtjgq6QvGLp$XDb3Pqg9(G+p$3~WQpe`q-p}0 zyw*BW%&zR6*IA4inl0juyAj1FO5yYn?r{mTaxvfxU^{o~E)BW9;_;sDxr@#3-PGAh z?YrM61Hdy_1;6tK7tLlsQ_Z`hu#c20Zp;Gxq7tIPPxu>O*8I*jsGz7XvB+ZFk-kW@ z(EuCzcPja`Lq1P-knAwAL*GEUS{M~cs#IobRCPI+k+W&&+@;u_k}bYWL#Rg0iUH)>SX0Ms0XSBpEF!mnF@9CzIn`e&TmdJTI^= ze+uvq8n8t~yWOit03~6l$do5BisJNS{mq;L(-=^yge)8zfh|FZE#;0nROrMZk7z0) z43J+#Vku++k7x#tF}o1J#fvRzI@ z{js zcJmoeK!YgEZTT63R^75A>`TV8*);Y>hD;&Xv$wJ@VvKqz9afoMc(Gdq1+%#qCqhJ_ z_!t@_=fyxlWb|iup=)_ks>q z&MY{KW##_s3W8Y@80S$S+7RYcABiX|(y1>{(}kfK`( z%yg+ziW>7M?Nv_piN*%v9;m}>ToH~CS?J6K19^EYvZg6`YP#DJ_#(n`aYUJn*QdHI z{2su%t3rSi+{;NQ9VAnrJyjOUcAGrt4BYleR4mUfi_KyMuN`7}yew)S;u7Q~ZhODo z<-&`bTSAZr&!i1F5jVHwS|`fe&U`mtBw~0sMZ%g*AE&wm8aQ@petX zx$p4{oGz*xl4_7||1a~9`HkNYcohEvj>T_XK414-Mt<*ODjavXTcPq!$@Ez)^OkI|b z9~kcE ztb3p8ovg-fyX?ezKJzpkCaX8ZG>@5U9XYEGM=sS;+#tH7lS-$Ds}tZFiSViV;zM8* zIqM<8a7vSPMjgv{F$a;Y2$56uRrtbr=8g9=hihdvnZG%99BHns6MW23^JF(+&O!33 z@t%&mmclcev&#XI{(&nK1cMvp?aND zS}(cdBz5k+UaQwBk6Rr*x=tWKoy3=(J*KA){`j8Ws29fHyR6b%uXuFIjNLOj1Ime& zPu;P1^C@|?UcZ){zijy_D~=!Q>`B}3f9ubGq|Y{>{!nkvbew}zKm3?kON&;ahSdT? z4~-6_!lF*i;XCdyU!YFSo0ee-j#h>@_oi)$k#puH26sR4fu#T*pdSBlf2a4{br<4U9(;K&(zhhwbP1j%8A}zh?v18^~qp=Ietk22HEhb#6{1_e($Lik|P0!xie9TvZMWim(;7+V z#W!Cu|DzPy=i@=OFnSvybqK3 zj^q26JV{+N5ZYDJ-)uy^%GB0fvhk*Mk)6bSfXw{4)w3hCqajD^iDLH$1j$?S@^C-*`MpKmCixZ(2qkC#y)4x%|fCXzO@6 zhK>))hqw6gbhYTZM|NI4d*r6qt~^PIQ5T#F5`Vq)rk{zu1z%&W7;FCaus)?f6S1imQ(%gaZF z`6;CM8q<8}`D)L3e;1n-1FSF zQGv)1pFNm%Oo&M+cyVs4&&!$ckiDGhbShn0%PE%Xv_$$+WdKRXP~;A1U$JF6c=Q^2 zvK;K3UeQb4Ti~Hs#h^jgEkwCumG$-DFUHcAL175xP8Hs1fNIV1v;dS}D}lA9mA$hI zdM_D1?7Yn;&$7p5K@dgR;Yl@y7%>=76_uwzFNo_GIZwhEkLZ0ZY)%lJ$VSH@(`+Cp^FZ}MaylTw$_nsaZMswEJCcqC z5l2PVWHgQqE!1>D5_Nc{DGtMBlR4J!b1;kp;1V{s;)?@M%cgP~2u)L1-F=ZHk+~R`(ONBh#nyo-tA<*d{Steq2n=F9mqB1Oth4`wX`&@BrcuBFf zl}H0jZ2D;%w`?D`&GUw?4wg$A@@S{4%g-z%GK?DCl+Ya>XV48a#_)@tAg=%*)WHV1 zuc8mk|H!U+!^3B9?QSjtriEkGLgtKtp`BX>?b8iomiavJT2(>bT1s_zIT3mYZDdAr zYPA5L4#QO`@K9Oy00dM@{jW2OO;GaXx%qh654E>OXBz#$lcuaqw zSMp+X5f~%Ek}-*%%wVxYqX|_dekk!I=|c!K&Xl83h;`^Af53-{zqKW?aBy3OdenVvB8V>tnY_v$dPg}F5byIcm*a6 z&hM+P|IXbXJ~I+c%j(3h_$=&8s<_|yn*`W)p>$hKi`EM^~uDpnO@M3f3MVDWE@x{zt7ny4=M!f`j zp1(jpbTg#_C)VZDueS*|9~wIZARXq7*WUOM_iO%J4eJ_q;8t*MKtsa{Wije13jznr zfn&UdR9&+dW$4PFivyEKZ_9O6;Gk2RGfWwsQvB2wSEsi&ov?-Ykb50J^u{V!aN&{G zwp{Frb=gw0-Z@K37;%ShyPH)Uf^4YL?m0t&vOAtT?Hh#Le?VX8Tr(0a-SF6djSM&? z;MOg9@5_4zJiZNc&;7+O_Ye7#jWY)mfgJ(HCUMEw`P+CRm>=Igx79A>v#X~>WoBVy zUu65)>(5kWr>$-GQaNdaWLKY^h0%(4%cFCKnwrn4tUv9p<%51HAZM=M_?ac=r)&dB zR3$G7=dYSGeRZW#OI$UwJTbU)=3u~BX|Sx%HsV!vj{jkGZlRh-u}VxD18d_5sNGJ$tJ1xr zO58&2z2e2K2Gpx50q)5;s8H#A;ZwO1C8R4?#2{l;QHaA-mYsaMg0J25ju;J5L+DtN zK4KXZyx454$6?N)_L#|fsIR^CIQAyghKju0(^}v3v1Q*Kh#*v}XX2BNKx1y|uv$HR z#dZ7lpY{5C6N`8U=bGVS#b4NUyh~m&#+(~cB*(Bv1c*9INB8OSvObV{-nZ6fnKt>{p5Vx&b(PyDHlUEoCczG3t+LHJLtJ@mh|AnBT9ULtu; zW3Tc^FpjZN(cx|UP~&{_Tl3o&&cOG>t8@++ih|U-Zu+KY_AA~P-yx>XM>l%#Tl`Vc z{Lt;#Xn-+pu$pL_GZnqSjvz<&M+PHjd~S5xRWZ@#XyD%XTf;Q&XZ#FMav5A}^Z*M|k0+5;1v{e-IdDI6B1UTfvUiAP8Y4U>L+xg<4&*6^}m2c(QYfpj3$c1n9r z*8vy__zM6gisc3ia+dmmbuzPV7+>j~c1lY|O=eCZcX>7OHQhdKM&_!0JuN{Wzi4*1 z`O|pNmrDABFCKlXx%?!zl5G7}=65T{FE*CW?7nf$ZjYE29s1gN-iYXr+2X;rsQJ(F zMG|?kkjfZFT$p&|t?orQ#3IQo*6*e3AM)TEI{58-z;8p4(i;pgUF>a;zH3Me8iS9> zGLChdK*stmHrrHo^X8w(>@_Q&{=%{_^DuFd(2GyLe0zboV)wj^#Pt8m_BCx-me&vc zh;8bbpXrI&$x`lvhu&EAKi_}pFW*L;Z~PsxXHRpNHhi?l2s#`c zWY85z3jPEYSYOKZJ0{Jyn7115#|@yjYzcoC!LD;%xh`x2oh3T6_<;oovMhbLK+z{#N5s{(9WPtF?ZXpvuuqdPghl~7dz{$Eeh+l@&p}O2L28K_` zCX5w;&95nrpd#`f_?WYSj^&qJcj*+rswOpK(P(+#R5vWg-ADt#b2DQxdBxhR)QlvG zEc_Fco@MvBV!;1mAUSX@*7|2>c9aoP5cS&v+X7ynVh;opa%U_a_1T)Eg6PW3tm-z- zWpjJN9x?W;YIkJNZ8-zK3r^OB-zb{Xu4sS}pnN9=zOx;YM+0#t1k#WzI-?R4!z_;V zuHTt^CO$14;`<^4neI$uP*kgn$5-(iCn|q7_b_lV_zBzW&IdAHuM(fqH5D}XLvtJV zUt%0NB@Z_I7-hQXI;Iri0q>$Gn;Jpk6OMQw4a(Mha7m%^9$XU+p(rCk6esA8QWX+^S>$AZASwCPC33pqc}40-L+Oe2;cp~H7Xj{;%UT2qLZ?6!|snMc2VcU{L~gtBH!N~Sn5}_VJ)q4q7+dgiq@_{a;!RaUF*=iPQ~-BZpZX~ zKEluXK+i%=Yi%2G%fnsC1;JHa1JgJB$5l_JV@=DHIcu(*v8CwYZn*nbWT&=rnXJf6 z<84{buv=8MA3wmmdHE}2YxW~hIid$Wx)?zNysVa$BYIvQi^JWZJv;HhYpWGowwg*_ zmV(2B!oFs{dUbQq7H*XZKlx>JhcW3MZ7Z*JjLW)<1Gs`LI%EhOGH@r&E|D6h1A z^tZ1?!?x~t5H1P{jrZ_?8q7wOEE=c{A`WoqODoCv{u2^)%EHbf3i? zz?-Im4}BQV!Ye=5<&#C}!aY6VuDm1;PoF+4O8KsE&pL=YdDEz zqU`I+v5GsHY?){H7P@wAyP~JZUUl1N_?9hnITtST&9LkJN>9%f&&_LTpS4rl>6`1# z&->~Ao}Nk^a@4YgPM394W4SVgzhc`i>#{eQbX#Na3V8l4kT}a&eMJjY2$W7u>%8TT zM0-KU1Uwe20uJ4Wh935GI&KZT}*RHs9FL&9*!3RF>yVEys^Im_ttI$%8F1>&6&8>Ipyqy<1o0{6Q zg^Sj9ZyImuqCTGu_oHn;L}a-g*!)5KjZ6$^2nLkel@XpwDlmf^31`a5zOrFtq@#WK z(1Yx+4#iskOrqER&ivbYMh0F1E=2Q_#HbnuV|X+x5_|?m*22}JTn}gn z^o?$KR79gkq^kuf#HpS@+SBLfBTzF1)U#(MZM<4quyVSy>I_DWtR%XSGg|g0a?@nR z@Qkj#=$1|EiZgbmPg%4>IwQ_6kTogPQ?7<7b1iM^U-lVA3Yrt5rw0JtT4- zm*Ik&lZ$u6!ZtPAG&SGu33U#)`m|`LEgNgxooW_=z*>ZClA3scyGQ(?g}c51ngBGJ z@?H;Ry%txdQXMsK=a4o992ueUHSr94H|3;l@aZVwbGF1~%5dI*BryP`9p$mr8lOkk zi(U?3(E^v|6sOM+JbY*R*7R;Z#_gFBRrqj(oX>zl`Np8I`Mr1j@(Eu|5j~6_=%kzx zhTGeMiF+Eog@+3qgj+F^NHpHsR0wAs`KqyzJ`EfpidpuKH;q6Ch;~zL9Kh1xJqSHfjpdGkW;~&;0MGwzZ?4|LfHL*3oE0Rs#7dkgaI9^2`^F`TGXjXHO}wpWg2Go$7&?UCgcy zNZy@V?7Z=T@?Z~+Q!Vqmqk*8WC!**E8_~y5BMuvhq9V1l0c=C+nKq^t6+FsnTwgP= zh&4lMgQmTW*g3$WvP>QaF->$BofY0bmq;SKb&@{6#LuaerluuhV?uGkbH(C0CCt;} z!#b7*H`Q<@MEus?Iqn+%^{wpxGKUQAQ4YGwr@4s=zxb|a@A&B*&)!An8o%G-e#AXW z{b+DD5vl(RJ)&^Cn|oM1U~BH>x_X-ry~0U7`F4x{Y(bsLx-Q3!Jp%!Z33rh#(qAJb z;+IV!nFc|S+SP+kz1I9Jz^Psud~xW-!KeP*`RqRiUmAL8kj!d&sc9>jbF?*By2t!7nT6kfJoOZs1zpYS4U3_xDK&hd;cIA}C9FHF(;?O_G-XMs&nCqzN@I|* zlGa(Wb`z)*NM?y_1(so0BF@zAao=zX}GyL*aHOz{f99;fIcn3qeJX?_V=GyKc^ zZSZoWN?_k|AMtTYG8$T{1za+|gh?FA0yv};}- zU5l?k&uEjHWfA&$^vrJ5dgeIXvw&M+y((+V1??3(9WAFdT7qKrt)2RWVzkgr;=Qr( zjrHqhG_}%KN-tDv`$O(&_I}G=reVs1~wz^ z>51FS|202B7Mg#)a**82n}5E7InCUB<9voK zKKke-m(aTDI%>kYSWnNtRKXP^Y=)(RH8n5OeG=}_JWHi~y0bEW+_7oNw#A&emi2pL ziCDsLCS&oq*Uy@3xuu(z?%1?B9_M2tvj!Fp9NPXl@`N`KOZohMUn&;xnq8k`KQORh z>b$9g)_VLF5acPd=Pzn z6}eciY`C}K`wc$>tXY;6G16F`5P5O_!f6|;9vlDyNe-(HDi<8esNx3aqimA;pW_M* zE&xNo%BLIzYt)(|Iwv?O;WSQ}0OO<6Mb~%=3Vhs+PhbJo%FlFKhbu@+HH{6eo;oY% zu<)&CD-NLp%0+9Fqg!DG=Ryb+zG9Vw6b=nh&Rg3FQEoPuG=!WbqFUkoZZDpoVmOsH za+W~>Rik6HOH_8R?T@8w4yQxPl)#X3u-hQFSt^&zSRT@lH*s9Vxes3Ww5JZj-5Lz= zg||el73Gntt+56EgosMSnZ=53fv02G7GFhM^;0TPlsK#t3;F~L2c_Y0;w+wA|KSfPLa>3jovA-mI~^@Bhy!?fv>g? zOj|WL@``V3;Zy@!hUD;k@1}|xv<2Lab2_F?w-@IcZDQw!-Iq?^BnxVMK2m20*#M#* zRCl8yakgC<^WIpdF^p6N)0{SUqYF;90`FyhV{c6r^1R>*q?Cl_6CyUa-@2BNRLEsV zJ<*`RvQEb30t~g`29`Ve0_8-AcVowi*+2WOgE!w2QuEcV7y^N0TA`c@Bj;zBeA?rW@TRZsxRmrGqD&43Gnnw+bDSJj`bRkw1b5WaW zkL%vX^D{06pf)gR3J9vP`JGfMU|noU77}awJ1HQ3>!5iFv?WL`#}Gl)IGY%BcDP%M z2mwjkM3oiUUDZVjziQM4{e?X&1bDB4H0-kMel8R6XH%8rF4-%)oX|EyLsVP)FL2Lr zcQtfD>j}vKmMyFzs>ZSoh;@YoJtrW<(pp7yJG3+#RLOunmF3G=a@IPa`h__5QUJN( zT78SAv>c~2Nu|azQj222&>J}vMAsiZyVe#SWiRwb0KL)b=#8kzQlj8%9PeoC0Csie z_Kw}zY-3}#ZE;_d;hpPEcpb5(^ZFVq`BEjUFuZT(K=p8Vo0ff<3$lOt(x|$Uu08 ztmv(p)=2k0o|lm+qHOTN&lgmCCy&?##nu{hvBVL$ue;^+Q&S6uL;V%+!p2$EM!P+< zCet(r(IYC7in>!n1NmIa(`1y@R%}#M#+rDe6}sDvK>quJwR07ql!9>;mJ$z6gmhjj z)~qlPtsP6hU~EVv9N5>rHNVcv2U2LVfUO6QH>Kl7(hA%grAzGR0{je`Cg(<}U1x2r^;2 z8{L7%LSSW^9pV{sgko*0JQSlo!btZ<9Hkg5=p{Jvcfr!v}Hxk*Ag5Q&A*y=KX`^X&z1bltZ1$?rL4Ox zdzW`h&ytieoOdM{rm>454qarqpblLv<6(thHc2{F_s}`T9rq?BUXpm(yK_#*1NudG zJVv_rOc_4Z-m?5=ZQu8y({(b%zEmt3afnW!?qzeJdSprhkdnl+noLJyCeqUpXRFOU zQ{wMjEJ}e!r&3PaVi`5DKNeXZajvE`!M*WDgAF$B_kb7Fa#LCo4F{dN&x;@wFLpE# zqJs(rxdNZd>Ln!8!)BMpl6O;0f(w%m%HgruGS~no9SU&VgK3qx4fyB4g{N4;;o+#y z%r2*W9!X~$otaz^8S)4SRv$BeKVV-{O)N3L-61r(;<|>Jgc4y6Np`pfDlMD7+P_*q zW$2Ob%@Kk|&@LeJSEVWM$h~JzDlJdx96HeAug)@xUp{?wbZB(+&f($Vp&@=R;qrGI zO3(;5`nt{C-BKmc98p_7k`*d0rTt4`&anABQN4%U+#{5IjUijxoe`uP%UafU@WK37pB*b?$ zo>b9WAI`TQwkGEZ!*^~BEuVju`Ms?t8>x~1$kzvI z>28bOFdiD@yM6Eu=x&$_zZK~Az&)a@FJ)~5C915^;O_-iQi3d+prN1ivH^V!yd|is z5H9c#^uc{_@}+VrN&X~rO(u5k^i9n_5kq^zEE_&MB>trE%>w?L&p#^!R{8C1k*wDB zX!=<(9&#ivOI*WjB)>BE>;3vQWZ~bns>bar{iM`--;P_SiTTgAAWbrx|6E=ar<2fh z>&(arkuqIbiTxcgyo|+mO(lnDC zqC}|b!9iF{0<^+|vPFa()|G|=^Zw@^xo+{2>z_P*`@>f)TzuW)Y3o*vOk2C^Z-cA( zl_OJEtXZ`fu8XHVa{Xe4U2@IApFVOOJGge*v~{b82iL3`9$b#kD;gy7*NHDNKNWuj zy`&2|uq<-N^uR(t2V-opX}UULEw^}a)?MS=UNq|Xi$`vwpAO%bt=)*NfpL<)Qd4`Q zcWyr+{pDOsHg#d7+>$DF+m*_UDWtd5)L~s@s-;{$>z&tEzYU*4<$S8tV;3WBy`FMD zS?Y0U=bFwT7?ksUNu`td`G`%)=6gzM^Rr!Dd6u1)o62$#VmA&ubXd2IA(4JHxw4 zhS>tBV)Kca=7r`(GtDQ+-Mqux-)}x^EpbTwc*3u^V}aB zstrrw)pEAwcX1o+qK`K`*YG0ndpSTgXV6xJxxo1w{HnRI_$)WI=?% z6n`b*3W-88wQoUe1sEzJWmu(Q-zYH9%38&Hsg{Lq8xSUGOKF?nONhIL3LI;oZL#i! zCz{VHBa5wwwhH=cc&25j-2!n5U6d7RgyzCjbgXiQ}^a6MvY|<#s1@nYFi6+cLUa2N<28907WJxaMr>Vs ztSc9=d*2u7-5{{;=3JOvB0C*=G`C|xx2w&QSl1CRWdnBqP07-d8P)!=4lbXu1wz5N z>NOYy9)=o&U4kc_L!Ru&+;Sn{Wo3n761jF;D&P3w=0>V=k2PJ)t=)9WYDrps>gL%_ zQA9Mm9t=h$X@k8Q%O_-CK*He+i4bjS&=&`!T+(f4TBh3FrN)Z8-0#d~Qq4|5O|zoS z1-Jvh8fcEW;w0Hs4J5qLWU!|r_PPFalqf9c3I!u#ywj^A9qgK`>=KFOI_!E3G3X9e zb*0x#Z=ccQ^)?3s9IL0}0WDY1{0)ZH8qAYZMCr6^f`3 z=QX;D9E{ZjGyn%KtRECzUpn}s)->9LO16w8OVT_hQXL`)_@Lpjpa`uzEYO##!1J zD*n@jU&LV#9EBbjU~`IM6ac-Aa;)p<0luek_Vjw~)WB?)*JOu7-g&OJy?%dtrwd0P zmOzsz`DI5=v&UjyI5S0Navf0nx5PWu^X|UlK6@$>OX;24mb)0%=JN-{NNga+>Jp@Q zmFSL`opPGbkALmPp~N}g?o1?E#ZC}t&G`b_)LF(?NF>@lLmTP?o;Qw8>3HgrYpa7> z2{*N?vMt~j)1#!x;}uoe5s5Jx-x~1hBjz95m*$-6;P?WNV{+IW&d!7?vOT_P&J<$X z{GaX9#AMtp1M3pHEZyLg@Za0Lsa81@i!Pp7VQs7b5(~PMi6Fz|IdhxQ#E?wfAC4%b z9Jbp=9QI%na;LeX@H@)~CDrbWaMH+5XMeGUvlWUJce}uc^+nL|N-n=!&|RJ+#ULVo zf-^Lv998nz6q^kxX9WcO%U*_!$6x>HpvUGy6fvW-iHOs~ZcoK*O-){8wPzWpmoOpU zp;sEG8mbQt>S`q3A#m9M+^_^-FWVKazz2iHwvEog%YPoSxq(K)!#%~H3JZKl|4{Yx z)~gruZB0ICD%!+u+1}3weNJ9)n>l;a0#Zo3SclH&v9>T9J7aZop>?&-VF!p`+PN`N zZnhIvSiEfDhTAS$H1PX^cki@S$wW(|cV;&qYL|MxuzN1)n3;KS^9@sm7DR{0vcd8) z#nIG}oIl(O4|36~=#szL*`hRNXLdTdu2pThvKENO7ESLGNIKrOKOI)$qpgFdD5HgR zz=xB88Vtj|4X1W!4(tPCGmW4en%Y#|w4C(#vS9rFoL(7l18w?Oi1CkqzIvmm$@se6>3d@Wn%>Cw>Ii*YmT^(fck zURcjn!cX3czsfw8wYRpM@sXBKS2mRypdvuSsFDdx1-m+w22@(0TRiH8xIrKHmc>r+ zMA{Jib(mLCy#n;FwQqTgEmj#3%>-k?C3-WpL0XT&0iG|{7&QI6&a<**=KPr#UzCH1 z8(KUFF$}ZJ-W(hf4*X@$>M7GTiOAp=c4!(pi@7c5Z+<2-WCXG^ng+HI$F8rXr`iJn zchD>A30owUaL7*uLoInvQ)KpVS#oYMKU>+r$(7(xd4R!!}9gdXK?|y-l*@a}mTa2u%S$uj4aMyn!$uNkJjv zce)u#OZc<7nA;OjJ+4wqJD753wH>Tc)BWIDMqkv&BV`ce8egy5lQ3ci06z`p^_Qb9 zNw-Z^h%@R7q-^YM9YMw>`UT1F^8!pXA!jE7dJ;-YM)Hk1Rng!DU11|5g24EOrzDqD z&uY2SKKAj0m0#}jWSlvE&?hgpZ=W{n_Fv@NQ)^wTKX?CVz9(p##^mCOWn&!-Ki)sK zi(?|OU?ne030Ies3kRJxo#^hB>qA~Bsxw17WOlsLwa)EvjCPEkjUbMopRu_^4sVVP zrDk@+SS&8slxR}>%hPr&QpcVw|cuPtN3A2?Ga9|-HyuV)u-QXUn~Qy{ zdmb`YLPdd~j*!Go^zma+j*W@P6rbdvR8Wowwzu|exLA-R^hXNUjB480)5)k%ytkO!cZ2d*8q|}oF5(jVDUU0=p z5AWbB^v#*VBE)A)>s)^ntb&ReFwR(y;%bx?y}6{tpXf0Fm+9k9s+EL73T0R5X$PE& zmWb;`FVxhOn_=POl`;|(NF@^bB?ai9k`x}zLUO^GiJE={FdBAfY!9&B!#1~H^=nRm z%GkXl3w@%eQa*bsv~e(=o@Otq z+sPB1gX{unV3!X7KBT9mNsh(8N^a=Zu)*|hdWX;n36Kz43gHGwa#JB6 zEsZo1Qf^4QDL~@Y_gl$u{^)_)ph?dHV+aY1M1R!h@3 zJN2cdTQ8I?wiAokKr%|qjG7Hun!^pwJc*&MZ28(;e-B8smjv`hGQ-Cs!Je(w${P2g zuP#}6m`9YAFyAEXHCunX-D0uIk!I6@C7xo+{iGI-96FL|NXj111%n{2QiG-;ADb&S zi{5qmEMw^^$j#k+gO)UK5_5gIIC$(TW&I#DE&M-jnDd#L+7q>l=3x@{iwsRRR>ddGAQJ3c4IYY&VA?GTTKP>5Jp|*zMEmh$3dAKTk97v^ZYIUe6E5K_skdEBQ zM`sZG*SUBwgmZ$do1+5N5M%Jln4O6-yQs6Zg|VZ$(J7f1wps!?AUy)5oYlp(#9_TT z<31NJ>5n?hf;Mat)VA?0*>XK>1Y}*&1s#mwOVZl%jm$mw4aE3V1T0XRB9^;ZVY0(i zX(CrBlKkFRwqF~tYSAoj@pMPyQ7vjZc@8Pd!6fIc2W2dq5%nG7&EF#SFJgMLlGQz2 zCY&$V>YTpdLH$3kfI;E1Nx}|#HVL0g6j|LDl3WR|!z9iAA2aJQd(aHX+I%7>C<;(4 z7L#n|qU+kr+eZ8>_>A~9q?*j_+WecJoz2ecF;iV!UA|!|WKryjJJ?f1EY;!(c*3#Y zBVPbkG^>eMo$mc@ykb>Nz->t~cgddSJ`ck#X*{&0z^QE<>lrxE)4s+6o<7CI`o+pk ziyqnR51D+9ct_kK^$giAfAGSm^>5c#ZOGCkKx(_0y=U!tIeRz~m%XGh=F59+O`_%6 z{esO7(j@!$2~NTr@`hr`CfOPC1*7AvspM?%#r$$sZelG?6M9v0j7jQPB1_GSist$V zvTxKTpIfIq)uV(45m^s$ke8X=59+VD-K264u ztL-yz8dX^GYw_-?F=GKUDS$7zKzLg5gjpLQ2@zTilN#nj1W|NKxo98?48u27iF#Tv zX|15jq{@Mk*)ZNgc#$Jy%i8^JyVwwGHS;u7KjcAM1LIX2o62f0+lMNR5CFK5>hPw znYQ@EIv+!x)Mr@O_uiFbvD(+kQxkV(?n>(mzx4d`&kINOMKQWh?VG?5dRL7_^+il| z;x3ZIF67)7UiinWFQ6cW=2kzfo8sOAW_xuV5*>s~VcAoef+59F;}0K z5^-(j&^d1nh1<)YdQlAey(*LXn4_C{m%Z-PO~>BYj z7~~0RUjv0)K(uXJ2`?fOriq|j=N?ceKS+#CE3 z#NUnp)!QV{!C(_^C#m$n(UJPui+V>z>+M}? zyT8F7MLOBxmgfym4prQ7SemJbPnN76Q?8gzE$AN@9bMJbuxw!|@3v)>Y}f(#Nj7@R z7tG+`3`FGO<))5`D|7tNidy1RM^-;9 zvl1s;T-IoFC0ai-G}7O1;OLMaIU|>VYL}Rp9pJb-nXRV^d{ga?+AZAc#`ypC^epJZ_qcUlG96L@w@VCp6WFBw3$Fdr#AIiBiq@CIS9N&K*=m!7fCJdUy>Z0elir9 z-|!g!0L-X8U-P5$p2gz`+ttPA>!0KONrtNu^ZZd~_h78=#&&;WQ9b7}E+PjMr;K_^ zR|-_EVK-}E{QW<^a>oj~NFg(RitqK9fro{W6tjEmo~pe{3x;6r+)lJ#@7@0^=BC;> z^9<{~e)jC+=d)K`Pi;){17Ht71MAC->VyG=TO1&6&LqTYDdQ*`ju|c60dD@E&YbI? zjvU(d(3whYl9as^KxqSt1QM+M{v{8rX#7M&_lfR5uBqe#eydiW>duA=#hLj-i5t<2QVamT5BCT%h6Ct5wCl_@wjtDPsFOIL zws64gAbvom2;LG^A1P`$VaC%-&5LoGq}Jf!Asj=s30CNw88r7Cb-KFZ_h$00$0G(gIg6K!(w*<$E`?CP3F?sqz_f}O!yI(WCm;|$uu9;@S^ut#-U zoJ(z%-DYc3#S{-aU9Kh0QN^V?R{Jegxx`1qV8>`wQN#pw@(80@Hq_Q`h~&KKPd31C z;8hDLF%j8|wTXwpO_H^%k#Riwdm*Ap4_#==yVC$*CkwW_$zAuU$#i6+<+2CYe{~7! zja=^V0g^h;mdr&iBigDTtc^*)x`p~47*inDFqDQKdXxJp|6JW(R4YDDN0N$k(1Xs2 z94ePoR!jpH(^6Gw1^|x?28;?-7t}lr5Tw3gqn7DwY3yN)B>1eWVQ*Qb|SmvV7JXe&6+l&Y?6=y6Gl ztxy)g5u%%gg%xaGAZR_-j=fej*O^{3x;A6EHxsIM=7vKH&B^}tR(rrAyBZQs{yBzo zIhrT-?>NLWHj52SDe|72WAc&#$563|MwMtT=#7(+j3evMn^_Iy9->`A+c;_xQ|d|Y z8nSkcUGZ811y-{utZV^_+6p|51&|zG2sTPKWd6*)2oE{SxchAjZj8NTsW{|xC?=w# zq!8Ege)Cv}i2;=tjCceV2tI^^I4~O%Vz0eVLa_kx=r1l2906y>*33H#3oTO0>krjS zfG`^}=#2b@Cnups8E1vM9pHIesRZJi^ly=}4yqk^Wjjdgzu^l4bqR{wg^56Mxk-@A z7-%_EUzDIwJtZ;0GL)Vf)*Wlau?6IMyM^ z4L9Uq6kahEWI*|(V2dK41DOGkZ9Q?t5&+f$0zvjY`sluWO!KiXxSr6KR7W;!7$Hfb z)V?EM{=&*TId^R>dFj!4_a7;Bt-pT#CkX%LD^}gLijEO%yShK(bMC_T?V(+>Py`2Y zWN4K$W!c7jrz?%tTT>+zPbZR?+6h=%*t5%6g)owlbb;VCUQT7=5YS}^F#G|s%WR!L zxL{vX%MxF*A)Hxw;pLA{{@`U>DsL$^$i58Enq)?Q?yw@C_w4zOTve(17qyk2{F*8= zTT+!YE2+GG{d@qyh-;C%{TCfxp}`h*u*v@bI?bvi1z)0cZz_`ZG@-7Eclg9`*BzY! zlM2I^oem1MZ^;?K9^g|0Cle*7y+KyL@>o0=x3cUS4QSBEMNP1_SvjBV^>`tL@ODzkPP`XL4IfwKD4a8Grg1q4b=*Q? zz)OIDqS6ATI_WZ^=%tDg4F@u0FWLByF}<>=_ItLw-ZL_uUQlU}W&JF{E7!lQBuA7I4)4nWBYT$WbuJ&<=ub%S3NS3Ee_6MO`z=pbOC9*;N_CEI!{HHy zI*3g)C!}tEwE}mk6*l!(QHTv%1X=gDW}QQwxjp*Sp5)@Jrr%zvD4`IaEF^yhtn<$i z!ePiYWM4uGSXxUh_tY-GyC`Kfvb|ifg#uhM`7=p?nK0+~&GBWppk0BjbJ-1X9i!pL zjGYSV7;F+OmslL}BsVqk>%mf*O^oRVh0d`$sWYQYPX9NTmCN@<`_o6Lr~q~Q|t zjiy%aRwXt2@-LGa+EkW?aSn9-%=wfq%&P~)*uDaluCSifLCN}}*|bfoW`-RGF& zk*#02ViC)p{QXtCUc73OWtUw0Rb)PZFS)Xw#=+3nR|5G{L00-(+$dQZ>;H52 zmM>f}xmT0*%SD&4CW2MS0);K3L$a6FBuk^xfTvKtAJ9BN(+en1r8qFGHe=v1{wme`typOhbn}dZ zlK`X1Y&riI4{u^cNB77D)k9mK-nD2UtFlAO*N)E+@e|F?j$u5va?-gX;F?;oTz~)8 zjTFR1U=^F^|(;^eeFY`!qxX(^_y4byA)?I zs}5~3<}(4NiL-!ps)%u*bBAf7)MiE?pPDMzqEm)`Q;1y$!fJTNxT&x$)|IG4VBtNH z-?0`>8?cqOpe6JQdyxI`9FvT+=TYRZBy#(PT>k0&8sb^wxrv;%F7;59EmBmRJw4gnP`5t6h3Q1U^XK{; ze5SnTtV_>dw%n6kFn`T?%a@mmODg<^mg4eru3a#)b$ourAt`a)+DIxuiu`%mfoyQY z(j%iIH!WXrth2hbrLUqPQPCF0rxt0Q{8$x!zvk^0xDaO^g+1`mMAT6 zrc%0FG={fI+pHs|Xy`k*UEq zVA~zeHD%McUprV-Ja(t-Lczq?RKxL^2uyK-_hn4GOM>k3NlBk52pE3_IDtb1p|M!! z;s1E$nbC>;?y=TZS&%$ImIiT%qf4_O8OaKAIg@A+V{Y3#HRf+{w_3aS=XO?FB!3g1 zw0cG8O)h!ZYk?Q2n%zNbnge6fCb{ocL!5TmxzwKhf4YNS6}*_q5gbAfB5RNZ@A&?y=QMY zetg56pD>HLc@kL)%6C{t6k=DP*X${D!meg|z%M8Q(7v5of+*^S1qgqw^~?HmWd6io z{&Fk+C&+yM+NYkXwLOI&=Ic+Pr0u`--%fn<>kAit^Xn7DZH(KUSgU^mkHBOd%D!ML z{%hEbsX^!Z|2A$IN&NCg2SQrpY5XUu#RR(c%~gSxJm^ly@Y^14yIlxa&{r-K(^|5H zP>_z`u1Z58bX)JTnQa@ktse8#yS3)}dL$PonD9(sC@>RTxkp{OH!u?)3{D58x2Y?) zcd0`v_s8k#>Ei8MhX)$suRi?n z!{d9#AHfgqX7=nc{Q2iFrf*W_F`x{EL=>p1x)_};b}RwRm48hX?zJrk_a4=6dE*W8 zakBHszQY^0Zr`^18wU;^JoxoJTej@TRKlUx-(X%R9}h*!`q#!1iAyhi?>CoU8joWF z!c@oq|IT>^JA;NA9VkRZ1!9^1|GB3`WnUv}E+T7Zzx==4@tISd?AKP}=T&<1%0IX8 zxhUa5Z|T>#zoRZU0gHGFRXh;Q1goDqmUA`KbS=;j4WP$lE;f-HxcKavyEeZx>(S^HjwOVgq_|o&w zT`{xt>nzgcjU;?=Dyu#<%tzj>Z+Sx`S~l?FW0x|-yH_7>i)D0 zu#!m(G(LQHX8?USgQdQEMbTjohZ-`$piQ%V@DLQi%z~vp7d1vBQs<{`bxzwL|0$ZFYt$&4qI6S0z@l6VCKtUh)UScz zNIe^#Qej|=OHtQ`IyY_(AceV-D&t97u!-kdlFX(08(;A*H3wz0nA2hb>-1Mo9RA%4 z^`)R|UMO~SQ)BcP(~PiVccTLg_#dC1xV$wq&viA4eGyU|^#XnSCA_xGQNs?`VSgJIuaCo0SPhZ9?%U6)S%9Mi5BwFEGK{F4IjOc-V283Ps>~>J{&Mk z;8}rdVT4_~^xeBJ+O_N0u3h9cmn&korNdd5W_H+ktuYa^rG}q+{Vy9%=FsYhZS6=} zO=hb)`<>mpkA3v63wQ7SUBd52U#e>yUe`iz=QAsWnBrD=KR318wwwN}VSJwYtY{Y8 zA;l(J72XtHJn_6}IhJr>1)@U-uX9cdfxwO3!)59n*iTV(%#Zrr4Q_O0(eboDQP%6wOU z=97=}@y8ea@!mJSKl=d4qi_J!HJiXScO_+Cr#w!y;L~g+s*k8{3;`k&ee@XqN*IuzA znn=B>*PZ@WW@71%y*}?#TYZgzs>DqM=;t%1|8$z+{vezW4wz*)gE>Sp$Vm|;VX7KD zW1w@>^h(p!Ko-Qs;>FZg+fqR`@(CB$7gsl)gRn7 z6Y{qfF1^)K(0AHL<74*pVADbU?+4kpT&qgU2Uq1^|Jk+A%E|>7o*?75lN-o6rOxSg z=dZr4jIZp!f6SXoDoIwB{D|(ft(AS<1MzDU^=W5w<3lS)&yCp{n`624T5*(1oca-K zMVqulr?7rbtK;4F!c$E|*@7BOeUtvd zdFTCP4cWDNgv3V#eeuV#`tKGB%;WlXWPk0gW5+Po)Zd03!o7(|jf^ALQ2+-1K)9N+ zr#yBsV<$Q07NY5YsO{3f%k0vxC;P~L{kr$x{~Py4?a#G8Gb(xPU3~*=lY5uluK(tm zYY2_|z!=sa0p8+WFb;LlS%mXMSrnh3iU33_b21GH83e+hyzoa|^b{3=bqLUBXgL)P zJ1~1jNpx)2$T#(EvcAu;s>3;OS@3Ak+rHAqduq3voEE<2Yo*4|{)NVMx7g+h@1Cp2&%N)2W!H!QrIZ_d=FLB8`9`s{>BfK@JC($o;{C^h!A&7P zF5Grs{`ve`{oJ*ns2!*~J#fx<-9}B#>AmZunVLASSrq7<~+kH2dY0*ptW{9G`ozw)YEiOja^&!N_l5zM5YuO^N7 z*iPgNV;K84>VAl-m{~en9;z-e!`V2H8~}D8(Mr`P^lO-@Vz7Ydfb6Go?@aXTBZvnz zkzhFi)RIYyahkiKn!!*GX{=)!kB6KSX+#}KFe)*zN({#gABsiYgbRQVqpwnc37!*5 z?nFG{uHy4xgCV8@Wn?UTEIk@@0W2PN2t5%>Cy0S*;&8&akTjlG@xUv@b`zoW;uP41 z{QxbYix+3bZ29z6j@1LPgYT^|xou9XdFoxVY*p)cUvQp^zK!Sv8*=ikUGS}Nq7snB zgjg6ghG@AdwcFd_>OCe^60$WC_tc|*9uZWzeb30;4X1#f>FE!!eB9Sr~ZrYz?S!*44FJB?7Vo3ySWM6#@gB z#<~|eUy{Y-vQ1fUC0K8Z7VgL|oG5h$_%?fGXTpSzgeL5ebr1{u88qXQL6~3?q`+F< z<#d9@#RST7XDQaB1VyY9GId8qh&o(pwEXi{;!@eU_cAoxW6dpIYrQEnt^b%eYfi@I zk|IFun9Z@UrfoNI|Zk^TGg;*Y{!ze|53;14K*Sokp?v4#VzZJs{S8Ne5?nBw~D z<^b!=Di!^&O^Jy6-J?V}L4L9Ji`>n%=gEUQJLE-kQdJS1igUhYL9)BV$K!F;95zKo zmwz%aBDK1~(-)5y3IpT`n&;^Jo*_GrK<{dX>;%in9CD2&Mnrpt0qqsZ)ShMzGplM3 zlZ^g@`Zsw^|AGDv{(s0!FvGPk0KSKS4oNT2*S?CkpZ;UrZs0N+>o!vv0QL|!I=f(* zfEE>Y8x;c>A%R9nXbcNfRdZ_!grHR_E9oCno8W@Q>ZRx`#K!4JA-_ghN3j0R2n*&X z1+(9?{MPLQqPyXH`gcEe)lV)JG!h$H*9{0g(Ey4sl=QeT~R^t1zSf}yJ4_N zzKo{vlGp5TsUA7N36>jfuz-xSC9L@z@SeC}Id{xbBu^G*ZVouip|egt_Uzibez7qe zyzfs}>ra2PG0dyhvjy|`yb$>7MX?%0V_&1CuMd1>3>b4Qf{hW9 zNJm(F%D@6y3}$@i?N}XQshNne`mip@{ea&CKdH_EksNbS!Hh2`5p;5NRDNX_t|VW* z67%(nAvsuktoC?N9=by0&vNP}@*x`0nrc~3?L#2Lvo$<6j)|Kk+<)_nDQ?M5%XdMl z1{P;35kcHyr`5jLfHg%83P?RWt@m|#TvQI?u^2}Z9YRn9?fRJ@76^vKxgL`A@-P`( zHdYC8WT7e^2Vt_?2WtO-Pc|1Lk!D$T_|2TS7ov;nTih!1gK1SgEXw0eu9=)H+ahtP zr-!lj_Ufp1Guy$*k3M*!QiVTs5u0Q_=eD^cBAGCb9BoI+(xQJyRc-CzNG2JGbhvm_ z2DR;_4nRY;SstxV=6Uh3pcWRG#hEzz5=2ute(g^^-8zrst0E(V*{Pg&ljBm}z;?Y3 zUcOHulG+1He5El*D;OL^@9@=W(WSdmO~mPZ19^s_7^v|7$Tq|HP&73a{B$&_womgV z>>z*|hrUUq&_9EE{(?G)@c1Y_s#+W1+MF`UM;571tW`& z5!2;s7v1KJT{AJhpC$J(7Oy|mC`7%z)drAM&W^ooN7>=SNEAb7ul&%AE)}g`b{mhb zU2AiQ@+#RbvX3*_t}x?`OJ2wPMQ(q%VL4nHLcB?#y@z2AE?Rq=YM-7MnKto<$G6{e zh{)>LjL*sY3gN;sfkTjx@Nk4km7pK0u~}izA{OX5I=ASgy#TU8hUBAu%$B-Cbtmc` zpzGX&h1}w)RNaUN(j|Ik)9z}(a9EMTpxvSk{2WCCB@i8=`@)2x6=xOppAJkK;7r=o z5ez^WWEyWZh@R7lIBHd>Frg1=@SiiNo{@Hh<4zN5V6&s#fpju=;Ij09NpAv{{`Z^OVWQXUKtvQp^ z2cFBD>2?YqG=!6s}rV6Y+{PsF23&j^h67I-U& z@&r9F^AufbdVf)`Ig1Jd0rRKS9+bv_6a5=MXZU?_)t%y{)XSd+E-Yn0IM`j zSyqS^Kov*gV?*Pigf$|fSgCy?saJ;R$J4VI!d8)Q46!ks2W~j70p+FGCebFBOWjKw zXYW<@_qF8?5D1%QX5iWp$8s${bk<-pIe69(y`IeJ_v&=+4elDq3hI-FS%_#1v(bSY zmyAZUF@*oxN|)1G6(ih3QE}-^F^#>gOcm1~LWA1FM&}i9ztPB_@l?fw%2dh}<*B5( zleUnPa~D_l^>jcV&)8UDWWxw5-j-NdVRZedz}l9Ia$?uPao1EbNxC|KCP4j0n;oU& zjHgAJQf>bA&s=%_=A{#nSYII(vYLGY5!x4$h5EZzPp8|?P1zc|hZZl}R4jaYGYWc} zdwQB}bGIh(Ig*;XBnj7(q)UQL05%JLFY0j=)pNDCYRLytxt!vo@qD4rZMOJ$be6=* z(LoYULbeheFZdZ`3v_=9=2|~cc->36%a8a$VY>MR8G)8kbB`4gNe2^ zSR2@&o;>zNVFk$VFqR!8WrUrK{pW&)31kznJm_BZunA_7jkkjG9kn!Ok5e?wpP%jQ z;+PK-J(o_3LbojVIGX@=c$bOUFPKPfy2Jn&YmoyTjec7a%Ik2k!^+R9f|k@k)kW? z6N5V#6|(sKIy?OHqd-6{G3Fm4hd{bvyzqT_*!)=AlsuQll`*myq>`OZMZ+#&JSqAj z<$o1i0C`f29Q!5gEqn~X2M}k{9A7#?1v*KIfPCQ)DV{nQ_7X{<_J<;Nxf>e7p5W%3 zPtboU%-=R2cP4xDMsFb4pg2Td&hPbZY=%7v0wLpN@Ca$m8+?I4qs1Z29%FumA#mu| z3O?2?>er$;ocWdho;O<2_D+@z;J2_<(bECj)ko_MbdUWzgx<_d}=rx^A1nh)N3@ zpeHD(gbEe(4$d$xWIRbmD?>cd)c`S%FgsABNcCbp;UBm;NH>ZsAf+C#<6OdI+k>zLRX7EM9t}+@OyVTNdqb_^bqeY|2*P0j z(XKrWs_!Wjb+Vv z6I7S#ae~v02%0-aQ9RLAM`)c`zx;$$)pH8m`3lf?7FC?>+{J4HT~j?;k$oUKY`n)>5f-jW$dWU?TAOl zL4pjqNWYL=a8d1RwbK`o3-k*w!g(QvRQGAUkci;VK#?82E;BJJ*P{H8%XS^MF(ZAOHoO_4+G?4c7h(s;Lw-e`lC~81Kg;3Q) zwGezIG=7Kq<%FSH6%gJe;4l1$1Bc>EN-b0hg1aL@cc&d0sx2_Vs#r2$Q|%RJKjVsn zHq>hg*MsPeTaxZ=4Z3c5^OwJK30EfkQK@EcKCt<+!;{BJA0PBhA3~+Jm+xyzGM(Y@ z*YyuBeo&~l`bFoTzppij%E0<*bwITbapU6bQ!Xi*_FBVfi`X7%?G0vsxq9;&@k+O3 zPFZV@Hb3;q(K}WQl5^a#^QK(^x5L#m?_>4O|0;x%S&v@`J+9=`^$RGt#JSSA-sfW; zS}+f-;M-YRw_`2`2ulMdA`C&8AbcDs**X0SUq~qlKgn1?aV$#He{!+ZhP? zoI%8aP{$#V);CM}ryKEJiT7^vLg%t7?#&z`CYI7$CG`7XPVg&t3nsOAA@UiZ_0anf z>G2cq4X9Y7aZ!q;nZrYcQAyWXH-ot|m*D~j1x?#PZ5nt5%pe0214stsWtgEsG6+nH zJfe6V@eniBhUfR5yJ8qQzpByqxYSQSDFNHR;Ewf{j-g$_ujW>vD4D{*iEN) zf90B)sViT6^QCK-Fwj(mMj=UtFVyrL!b8>&f7>n?r?2-vo-Tys)W27tSJ z`ozNyDcgPD;ZJT%b$#>X-ocq`UV8JTt7m4eere~<7q6PRp{Kr~t2@`wrTs#$oA_IH?z(~J zn|Aot_YJ0w-E`b&H2&^CaJT82KVE&!AFi3Y>cw3Lb_;9!we(W`gWGrQx{<$mCqUm+ zHgt2}=ZAp+M;x0fJ*YQ2Zz!X!01FVa69x{_%rFM&62}T=sx+re4Nkh+-87$ub!?cQ z*qcu0x!NS`WJI8V1^wr<*w=`jAl;To<5R+@?XQB-Ua+pLHlu9~Z*5jJDRJZ7xCny9 zw|BwzwAMCYp-@bek2$pD-esHbFz3vjrPe+{0QEOWe|82$nfO|V{myu^{W|JE@^@|F(Kx7t632`whH8ps;}CD0wnOOjC7>DQaekzJy^k~+2z!| z_j>|i0WDT63a<>bt-myq0OX~<6};WPV6Uh6?V_AxeBs8}_+e+)psaZ~-s?t3yt9KT zFjYRfFxEJBzzsUmj0vb>I|y;YNXcPgR@$y@?f2U{7>a%W~oFu!*Po;@Wf5m_4w)JI?S{Xi{NRv&4H5*^x zHrJ`AXZ62x-xqE}WZ{;&`@yFBLfzYS@7BFnH%lx)BejrTLeVs^Rt?((q$gl`U_>`9 zRy0gsTw+`mhKemdp2(3VPvZ+9m_uU`03J}!&6o@H3gc*% z5<)f95Q3OTO#lGthBF}oSjfx~y3kmh;fl~m2B@DtdI-MB2tz|}bVsUIa5Nel0>LAW zLe&QE#!)C!nc>f1QlaM#4WWC|SXMYD1v0R34mo@mIDTm6g}8vHrDSlJ()o(nOBpBV z`65SB0hbP?sKE?Ep2Vx_J~&zd&d&l%{CCh@Sy;) z+99^>K0aqnJ7P|+S$3(7Dd$vsRbtw>qL_E?88&h0##Y7OB(v+qTTVF=S$DJ8Gia9p zUz5Fle?n`BJHtvx0-@jN_CWteRT)C1&r)CCv)!u}YV2T(L#ub$n;y73Dw*b$1fSKO zaFZRXl8JaDVbSU^ql%i*znO6R3aLoYp0jBm13QA%t;9?joMX8h2s;$?&a!p4qsPKX z=o6NATh^$Cvuu^?`h#X~(goq+~MFZ&(& z@LRW7cl9`}2pI@71W6EE=r9}l8;RGLMYocIn^` zqr|1O2yEi z{_B1D^dR9}v8>F$UG8>gi%k`c$_^U)Iv>297FxxCfOiE9RQ+VqklF_Nfj2~nAyLAV zMG8Kt0rxR%jS|AxSh*EM$EaAITdI)k)DbaiP#~ns3G52Y90l_;X(XbR<0tG=;4g?Sl`l7)Xyd~(IDgZoHur?rHmT}Q{(RMa1l_Hum zR>~}HN;o4bz`)gtWG>uyd@Ypga9|zM6dY<~L0GCvRyNVLDJqp%^R$OCF*n0PV+BPMvZ~#QhMjSbW5~hC z36l+|PCU={M-x-k?a|KhD~S8M+Ddf9;AR)ZN8IDjOrQ%c+EdugQoRyR%Zx;vofgFW zRkF8-u)#bGKdniBxiH`k5b(~a79KgWT7I>PF98=(vHERDRjE9&^L`e2FBWhp4yVZv zNhaSNfXWcnt;njBNTe0BO9-iIL&Ie2|B&6LmHtECJ*F#^OE;nLa0JlmMKG0WKaw@?%;H{!S`96~=D){(R~_$yjoag2(Q z{W#+O#`Yax)U&BJA@0E!Q_OZ&a0@-_8xZT4Nyvk~ENPMQD@CtFIL0Pw5aftA1r@su z0*{C>KMzi4WAKIG0Mc(DbKxazm8l-7(AkZ5Gu)$uyXOi)LYWXTOQZ&ixM~9XhoU*H zwVyuq)MpqHIpBvBOQ0k^jthu6VRmSS?>YpZVF-AP3(z<7ac~xVNLMd{atJdE2`n>M zMf4_f#sk3QrW2mJ13iT1r{F5VltfC3BE*dD6mtP6I@umU|@U zA4d!jvL7|Jtl}~G4=T2ST*cC)w4ySs5(E#CfX+5B&%kF6_eRfn-3f_zdLzw6p5YZm zaxdGoE8_(DMa1n^d^UHqqlXt!!=rXCnBK<$?IMD0-6@t*)db;f?da7hc;>CayynAF z$_4m6+ToRyj2u+ZJdbAdaEMaW zjJS|y8?k^Yvys9_ui}R)w`sKCyg7Sdbys5aR0d5qCEfvA<>6J__ju#H90&h3lc1f3o3$uee7jr_EVSPnngsf z35k6^=gL2k@5wvz?LTer&2Q~xcpqoM8W+H#T~geO-OAv2I~Qd7}x*z&yDy(Y;Na7%$W7~gqU$a8RyQKswLVS#{SO}b)i&;VrK2=(MR7<66`Kyh06ApR^}3fq~Jf} z){#=-NWvN?Fo3R8c=nArJb)FkWY(zl~3 z0y2mGQbKX^8n)Eh4-n6UU^g+$7DV=HT^3;ovz}c*-#@z_A9T_JrNA=BA*X~ZZ!xy7 z!=>k>vsI4zEP~U9OK#O9)yy-+2+I!f0yycRwb0c0hk60#Aw~A{3OQHf6$G`QEf8^M z-g`nAw5+8POVK#=X&{2o&Ef>nZC*vt01a)yHolZvo_A3ruX;;3GrhLmU;kzhAGBup}nxkzY@*vQlpPxcpuCFg{r5BB%} ztz&`qAEhzjp^TdF1qN#urQTL|2EON z+M++KpGV#x*Uf_pI&e+bFMt2T?&gu{`lI+dMh!dS@!Vcu-zbW_4c`na1tBIZwN`|> z3F|}>Glr#%z)FHgZKqK_@$a>rw3#=Js=m(lPM@`J(d>&m%B>{urS*korUq*3`r6Ue ztCuY!Gs9ONuhkw=cq#ZxV~&gY}cPYUtIQE(aJY@u}s!~|4i8K==jL%UFfIA@9? zK-=yLZ;!DRs2FMwLzZAis!plWqj9+~)olpO2~>Qz0d|K9!(P}K(WNeWL#08vbun{L zB*UVuN7nURGfH|lsbVoG=$Xb?n@MBNCghq;Pal@#JNLJ_ht#5a;7+sc<+}r}z^0Z*GwL6M|1AfsV=eEC7R3i+^4$S z;!0gdOn%uz+r|$)A5pPun!DI{|S%g%vSA{t% z-`IO{dBQs{Z0}d4fHRtM#c%k`*FJN7%$G?zlct5~&W^_B)X{q8uA}AKAARn@8w>ka z@6h_a-ar3oRrXqLS2o23dfOY45o&|$X*j_|MqBOK_S7P4G#=d)kEk}He^38y z|EesTU)4iw``S!)jyw0b;s#wguK8)`6mUCTjkS$veqFy&bq8pJ9Z9$o6o_U}!$QxUYDPZo4agye> zWX(H&kB0|L?sTDJ{=`^YK8Z%dKb`$>C38BLUcRccYsIQ$tX8*@t&90u7Z3NRQ+-1- z6$&0^!4L5W`o_J7%;?^_E9u&+U`m1HgMv#ieL!=QNE?iLXubv^MuR*Mb#B_0h{@2? z!Zo8=V}lI@?|}S+XT~BC&MLH5~9n zQIl;;`cpQsAss-Q9$Z?%HYUn;vUI1IBQ`7V_uW)N3>_UQRUg@zO}Svsfw-IS;hkt? zkty2PF0&knaPLS<2S28hk9k6HB3Zx&&2a9lni6piR9)smDy?y1ah@`gVocto-2#4t zNVZkU*+c!qmKj-bM8TV6bDAVmS5Rp}ebhtRSnYDrN}3sY)NXBWY2@kwCG^(Y<@!V{ z&6R!o9j1sUteJ%cXh7mJi^4f^WnR{(Lt2MEUJb}R_`rjfz`AclWWAM2beK_dDO7~Z zX%5w42t0~tL4SpqEA`JCLLdFxKi4?6p4&V+d->?*&7%)bY}<9i&Yfh5s4pU)`{;(f zR$oY-`qw|7+cGkHlJ3tQ7~Op8#U1m(6pl!waepW|74QD5AX8t^?JazD$7WY(jFmu(cs6XnoP4h>Vv^x zIF}0q=QaFuGZbVF-OE&WPUiE^-~95jWJh=LH}`Csaya9KaQI8*c^zGCi^e9G4fpqS zboDn`W7XVf|LB6{t4GjXB;T4MA54xdYU}C%7AVzP?i?B#S-p7Cc=u?o8nagCRr-7S zhpnODieNAl$T!Z@`$ECS#$brvhJx0WJ4&rfKO69D8@Le+7y4h1G+32UEVBx6^%wu#hXN&-hfxp8*!9vCeBamu%dq@Vr7&hF{Gvo`XbcP3M ztoC>st|T7Ht6mM3lT3p0LeC>n6tfmtnp^Yp-CvzX-rXde%sUh=AfcQaUll#)4nX$N|#F-n`8 z^@S{cQW|!ZChJosAKvK>d+KF!KZg#JBX1vF2tpcj!3->eU1hz=#H#Ifcf@0IZf;nX zAI#(w>+(q32c6k-_WIuoFYH_!SfW2O3Cac9O}R4vMCVaUIoRM3t!dDW+tF1Masx$K zN~Aln^(ITC*}gou{TqYiP{G zAJeMgoMU=9FRWc!T@!Imi$UQ(#I(ruLu>sDR}BEm&(3k;%jHi-VeYuD)O#l%NK2xg>Cf8noEhLUMnZu zX0i7BevX=ot#g6ov?P+&_T-eG7eE z%Rp%^s9Qwq^BkCaF~DLNBi98>G)8-LmI3jhV#6qTL^v1^=UV6RkOOm>Z<sRvwt?^tqa*{{Y<>L+I)vNll z>T)hwN|%<~w93|_n>-<(Rz7RK%KXS->fSIf>hrocAKhAU z*p{sXaJ4^QJKW#Y)L&qNAb_%2YA0}KGFkXrTjEXrJ5(z|3Za|5&GD9EB358;x8=uH zT(Drtv$tHnx>8wn=`GJKn}7cD(I)$y#Sy)YjCOV2aA}zc7v&!@XO}Hhp&5)&Y{f;S` z{Xd|`>teo4UPj0`MJlzwJgqmSpTrfQv4}r_8~bk5ktJby(Nrfb^W&+V0o)i6fRz%M zK19Tyt0}78;PYRM3?*_swpe=h_hxIsum88IFb&>(kl49Da9%5OkDJjEM7o0koZ!^k z@nQKFY=+$7^a0$sJN-0atfwBdI=L5lzaX%;qF93VPn|_?+PBb~HUVr-0V{3>-2WTu z&Zn!61Bim+%b;CEkkCRVL6{@sQmLYy4l+S$bO~X?l+_P99sAPNi0Oif@$VA>(}2Y+ z%b>fa2O&M<2BF}R3*xE@Q6^@f{oQv7{uP_=`S{&CCLNmSnO7f1S$4W(-FZ*!&_BFk z_bL+?EHvA5^`7oEjcjM3ac#G!Hr%;;IAtB!ynE}k(|7Sy$JV}xBhhf_h5J0-BR6iJ zKY#leliWTwwtfD?m2%kQ)n80CFYg#!Hqy3yeNV*K|Llq@uUheJf1Y1&@(;B(WIH;X zPIKn$!w-yfZaa6+u>;3DZh7$N2Um{Vd;a#&zNOO(qn<><6J0pnz~`s79Nf~*$EN0u zuWebfd4F?ft7G}d=<37xNPL`etAD0kMmvUQvyF>xYs{TE(U`k!a_Rc!j=sjgRaXTX z`+%Q7bciehe@7nP>L8eQR@EJ@JE!jAy6ez&;U;9@AIIwzC;_8C3=dsE9V43jhNWuM zSK@+D#S4Al_5f%|3)B%0LVmmG5a()|u{YHXNZp~ZZ_Y&mzb}5N0gV1FxL~}&A4==O zXi}R-{?BZC#1IjSB6YWDavz6+JV5;bG&*y@S&X+U&ZIjc(_9UQb{!0dZWK1ngQSlI zLCdCQ+k_UM^ao-MR@5Hb{Al@+3^AOCCTjEI^(1#MscjI(B)>;ByFel%1Oh%bwtR?r zr4VXb*dVywZVMyLPuScV(mkRS@ru2*ua*Oig6PSXoB<|Jp7J;HCUKr0rJ@rJXqy&*O)&~H|P?y${fZELZ(G``VkYTp;P zWUQJ6X`HA%x@K9v81f+VePY6u$$5(=uS?%g$n}h8)Ro?J7(H40CDm*5TU(~VK*WpX zyyVur=r5Suns?e#7Sp_r6;WHq4uDhrz9t`VszY!Q|FylENG7{m^Yi}Qol<97&iWhD zZO1aE9QB`u*mB!Y}$ebb`MQe-8B~TBXDv&2v zr0eU`5JTsku6yU5f9MM~E#9`~tz)Z(_@+}$J-cxQ*{}llcQ&52aG9RH z_+mpIo#8Ap8;l1AW(qD~i#r7ag&H45oQnzpBV2aIL?ozrzW2bvkA3XmzWZwy-fS-T zot1&Es@LCaHlzFxW~$5EJI49;-G9$-?z#7oS$9X9&v=b9o16WP$^i4Xa#OSF%3yaY zkEmR{4f5zO`0iBmqk`H694)LNI&JAB#IL=TuTY-?<|&1M;M73tiE=fBBIzuqCMT6G zhJK?F1t5;78O6X^q(Y3o7+|g@+@~aI{6NRL&UwkP`%lVSoPl7yest>k)!pT#xLFf+h+&sL2#^lEsD$J@=a@j-9c@2 zXYkooQ&ZZsre#W&mb_C-R+9lrVk~Ldv6l7YA>03D?LENcsLpiZIhCurI#gHZIGtyv zCv=#eo}@|28s#hvLeeNp2qhyjNaSFXjKLsdjET+|Y%jss*EYsxz2L;I4aUY1FUC0S zuDM2<;(x#D83A7JeeVA}SE{M5aOzYz=X~dj@2Ai=q7U^NWMR@{CqX+_U?0Jzn8vfs z0^ZccLAAr6umnwJ(2tO75I$BCE(`dO=r0*)K9Rl!1>FqhI26Ohz{cU8d-lt>9~ruz z#n>_yyMO4&?O(t2$Cq64<4do6=G=3i*_;cwJg`W!5593A7(tL>L{{1NOkA*$nkV6D!`*wZj@SR2ESC#l(;)!K{kSsyKCqu*~6tw6b4LD@d-P)Z6T?GOob(@APN{o!%fzp03 zGPeIDq&|W*gIRStRxe{GEk@Tu&&j|w$nS%*Wq~YDJ{T48L1~kCBwGvo&aN%FW?)mo ziCUq%h_TQq)G)E59KuWJ3TTZfF*!D<(*pkpwkCAlS`Wl3vNxe5x+;aE*u9p@G(_Kq ztrWuoT5He(vMW&ua-*wPZ6k)gJAfPmxMLnZ5y5J`CsTuk4a1~LHaEfxL5IQnLwkYx z1d2SuHWa<|J(HvsC6Ys9r4sa0d=j?MxdMI(wLspscSTa6HXvkA7fovoED$Q&pOJenBxKkXln+?aH2By<^8~#ZIHRn{-DF6dQ zazdDeyPYHfLj$S8#Q={`JuRVzyQOFJy)^$@MJ-;aw1cwf z7U6QD$NXx5R2rPjyE2+F#+eRh7FJA{yg8wW2S816U}BeY z6UU`w0^hSPrD9vgb?%YJyiyVvuD;U#{U|J2w>U#mDeMY~z-`-H?O4@3h%e?yE|R9k z@D%V~YLDY99ee5nAt$B+UiX@zJ0$CtU@Q=baeoTLfI z#g&X;AgBRKA#m$SSRExN+8_QkIDj0%iU$`Y04w47DxucY?B+o?6U8u; zHK-2&xwyZMJk08B2@cYDICMuz@;Vi-33EM^8-CRc!3K}S@H)Pu-~(N>PIiZ%gCafu)9tUR$LL?3n2vPID}VDok^ibL+4C@Pm>(*F+gO0LdG$) z47P(V^q+zzss8EigBRdsOzy6yBwr@kme0T?5dI8K#VN(o5}J>a%qK*)9PNw;&2&@NG4%N72%Y^{H=5p3ai#43?L1!i55d?<=}p&K_L`KCl#)9d##^W+rTi4l zMPmU)N)FGLSaL1gpnxprHIu$*C=?A&z2veRvj;62jPiB2-!$9->z}6Ep5{mP_EghJ z*dMN)PY!&O_&=lw*#`-+ix_DL*DO&MxVT~Q$V2z zAP@?~GK;tJf?|XG+pZCGJOFE~U7$z!zJBWa%RAb*KP~*@UH4coJ{wEy`0a@;-+uJY ziZf>&Xl~1-ILVyavJOSgj&aw9hE_CZue;A{p8uB<_ppv16(ZgR$Ja=0qnWOb@#YLn z?c~R9y$WCD`(SAwv~6+lN^4MkP#OdD-G-i4OoQBPiG`!~pyTA92TYO-wn6o6NUJ)o zrTGFTlQj4qSr)n$E&1)Ytgk)1-jTBIOTMw|^K7v2*t`WcB4J*r!pKbk{^~)Pm(tTE0(4{Uj z+?{I)1lV^SMP0~xTY?N8ev0mJ8B-s#Dgk6JRfDYE;Yc}TQh7e_aMT^yVPD%@-@_$1 zDuzAbB-}+?B32ps!jzU=w9*c>4f)GYqJ3I`uQv+5o@^G`I*bgM=qTvYm#O$M<&jI5 z8yN>=(gYOXMQ^hbG{qz03p^d>?M}>`lG)1G$7gkS-uav=nQgMnBD&;sR0OD*Rcu*r z$kJ7x$yWA$x~r`653K*lrt818;Uk;g|4lwo?(Y1^_f>D(-|k(W+q_totXFj}Xi(Tu z;X&|`)6yqxP@U2DZ{4;Lfg2ManRxmJKr25@V~g5$FW#XUdMLjgKUG64`Zz2y&}Krf zM8QxC5cgq4R^isC=T zd>c0SV!}PXSj;!Im93_OI3ozBPQ`rO-BVjE!PB9zR{aw^6doK26^SbjQjIzn9O1 z6c5QAT3Gb)K-D%eBTj(0P%t$dIx^I=4Qi7Iw`r?&rx{cl1_b#+V;05`B15Eh!++b? z18GqM4aO)jomY`a7V%f)7t8KkjLeRdbTQB>8O3}GRHJKy>$6MvAhK?#m#WU;cEi!u zy6B_*8{FpL?7=@*um5r+duI2Y8!K~whr>*tdR!~?!8HvrbH)QJ&g51J@h^_8ydWu!mGtgp4iBl+T8!pwBC6I$7Jt~aw0+1# zT1)T_hy=PW*4wS{BmF%`yL(1rl^qKwSjT01KWfLxH1HHDE@;{t#U||#S8Wp@d^~L9 zAPkw{RVnWwYV-zkFF96a&k?=d+H8g3NP+TYS@!o`CZssn>&j?bG_@n7MG0G zmhJ1>zuMk*#s%mf{M)ZvX9&NQFGc(YY1*2|X~b?^TL8$40o&1sh+zg$2r(W5`dr*jN4SKd-*w!7rWn zrP5sw&b5C0#RVVUz3Rn#=LWSYBb+^x5ArOQUK7*UVP8`7E(p!iJfpf!t_65EntOgK zE(1+iMYMq7Wze+?zzZ|+5&(#UqL4?98n6hI00Lhh$ycb`f^nyL7n1|QjZ^lc#CBO8{Pp$v_^r!uftFC0~AHVB$ha`{aku^k{aeS@oyZ(B1QE;>9s=MUY z?|f*^HMd0Ky^gHnRabmATwjz$M#FV0k!5lWVS})%I z#yuxA{n_s@_N|-0(3!ZytplA<3VQuOot3Sl&wa+5@i(i;n2DrA62~Jy!JRie_|44a zk?6%MbPxD;ecsSdS5y)X6o@X``$20L45qQPKkB#X=04EPB(_W&gFTIy=4pIdQ--Ry zZUV+N2TcxOT+LuThY(=E_O|(Cq~kt(0dm#!9Vtm=&8^13pee$N4S62rc?jK zFOPlW&NI%EcCxbdFFU!uX!J+_vU&4Y!-h8$@_K)VKl*(Q5l>+pLm!~|Z3$xH_rkLP z>P^6|fOTv1??!AMdN@goK}fmq7{e^q#i8YUs%aTNX)>?dF3P8U_#qcI`bk2yrA+iE z3~7?7NyY@~-FF>hH(Q^+=(e#XTUU(xx2(Il>22m&GrDqUFkp4Hc1fWCa=vh~3`S4# zL&jehY>vka1IE<#8=-#?5bY?RbIttCVg}L79t}1TDa5TPrkxpo%h}_y-0JWi+M8_| z=Kk{WE3JR-_H`NEv)*^X-Qyp`wL0-?aa7>o#-Y;`x3s-Vh;W0rNJz0>I3| zuLe%>ePG~W-Ev9erenj>@r(o!5~aYgv#8&j%d4`ZPhP33b2ukr$=`hYW#H+28Xiph zq5C3M2s0`M5?NhoWPn;wVkjCM461V=_R~=;;OheRP$GLRWDS}U3OG!Fp!Qh8rPGBa znn`ldnAp=%PyRb;rY)TO?l*^5dKYzZXRdkkqKz*;J-W`fDCa3`p56OOZ~t$&Keb$Y zYk&Qvp58vGb8^->=SUkOE%OwB6RFl~x!x4NY=t3&I!4A1wgF$(vz4D>r&3b;nt z6_0iKg-DpqYn@Q#MUG59>=8cT|5STr^Qv9eAJ1O@FOPM9bXm8!apg`HJ}~F*n=i{} zKak6PFgI(+Sxmn_(|q>P11q%jTA|9&t*rCZz4Z?v!(2I_j*D(2)@p;4#AUu z4BqIFZrdV}An&Cu2jX|ChB@1m))j|B&N@Q2`9(s^fi2H04<52Eg{39)MP40$-#ta&uduH+R)2VrvsV5X^+6V5N6=@2u=$TR zZNnZwPlLnoslqS3-Q3hSh*_>x3j~~9t5$}oHH$2lLNFD64g07;g%K4sbChfXgvt!X zUPFJ@Q>)4VaWgX9e}2s~Z$ykf7d?>#{^FqXf=qONB)T)^5=}n_ zS$K0;6UEfUTf1b0sEcjem%5^-{$tf8ntW`Mm)2eQiD39b>y&kVYt+xZ9SQtX04f!Q zj}ET&KGe}7wYJ?3PR}0&=ZAC?f)F}$eo_X&JH0P#s~cd;=!Bj=4Er9e88D=I;8P2S z)O_6ohg1e9x~hR8kRX!Y08ORwoDiyz_lUTIGLU5hTNvR>g<0tqxcm2~PyVz$C-5Br zY+ir+d0!j3d8{%^5GFEO<=%OyTe875(&f4TL=G6Sa$Pc)T(U$gMDFDN4t6PbB#OB=-hbAVhAMHvFPwaVW zRx)>^^OlK;3Nj27jwe7JvQQys;O3A;)iZM zEi1+0Y#4}zAe8(UgGl*ebamGwdN}Bc3ZdelrWX+_1T@3;bj{%?btaO*sOAACN;ZD! z8Ot4d`Y^JzJ+o*_i(C207gl!!9R1zB{e|{EFEqH(RL2+hE%IrG5$u>)v^t1U9sJCa zL`)6TR(EGgiI)DKbR^Oa#j~?3(&2QZU7f)M_=zdl5??_7GvVpkl*4QXrW)ZhXcFYl ztg;^DJi^?;?Y`*O4{hW5$@^YCcG0iy-^%mb?*FCr37IR(vh~y-A&G6;_R#CcF8Jxa zTed&+yJP3S^6@SFZ>LmtNdD0YXwB`p^<5YtMpb3B1nX7yCOgCqzX_a>@85I7jrUmJ z6MiyvDR=zj3qt#wZ%z?72+`Yyy;BAD3Gu|RciKEI&B|CG$5?UBquxsVe(5#_Z?D<`1_;>j>?W!hLCdJO~wQIXiB0SvM zky=>Z5JafOi8t`i+OcydJF)6cxGoZX-Vgd5hsD(g-n@x9ScWHDOe{!bn!(L8w3%VQ zJ#zTSjpwa6eB|)*^KN9X-f~OqQ}G*aXuGM{$IfQYT6ONT)E|EkdaV!fFFj{{sBV3dt*x`QQ@w00TW5WOt+KxP=2thI!yY4nJd^U^||%ZeSmO{PAbVf2HXlFmNNF zR9(o{zN6{Nrn{QH*z|nU>x}#qXvD@rkZge!nkcjj4O+<_?HHGG33eSCr!Gb4EB>5o<)~aR-U`8eCE+ zf%wD6f$|30B!rHEJbRa3s3)t<#U?+5S$+#7^z-tisVBU zO7behs{lj=?or$X%s_niB-g4Y98j05?PJv(*cij9Nx(CS~kl$U};vhQwxj>u1LkX zA$Ti5KdkWx6c$4Hs29#YsDa}@$*B>w6xE=<8rpWb7Y1Hm%O|Y!fc@r>LkC=HS7^%u zKjR|#*^`%>{AG&IcZ9KYAhypmR0kw`Km{SPUilRhhCJo0UlNdv)EjUhpo&AtSGu-R zFIw02v_cI4tOLl>h#Zso@a)O19%NYLlGT+RB7k1%>#wg4)m-HkAJ9l^)pQV);q`F7 zfAv|W;ga2YpHr^Jc1-}j)@fGO?04ySdLdB!nnMQWxQ0O$?n`6TDL^|lbA zqG9*>Tua;R16)v`I5f}~XIK|_3^R_wIW$F__^jH$6A>gy~CsCjlc%4TMT99?!4aT1|}5`s6wh3w00l_5$-0 z`X!!kTX1OJ{!j7T98bLkVKXuqR9LON053+6nyQxO9fT7d=tEOOb}u9L_RAOzz5;2P zU`V4dLj;ad&j;28Vi&0k;y=23h4i1Kx*`1~N>V}eNi2{Kh^cGXjZqK!b%p|55tIwD z77JNsYXsucU~z0;M({ZmOnJx~FF~=7x=?jPt?DN=YQwJ)Tee33e>eqX5DK&NT0 zVCWZtQTMkX2(U~xq`V!x=LNJ_PISTU2Z4io6xO_9L^gSQc&Sd7)ZSW{{rwNoDQcB%qi(W+&2X?CW3w8ff3#omUrHZ z+^}Nq&KyLA@*{Z(_%0h?z(XM}F)2NcgAjSl6`lUEpT-GO<_S>IW$2cGDry>oBlZ7b4#J?xuU29&Gwl)929owuUj2qIUbc1u?C* zIM(O^Xf1#$gKI%VD!BCj_Ls`p=6q-;Yw!pl#{+UCz%o-S`V8#iBsbCt^pxq|VfU}@ zx*Ze^A7M=C@M-`WYo=yEq~P&qVB5qW8r&bZGLWPKoBa4%Sp1v7xX`EU*$`UgS(o&m z=?`xL5aqATX0c)gAGH5{_OlN@$X=T|Dg`zL2A4=lXD&=_ui2 zleyfKa?T<;LcyRG!hc6F0)rQL1J4kcZjl@MUyXml-cw(Kp&@w@%AhDPb|44Rg54XX zf&<48%#Wice-sw?@jdz7`91A>a(l*)O6{L1I*(ohvn3O~b4*Bntn+4$PzTVuB=jdSwRfDV~f7^yT#GhN%JPk;mcIP`t?IMiqBHWNSxdgps`s`@N!zD9H%ya2t7j8knlzAKtULp zF|Xbk-W92Sx618_y*v=J{(b7hk)7<>bWQgfgL8bYj`?0ET#`jkdgEfJR%^?pS^}yW z1DY4owWf_W>k5HWRPO>aD!Dyw2OM=mE0#*@{Bk&wR2iij~dO*l2`K@NPixbimk0< zPBETF&Pj(EMAl>IwA4W{Vz4dXvm}?c@TA}R>s&-B>eue7x~heCWpLB>WBszn-+F#= z;_@Kd37*DSuqktuY269-huVRMjJO>#VgV8WMb6q7wv0D1cjbs90jrN#M%y=?`Xjv1 zdxWQShiIMq)FWct!xl~f2!QFDXic((p18oS2g;}QRZl{+wuvq=$GpyyU*TfN$rxnK zC--K6S7bVcyP8?heew?3;d2WYdyw(OmLb1@{_t-z`dN$s+z|R8sDZ#?K~Ex_zkdD6 zSJtm*kF8&CEf8|+r-s+9;}5S}w_(Euk|W>#CC1`I*ixHZO|VCp5Tv|3kYVAM4_Hi~ zv#_y$eqIi_p_Qr8|YoCR$m4S2`lF^=T$~}b^8({nJUR6eTN>K_#SdCHEcwYrx1GA>mQ%Og z#l(4BdFsbkzH0sFZ?3%ZH&<KU4o}pChv( zSQ*@M^@-gJ!|u%NA?~(KcfEMtjTf)DW?h9<%DIy2cl9sZ+xM|&xK~DRE4D?peB_SK z^846D*3-{^^E;;+RW*J#82uj|+x1Or?Tg&b(flp9pYx}4U;4)kt8vr zzo+-ellu>Fy?s|*W-YT0zPV*<~VH(8vvF*h;2xiRIGEfcmQll8Y>U4#L zl6@9rjiUFbD=eq!;Pf52x!DeQHR`I)ojH4Kuk5Y+lVw#wI_`P5E;?)H!Ucz9BLnX= z;33D&=7E&5cXZ8sPFFp^aY~vx(q8!VSQaiyF4VAU;HJ??_hyM{x_9<%i_YS9%>QV& z*EBiSUG(=F>fW)j&A8UUU(##VJ>nX@C#x?#vh)DQja5tIJlI;boQ!oxLWPl3h3iTt ztGpv`=sv>_r^b}#@$%zcLsfx0xa9V+hzC*`g4|tQDc8J9mK|V&?YoPDwzxNt^GC8H zsV=T7H8Au%H0gS5FJ$QF?c)pyI2q$1HakIPVfdSpP=zu&qs6yhSdf(u~d6bIb$12-tT&#Z;7RUN+A(kPsEdLzfIhk-hc zdJv+#G$tYI=St+r@%2aEZ+##z7Myw&7Y9S5Av-?ViGF!8=Ce-Ve@p^}pox`XJRz(% zl9&1zqLpm69>l~TuL{yGgMhzx2V82ogu$9GmoQApUATIx-V&zSuE$)26wOi#PKe{4~PF z;o)M(&`^gx{@!YW&Qr`F2S$@QGt{WP8{-K!N?2kN_Ha2pB3)oRp}?ORQu%Hapw9sj z*WSPy->^|ba(Z0RYzN3bFspVor`NI>a<=-5NCWQ-2yPWFt3zRbN!A0qMDzuJQPbTX z#m}o*!|m2Z)77l$ZN83@Su>5AS^vzu`l7)(oyG3EJ5%fYec|=lb*;uwJlc{Cjdp&v zud`!Tecrr{*Dj3>8~Fs0=aU_*Xt&R*=9DGQ38Cw?goOASsA-Ayw$>}+*wL36uR=RzChS3afVqS-N ztgEp{<*nD-7wzZ=C?-x@uXio$O{IF5 zbP%(-@MtkDw(-jc8uvK~a47dBzpFcS1QX&UW ze0|?pUq5j$qPQj>{P{6DDnWYS-Z_CCL7F*--%F374DEm7&wu{JC;#%7PpZwm3)?$) z_UjS7xxXb8YUyvrX6NKk`@-I4b^>SHN;`X@CY3ZH-Ae^}(*Rw>f%eIfHY#&RbMJUt zs5=&_#M;Jtn;Ux(9H2dp4YpC>aU0@}ssCPs{>z=VSrFeK)^ny9%)vn6eei&F+ex;c+hg7KHapw81v22N7Ex1DK=SY5ESB@8y3DHRt1yXINIO| zrq^xc6Pu9;cDRtvV@=Ky?_G!%HKr|)D^!FVpm8Zo4EvbX8dQCnR@s`M#(fKL(zH2{ z2K!Ov|EDM8hoSs%=~$A6nRMz%pyy1QtW>H%Z4)=l)<~q}3znj>R<|n-ml?k=<$|)t z9}z9VaxHZuZ6XJrI5l zY}PDBLgU@lxn`sniJwff7zpG&>1P96Nh;X+_eDa0Kv65KIKv)kV{pTvl0qHqNs1{?Q}Y zJP5^8lLsN_E(uf_B18=hckouKlMAJ zT=vBK?h!%5p)n{L!@(XG|4&9lKK=J2qVPXG8GZK$w{Cs#7ndGu{2rTp__D=|FMD`$ zTjO`zSrjk>)J*V$sv$}6o|6pq!=VtmpBs>sEF4lWmbdOa%B9SYn^y^2F;DpKtF zT`r(zV~X}G2*VNONC*Zbu+)n?+(6PPy8JDs8C4B1V@n;U5`q3W>*CDiMx>~0CQ)m<*< zm;ce--z96Sh%aB>guZ7G0}OG?pR*Y<;(MVuqi_O9+1LUQG8BpsxS~KWpz#(g(Ihr~ z(8Rc_iBNTrtOe4_Pg7zz_7c&oPF%XodNC3e)U*-G^>+g1amA0$TY1~%2ikP6qw9SU zz+*>$arI=dHN;2W*GUJ0#rP{jp`f+ziMDl}wOwTxB%eZzC-X&~f`HOq$Z}6_{KSn% za(tox(mAQ#m5G))x#HO3bu9~b4oh4aj$BjQ*@qZ?*D5DXAKCN#;I`JaQ@_!n!6Wmc z!p?Ljjncl^Q$H^py6&zuD{q}`>xVaj)|6m_Z@07K!s$8JM-`)wx&ilY{=CKB1PcqIbqh08|GEc9iF;v=(+TXsUhm96etxNuJ`3(^6Ml)qVvg&)Xc@F%M`odMg_Z=0GZPb_IT zy=H`_G-{80mP|_jjV{P&HBz*LbV9--H&F1A?~<__G$doo#;A#2(e&X1(;V11+TiJ7 z9-XlWVfg2@f19sZZk9 z0)l=7eGmz&T701*#8E*2xL33p03bLa1ocqJ)8&a3bn6R>;w!**>?r}X)e{0D$p95X zrJkVPT=yt+sV`cH4Rkd(7rQgrc13CSc!Eb^rq@5Z<*Jx(WVVk>gLB%;;?2RVAY{$O z+d|ES-d)!h&Ta47*POY0VDRh9mR+ukPh^*Q^mQ#BQ}=k1w`YrV7e&8h`O($M_GLO! zF)NPG{%rmy5!(b@l#dJ671mqUhF^v}Aq5!zcr!tO|6j8bJOMxrw`W^#{YWg@j;B+U zf@ffHG1l(zwCIWsfb4=N=JR|~P$pVD!6T)XsG@h9xK$|B+-xdJHn#4D_R#!LrrDQ? z`gUcN>(;Hm3g0uEt%lqlU5K%8$Xu-uTSvB3V4ZwlybF5SI6NSiLU+0wTpnT~?2**~ znIUes=n6?9Ur+<38l7C68HecTw#B3&7hy*<;5kB0g!M83 zDA-j4^>b$9i#@qqt(MF6AYm%jv}bMV6A>k;^8+m#I=eQs45AOfZrryKxVe0qV}~ZJ zWLmZG11!=EgD?m0NTH{z9BLe0Z zNjml7)`z+Cr><5-?uc{h14_xwO(v%9_FUG?1&60zOR~-~+qKoYqr|T3JABTOf&a3e z%fTTx-1>8bxcn^RJ^t5dfG zxwGJ>1fRFRz5N`X{YmIrk@S$#I->LBL3Q%br=$DWii!qVv*Qa{9ijywYzp>SBB4lJ z{xNaRXL9TB>TJJa!Q_LLiZ{2cR61wTqV?<6uNz;ouT(E_+_$)|wsa|d7q@16)X{TW zx!Z2~fG}BAmyEI9YuA16`L8aRb1@SJW^wPEv*L2`>Q8ai(xtPx(XQg9BhqM>js5cW zAMu}Kd zX@lWrf3)eD1XAscF11l9>V@M<8H4oQx1!R-J5cq1e?zz{z}bu5t>F_7c7k9BP^=-d zHE6!yR^k$?;jaYB@Q|fVEcR4m!xX$T>Aa&|qO8n?L7QIKEs7?m8`**&>Lr&MI8*rL za?XA!s6j*&Idq&jNC4e zCE=q6H*~jVipaojdzh@}8G^1e0mP+)<8U5n!3asWPYaaYD0?nhQb z9j*?AOmoHM$c6(E_%5{j5(_&8?rc{nft>UT@FZ}h$gOfFy)LAf@}O27YFBrYfD;iDzZ}&Nnmie{Un&v z)yS6!PrEP#aG;;V2Cb<=SMg&mr!$PZi(1&@_NbDYk9W7WLhTNpEJbz?7nfZ`5bpSV z8lHyUo=4?wxL_#2S3q72w_MEihXZLnCM!t|zE!|3O2iq53>OS%z@j$t6&sF9(FCRK?|m#|b_bJ}=QnUvq~|XTpu%H8nxeEe_3%_e>2$Gqpenp#oz1G-j5^f&=w!28dG(S~M4 z!$QQCOyHx!na5=ym>A#~Ukvu9n!#Ojf?mp|`U9Sr?#Kq3vlS;=9WlMU+v)RH=TYZ2&f?Kdl z_rr(N?pkDi6GR}I=orf)V8<}Za0F{1V46^)g&}_fHUsg)@V!NcL#I?J4~#1tN}5TR zt34K}go}Y3@UmS>TQ)Z@70#R96zBt*97%aFE)c?R`a0uYAXX-HE$(&WJH}kzyg#?J zke#T6%Rv#yFy4$kXpo*oRNRX0rEdj^UW>X~T_A=aBnh7)+kS*sV4inlp3ef)zXvn@ z`G}La74thRDZuc7LmP=bU_8uR<}~HRyab(p9!V-vm>M#zp#GS;0>}*xJ2_?73&6Jp zpn#=(A5C1n4C*nO2<(Mo%CMWC1_lM98(F=Gw*j9ML@^@9M5&4F7cj*TWiRDr_SPOz z)W$WW1AfTf2ugqCo_Z@#aA_Xo`ncZVb~~o-zJ#szR?-KpUs=B(1?RmN?H|_+q+8at z%?<}&L)TyE< z>j#l~WmGa`B)4)Pr#QjMpa&o|20aTh%VNFo-qPw9GG~y}_^+K6lRRN3mGWBd;B`0{dUuj|J5eq9+GWO@0mJ`5vHU zkaTn&{O|8W2EMP5Y|r`twOJ@*D(zzs*?X~%S-cE=4cQ~hXnY*)|jK>M2d?tVn6CYLSk8>=KSqh;+4#dy6 zk`w)&i)+kWjsJ({U1Wv{Qr4XaylNC(@1^dG?yjh!5vHQGCCXm)R* zvzlVLQYptCS5${8IUH({<0Q~~1@vBtgR4;G?+vUNT|Ba6e0J;5>}^IP}3qO;3ALu2Lo&`)|GHdMiW3vjbU(2uIVscO|7WyZ=E_%VOV3a5>Y zRF};j8d&hx?$NPQ@8D?VH<4PDv1l!Vdmlt7aikXJ-r1wRLw?E)UGg`YzTNa()AyVH z4LKWMLDt45kdIoayWE{Gcc*I*B1+xB6>Dr~y3;tGDdo|Sa6(DTEM0=7yNuQ?rI9uV zlo}c#f7%BjVtTto+kUKJ;4<(>`%oJ-)&XpneI+Oh!SI&Bx0fo|sM5BN%r(Sivr2cl zggk3K|@rGS6s2> zH`bOX+4A2!X>DP1X_tNMN&dQb?)1*Z?0i+VuKq`7kfV&Vt|1!q56@cHA}P1X&i%({ ziD^2IuC=~$G5)c&cV5hVZ@#$UkqyIl{*47LzVptDt>68vvHzy^d-AD4U*M3-gWnHC zj5Y9jxTxt9P2XvHks*fFY=}OXKhUm_haec(oISz}AS-o}xYQs6)G|a0a`pv{$WolM zv8fx;rqelv?JO@dSJ4$g8?=tP2-Q@o5KTcN4zhBiuEu?_`<`;>4tA#@8O5IP>gau_ z&JK^jT~QIb3}h7)o2F7S{4vmDpu7Z)D&%10!26(HoTeIpBh$D%&TvcesiP-uJQZr1 zzRe$ZV{YPGJl;ULmWUz`2agz)mX7WX+q#Qglw6K;4KQJX0f$ez627pEPp4bk`$Ivu*U&u? zuW#yhrb-^Y9RL%oo#O@>f}?N|pR9+p0P+t#zE)k-o1Sx z#^23^%X#kbVf(?JgGjr3Sp=5l%BvOD(4;v6PvAeNzygogl}`WU7q*RRhv6I z6Tn$TM|&QZxOY$21RDd>1C{ynv!BtnB7KsXZGmZp!78$t=SocIqgNZ0!R_ZczS>d= zQrLAX&)I&QF3gt~!QOBc*|dnov8B%*it&Pj5atW?9Z-8v9SFB*V`6^De*t}<;rL7! zVTQmV_!CuvBv8X2nu=#kyYJd1ZL)&4Cbp;1ol&NdsSDgsqep|Wp^1#!?TqQ4G!-!t ziXj8s%3BzQqHulRm;xLwb?Jg&XX)xtJRV|JXn z;_U4!7Su1=bKV8}FSrP7COGjiaP@PStuOYTd(Po2FL0^yc1TXD=H|F1_>wsYS=Dskt;8hTx1?T2cAQo|ZhE}ZvWNL#B1V9Jg2kXF@@O1cW z)3=cGb1B;eIzWn!H1sj z^eboq@xautz*02`%{%=Hvz$~SAA2y_@99^$N~s#G_;52{MoyP9g>*L_qPtrEy1>@k zusR&K7Mudj0NtPnTmTzbf)spKfuPK@=kbU0IO^vl9)&rqByJrI#BQ03@r zG&g;E9bCP;aWPv*V?HV{upW(DP2B;uw^0{1?7G(RZYW0J+Yf3W0;Zg;vX_;N1vP{j zI$&CbRvuhDvVX|b2Z9waa1%6ejKjiPCUghFEZq_;n>xWA#WJF61BTPvruR|UWr&D zuBSWUf70O7T#$eWZeE2x0?{sj1ai5?H0EQPy|QCOruj4SODE(Jf^)9p&j49Rgcija z3;Rx<6vUk;yM*ss(VL$;_OBnlXnp}1uKdyD;0 z_#yu&;+4bD&37<(Z$c8pjEGqhgBoLyTo$MI`BD#zY&5ZpLvV8;8d=We$+HoW6=1_4 zPhuOXglG#V$^1*#&+K9_;mCA3!fK)lYArcBF^2qJXb4E}Ug4}R4B3%&G<33+I zoUT|DYB*qvw=lzutx3opBOEsrw;+nS_D0wn5FaF z@?<>Wj6jzZD{1+zvR3F~+UiX9w&3AEbO0VZ2dsaG2j~WDu#T9ybc78#kn2;~5-x~h zure|Xhn>nGrzeD?Id|cPMOlEj1lG)*d!@;^zKxm#IzitORTOq0d*G!p3`(TxR1l;HE8hz6TD0%cO5L#Ook5ECBsXs(W-OblVgT*y<6=A!c_mLVU9q(x2Pa zVcn>a5=cWBo>^o%O~Gg6;!N>=kfw11Tz&ddJVv9qU3NynfBJpsqQ)!bklohq-uA_f z+s%SatXGknJziueF8ZUUA{d@PSIQsvNMIj`WJ?ZzDjZD*vt@@M>cgELPblDZ7zq~? z9|H;9!+zY+Vf`9Kmo5Rd3DlZ98G8}>$7pp4UGM8{%`j_4v=g3NNUf|QLdfk+1wHNv z*n)vMOa&sT+i5t}plp;q%fhXCtY_HS?#$E_y|3E|v%EDej?yx7S?0JmMbh zFe=8JXh~OPuYsUM-R+Kbz{iqQosM#|tIciwJ^&CcAP}oDCKlji6XbukW%kEiurF(p z*B>3rdgGoT2)K%5XG~WWutQMI$+B(?w|V+J9itw^r3eCorX+`qN#$wAIx_PzCME&} z(*z*a?2iKh9QtnXuXxkBQo!&QWAN;VCShoHc@aO!nB+fWRw#pgH_|tOW`lk0R&(LL z!(ODS?#Xp;MpV1l?HH@--cT&+%XA~fs_466Y1=F(ik789*ob-~9j4Qi0Z!|4HXH6P zSGp74HbTn-*TSm|j!7_4D}P8{M0QQsx|6fFt!*O0Fd|_t`}f72w1z0-dsS8FU({dE+CT@ZCU|~EKYS2-F$G68h`JZ7}V(>S{mTfSr z)`M^cp;yD#DS^kNd%$9aRO~kkM%I(b(|oGuV&=RkKL^GRe-tdT-;1$-XbwxIA2Tx^ ziHoGc&Qn7NTi@PK1ug5gwhnhINl?v5Gx9>h0*FOe1WZWhv2(+&7$2$>Gd(3nkR1-f`P zwHx5lAu{=RopC9N_&GL*-&29JjbpIY8*_O5Fn*x!p6YIP79LQO{W?^+&@H9$Z&;1MS&c1pM&2az-Lo0uuzYad+%bV6>%-`GeXwx&$xV?&4=4O^> z?RZ)l={TrIV{|tR?)J=vz7BO8CM%gnq22u(lO5y~C}r#^YS`A`W7JFeE*`pNsPU0m zi>w8<2TPd@~l%RtH!1cO0D0k^f^ zB+k9_I$XrtMfP4LCToCzQQadEfQ_L01vvoGk=HO#N`TXWxOB`7Vo$<>Lrj772WMHS z3n51*FS+>QPqel^Be*41h0WJcH9&b`>JT{1q41pPR=sAePjfm#Syu?^7k4m`MwJ-Q zu;4P)0FalnY<9s$$w`Xr@_0o@A)0WbBB#gigB2Ap6*L55o-!^stWmsc)aMU}n~|Xw<~}*KVk%V91QKMJM}r$E1{`C3!8R#kx{!YjdT9({ zP8yh1XvSQ>*w^aEVjwAisHuU9OIG2~iVuWchu00u8B|#c98J^SOG*|xEIt~t3T<=@wv#VSkR|r z#Z(+!ImKu6P6Vb&SvejEML=U^N~ZvMNN|Ef)sR8H*&m2FI2gJNpdCP4hB1!h;y~8f z4iDYcX3mQRgA1eQE{v}?>=;GhV^gR+u+b>8B4s@D^fToPe{|2LsfXEJ*q(ZrTfXU@ zA6>{TxBZ_Q*p97DLrv?E<;;#L@NHU9!uzgCX`5c{c2^(pb{~ zu}4^Ayr3YQ$jRFVQVI=Cva>+-fEM~%_l?y{vY9)rTiIE+<=tu3_}7mV`nizdF6i-$ zD-duackC?Pb6!6;tGN56jTbRtd2Pk)xG`DTK3lv>Ou7qcXIzyHo*!+kw)5iff&tj| zMeC=VXN$;~^4Jx%<;b@oY^liqz!J99r9*9JnMgFY$8#e2%!b%# zj>>_f{yxW#ZKCgmFMG|$@IEIIvh)Gfs# zS_A<@z~pj7i(&}gKyFSl;P(v4%yfm;gu`n>gh}XBI32-d66fYs1=jVbBNlcdC<&Lx zBzF{9Xr<=eXPGT8?QE__ckYzJT}D?+3szxi=gw%gdFM+lp+Nt-m7IC_ATr=OIA_$U zxJ8FwMgln1)D$-|c}j{?7U64*HdIBEb3{#W=mh8P4m(NR76de=+XV6FbSJrXIXM&* zxcH*Nrh(+LdiK_=b;wgMn>AQ*_*~j+VWGc3aiaTo=ZnVYdLo5oUNPZ zaC5etIfr{~ebCx}?xHYhTA@&CAO3w(gy`ZPwm) zY*#JUz`l-SsioC<+YZdzHn6YrQf$w{>3yBY>9l)jPy2B?J$d%L$sruXHuviv&Po;+ zKUQ4)!f=9}^RGjRj>X?@U;M(Xr1fa=|6}ewz~d;-wP8)&+1c6Ioh`GyYKvB7rS(d? z>avO@%W}76TkZv0F1TVawh5SCVlc(nfI~^>of8h{kOE0ap(TWbkdS&p&Ph*BNcj@L z*801j8Ob(D&Uan^^LXK`1zsXU(FyqY0F{Db;Pj0L(u;uj<{2dAB3g{A zlbpA~FdL1hI*3vmW-jB=UXgN?5vMU_*D}RrllRV&e2_GWyVvAM=q-}Q27yN#+&^75 zTXPO0V>Ypc9&Ox@0@xO)Kj{q(alsTI&}y8*d!S;f21W1(jJ@Stt(bYrcsAy(xy=}l zCA`MTfie_sgsF8#=t0FD<`}}}WR624x}GEi8V2*xq=uk<&-gYKC8*Qb{z=_yRG#T! zN!8);mQ8J((a!`63`UI|uuO}LT+!&1?am=RmKAx~F4k+5P=aNl;gNVf0JvO9bp-uh zR#I|$AmE9>f7GdJPL~{!JdJHDX0N)tP4<8^IU}mm6G4!so~UsUzphH2hyp)UHd?KE zh^< zF4Xtkru%IY5l3vRlE{joI9y^+xFYBfWG#mg zN<`u)R+a!1rucbiP&^5Jf`j*+%Ogb;e+Xb~xE1fr`*90vi6D)tllgVF3%Y2#Qt-zX z_;XqGrz05(cIaz*a_QtPg?f7|wyp4Nv^MMX^#&?mh?L=5%ZurIIwH^)dgkUGLGj`R z(xT8vcrm-gsmHHNt!j8;VQk@gXVG84gGoK^@=N4fqaF<24$N;=Dp&KOwK*2X81!C1R$cgu4qL!WiVra_ekjh_vZndbR8u@_F(Y5&>dy`D&qKj2hzE)nA* zN)Fj20*1rE1%tdb;EX}6jJQ129&fy1>u|%T*7~clzuWWd=E;r^KzM>)816j7Fz_W@=Ms$gHLqqiG=f1t--x=Sc zblK%{*oXXkV!Z5DqLk#vg@;OR*@cnE_^6m#ENS zBD@9N$Sclj9bM^(gk_C~-!PBqOm(<0v3Yf377}P6p*!G)k(&*Sj$K#1Ebnx>S+HMD z*(>oLNSW|)1Uw3SG2yR3N!;pO;DLna|5qO=6_87ab8 zaRF3+*YGX}9;!5YBrM=+SyGT#O%|Pzn)#SuydCbvEZ-|foaEDugifr8AX3!_k5&@4 zG37=6;w+%Pqt(@zm?0NZJchk0?C{8%#7bQ}>30!RbNW2~TVlrW*ql$fNU=ZBPGdOG zAcd7d5uwAObDE(K!45>)4BjfbL{97Fjtr&X#&6+oV#)WT0d^?9 zdtm&QTgC@=$4|YJ+-V#a7AF&pcYfv*$=I$L8*ja2W^-}o%wqG*4@*-=+z-tvr(rK9 zz1!)R;K%U_P?@v9X<9_lqwat5wv+wvkvIFu4@Lv1MWMO{AjbxqQ}{?{ap!izH%2dR zZES44cy!7Bw#LS`{Y!FPT{+6HKJ}Nod+i15H&(vRG`BVkz-@2;61rp4R1snA#iOmO zgA=QQD?1kN-@mwHWsto;xVm-p;tyZz%++;u)#W;Q7U|jna8TDd;bE`dduglu&C2VQ zuYY5F;^5i4D!-X3j;=7~!e7xBM?W$bV9%tWPz*N>^FQkuphm#|!Po<-$VbNeqg`}v zC-8jx>L4N#=G}hz`fwt<={R@c!%+2?Dg z{&FRH&DxHRTCNTexUK818V)bWFWI+mN$aY}#M;oRR`WQ->?tklNub`vOD>)$bkQpNuEoG$2`yaVV zSEvN@6kGFh|5KF@D(^otHt~+WpfEf>K3rI!|G~VTDss_@?|rTB831KT|FVqD`Q{g9 zZrL)kFyGhNoUU$eu1+@_`X{V;J_Gc)7~YZCDp(f131bM$&^Ui&2)WNkKX>rJ=c1M0 zB0%bM2M&G?j7a6Tl_zG7kI$s1bJ5+$j_rPC&++4Xo~gXQdFIT`^bhli=!=;LpW4Cb8Yp$L?mHv4aR5e9*HXU`4=4- znSE$9qd1ozIx$~BQZ(4PnwmO_H&p(7xY*f<8nS+WHc;18XfF!dRh|y+r4PdwL^0bjiwZJ;oc*&7GFIY(kaH8S%m&1pXPp`u2hlNa?mxy zMyca2!=~n$CXBqCe_}zaDvY@H9@;MJ&&Y138QSAA5U|~!v%ANZ&*UoW1!lI&R32+t zz_asc=m@8R0k$ajA^CG?M*aq1iMAO3!}^f$e*KL%0D`iKxvR42n-h0%w{13$ar%un zHevive~6sM6nkE#7+BI@MOhc#-88>Bi0P({#Ndaqk|rm`ITkzO%88{uqlP!;j5&)Y zB>;2s!c)T#or)%ZjvCoXU1zZw317eEK=w~(wr3hrrMm68S)ESJ(b1jSHgD(r(b?Jg zby|euH4m6vc6F}FVOcrXKQYhd!LBb#i4)g$Ebw^1SA{~}2r`$X^s++@ae^=44z5VM z6G%7~9GUMGI_no|Zb$pf;s#!off^IE3;my}{Qm9M^|GGQRJ*1|Vnexw*S5qvLv0$ zpgsLem>X#L8O@_1AYx#slOfhjtz2{9NJ~hh&k*Q{3m}<_MiFNqJP|q#p~_=Kk+K=* zjgpw{Sj_lL)dh_@BtRN-9k{NOwHeRFG3qxzxP5B4C#^SBaWzztn0wHC#wmkd)G3|Qt}I8Pr#kVQ!xlQ?R~gk*1~E;e08CKrJroziG< z-v$$lfHnn=s8*=CEH=akAMz~;A9PSWoIsQg)|B?=0HDGWcPzk=77V?edU<86e zgoU30;FJ-Rh3FyC#>6}+1Wg$R5cux}+%bd_z+MaMC#!f1Zp)A1DW>$&Z9)_31Fo`+ zkVf1Kd`)s+fbRkl0HY<)V!^3aaO!Sf1R1~pu`dfU5LxkTEuzImcqhT%!J-A>m4sVh z!T}gISXfHREF(TJ$#Z?cuZJZDU`{B2SHnZeEds|ySaI+yye4{pJPlRN13jGV_iNJ! z5r@boqBZpaA5uG^*}%B4umsSpk$J|7MAmT7kU4w{03A_epgvn7R@{z9IgqeMX^{lY z7m3KQ;8-cF+X4xLgPjN2X=BKRZOy0-#G63;fUOsO2ahJ(M8pc*wQ1EgQVOv>+^ZIM z+UJNUmH|t+X(M3qsW*00D z=!7lye1ohH!-@sJK8qE()~qU7r(o^F`vR97?l2;BG+N7iPV3kocEGE&wdZqJIp5)A@_)MZu;$=YBiw`g9a&r$8cNfb&e z7-}-9(NqvX*{pV$6LAgmfCeO-j6zg_PnL~_1)-W46`E;CXCR9m0Aq6JJ(ywWbi9+M zdm)Vjp%z62FEq}GzG4M8exN*zbC_?i?;(behclN|0GV@8=ioGw+X+f2kwmH+%sey_ zQEbS}Z4u@RbsS~3#!E;7419P?N&2DSvL#z(d9h}JfP?+HYAyDmI`|NFRm~xa2qQk| zAML{i^#ZI5I9#kjsAAkxDk0L>kRP9+;zCJ+5HZv>w0=qb!n`+f!`_vlrY8T~4Hx$2 z+ZQZuZCZEF?yk-qC)PEz57#fWzc{}vYZncthJ3DQ&q4r|`LwJ9l6hMHWWnRf-sD2N zZOf2i00_d`z?%I7drt1@*uHWQU1M=1_TKrqjhmjob8p-UIUXSv+Yg^83@@?pHQ~Uf z-r%ZyvOkhWj->3!hE192k=eGmJ9&Q!5a4F4%(sOC{B@QBcl6)jo#upF=%}$5K+EMe z-rRWk?#Z-yl!?ToMSK_!sS*YOMjsG$#RXF>Nku`0r>J{jlC%@?Ej9sp z0JTr5)!eQrO>p|mo#WN?P&C=_OcuG5SB7#FfBdUdCOVLEsxz|aU>)KUMhA3E+cz@oOBA)YyP&~ z&1AQ?Nva3S3F{9MIxD99mhFeOTLKx1+J#pO$co$UoN>!LSb*ApBOerX$u9a70P^>yj$c9Mj^3r%ojAtA=Yd$By*q zj_)8Cmm;cRE>+wqPYSji2IkRBL`IZ2%-BfZ?Mh7pogGYqgurFk;PV`Fg^P!lzV`W}@!mR*ihK<=p;{4t2^+da zSCr)9#s~T?Xja^SxK~sJZAXGqDi?Wf-Tm`q)hAMEA?gDWQv znt$3=c>tIno8-zxV&xO^cK*}0%0A&)85ZyV6e_P-nC1}+tFe!`EB_`i&Dz8=vGTf` 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

CSb6Q^apE!Z}k?_j6I9iVxp{A)t7Xgd7ovLkA% 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

Mei16uWACBv@5C2?(F&`U&OFNh{ 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�fcgtL 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 XZ`peb_k>pRg|kEHr~ls{Wq Date: Thu, 25 Apr 2024 14:35:36 -0400 Subject: [PATCH 096/165] Add can pack voltage to debug screen --- Bolt_Dash/content/Debug1.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index f6f4140..1dcafbf 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -8,6 +8,7 @@ Item { auxVoltage: 0 auxPercent: 0 packSOC: 0 + packVoltage: 0 highCellTemp: 0 lowCellTemp: 0 bmsTemp: 0 @@ -21,6 +22,7 @@ Item { auxVoltage: backend.auxVoltage auxPercent: backend.auxPercent packSOC: backend.packSOC + packVoltage: backend.packVoltage highCellTemp: backend.highCellTemp lowCellTemp: backend.lowCellTemp bmsTemp: backend.bmsTemp From d8b364150108c10a39e580814e6b03a2b44c9ac2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 14:52:00 -0400 Subject: [PATCH 097/165] Fix some small things --- Bolt_Dash/content/CMakeLists.txt | 1 + Bolt_Dash/imports/Backend/backend.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index be4b5b6..90f6244 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -21,6 +21,7 @@ qt6_add_qml_module(content RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf + fonts/MesloLGSDZNerdFontMono-Regular.ttf Pictures/leanAngleBack.png Pictures/motorcycleIcon.png Pictures/battery-twotone-0-svgrepo-com.svg diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 7d0662a..393ad24 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -18,7 +18,7 @@ void Backend::updateVars() { setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage); + setPackVoltage(data.pack_voltage * 10); setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius From f7ed6e7d726714f02e72409cc96d09e91b5e33ad Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 15:01:34 -0400 Subject: [PATCH 098/165] Fix voltage scaling --- Bolt_Dash/imports/Backend/backend.cpp | 2 +- Bolt_Dash/imports/Backend/can.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 393ad24..f80a578 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -18,7 +18,7 @@ void Backend::updateVars() { setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage * 10); + setPackVoltage(data.pack_voltage / 10.0); setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index 5403465..c433270 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -23,7 +23,7 @@ struct our_candata { uint8_t aux_voltage{}; uint8_t aux_percent{}; uint8_t pack_state_of_charge{}; - uint8_t pack_voltage{}; + uint16_t pack_voltage{}; uint16_t high_cell_temp{}; uint16_t low_cell_temp{}; int16_t motor_temperature{}; From d48798e9e2e7111333cb4aa6aeba9cdfe3dd205b Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 15:18:49 -0400 Subject: [PATCH 099/165] Fix low cell voltage data --- Bolt_Dash/imports/Backend/can.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 80b14bd..d4b411c 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -61,7 +61,7 @@ namespace can { break; case can_ids.main_pack_temp: data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); - data.low_cell_temp = frame.data[3] + (frame.data[4] << 8); + data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); break; case can_ids.motor_temp: data.motor_temperature = frame.data[4] + (frame.data[5] << 8); From cff182796c7cfc088005e2db140202120aaf746a Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 27 Apr 2024 13:09:58 -0400 Subject: [PATCH 100/165] Implement new battery display --- Bolt_Dash/content/BatteryReadout.qml | 55 ++++++++++++++++++++------ Bolt_Dash/content/Debug1.qml | 1 + Bolt_Dash/content/Pictures/battery.svg | 2 +- Bolt_Dash/content/Screen01.ui.qml | 13 +++--- 4 files changed, 53 insertions(+), 18 deletions(-) diff --git a/Bolt_Dash/content/BatteryReadout.qml b/Bolt_Dash/content/BatteryReadout.qml index ea7a288..3224a2b 100644 --- a/Bolt_Dash/content/BatteryReadout.qml +++ b/Bolt_Dash/content/BatteryReadout.qml @@ -1,37 +1,41 @@ import QtQuick -import Bolt_Dash +import QtQuick.Shapes Item { readonly property int batteryBorder: 5 readonly property string red: "#e80c0c" readonly property string green: "#09bd0f" property int soc + property double voltage Rectangle { radius: 15 width: 175 height: 125 - color: "white" + color: "black" Image { - x: parent.width/2 - width/2 + x: 15 y: 15 + id: batterySVG source: "Pictures/battery.svg" sourceSize.width: 150 sourceSize.height: 75 + rotation: 270 + transformOrigin: Item.Center Rectangle { x: batteryBorder y: batteryBorder color: "transparent" - width: 150 - batteryBorder * 2 - 16 - height: 75 - batteryBorder * 2 + width: parent.sourceSize.width - batteryBorder * 2 - 16 + height: parent.sourceSize.height - batteryBorder * 2 Rectangle { radius: 8 width: parent.width height: parent.height - color: "white" + color: "black" } Rectangle { @@ -44,13 +48,40 @@ Item { } Text { - x: parent.width/2 - width/2 - y: parent.height - height/2 - 20 - horizontalAlignment: Text.AignHCenter - color: "black" + id: percentLabel + x: batterySVG.x + batterySVG.width - 37 + y: parent.height/2 - 2*height/3 + horizontalAlignment: Text.AlignHLeft + verticalAlignment: Text.AlignBottom + color: "white" text: qsTr("%1\%").arg(soc) - font.pixelSize: 25 + font.pixelSize: 60 + } + + Shape { + ShapePath { + id: coolLine + strokeColor: "white" + strokeWidth: 4 + fillColor: "transparent" + // strokeStyle: ShapePath.DashLine + dashPattern: [ 1, 4 ] + startX: percentLabel.x + startY: percentLabel.y+percentLabel.height - 10 + PathLine { x: coolLine.startX + 140; y: coolLine.startY } + } + } + + // Voltage Text + Text { + id: voltageText + x: percentLabel.x + batteryBorder + y: batterySVG.y + batterySVG.height - height/2 + batteryBorder + text: qsTr("%1V").arg(voltage) + color: "white" + font.pixelSize: 20 + font.italic: true } } -} \ No newline at end of file +} diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index 1dcafbf..c4236de 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -1,5 +1,6 @@ import QtQuick 2.15 import Backend +import QtQuick.Shapes Item { Backend { diff --git a/Bolt_Dash/content/Pictures/battery.svg b/Bolt_Dash/content/Pictures/battery.svg index c733a70..567f0a4 100644 --- a/Bolt_Dash/content/Pictures/battery.svg +++ b/Bolt_Dash/content/Pictures/battery.svg @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 3054f0f..a3b2867 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -50,10 +50,12 @@ Rectangle { BatteryReadout { id: batteryReadout - x: 50 + x: 0 y: 300 - // soc: 50 - soc: backend.packSOC * 100 + soc: 50 + voltage: 541.2 + // soc: backend.packSOC * 100 + // voltage: backend.packVoltage } TemperatureIsland { @@ -81,8 +83,9 @@ Rectangle { BoltLeanAngle { id: leanAngle ang: 39 - x: Constants.width / 2 - y: Constants.height / 2 + x: ((Constants.width - width*scale/1.5) / 2) + y: (Constants.height) / 2 + scale: 0.6 } BikeStatus { From a6e08ad903cf7095d3e2c707826992d78d24df26 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 27 Apr 2024 15:13:56 -0400 Subject: [PATCH 101/165] Reformatted temps, but a third time --- .../CMakeFiles/3.29.2/CMakeCXXCompiler.cmake | 92 ++ .../3.29.2/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16704 bytes Bolt_Dash/CMakeFiles/3.29.2/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 878 ++++++++++++++++++ .../CMakeFiles/3.29.2/CompilerIdCXX/a.out | Bin 0 -> 16816 bytes Bolt_Dash/CMakeFiles/CMakeConfigureLog.yaml | 275 ++++++ Bolt_Dash/CMakeFiles/cmake.check_cache | 1 + Bolt_Dash/CMakeLists.txt | 11 +- Bolt_Dash/backend.cpp | 174 ++++ Bolt_Dash/backend.h | 85 ++ Bolt_Dash/can.cpp | 110 +++ Bolt_Dash/can.h | 50 + Bolt_Dash/content/BoltLeanAngle.qml | 2 +- Bolt_Dash/content/FullSlider.qml | 4 +- Bolt_Dash/content/Pictures/motor_temp.svg | 26 +- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/content/Speedometer.qml | 2 +- Bolt_Dash/content/TempSlider.qml | 13 +- Bolt_Dash/content/TemperatureIsland.qml | 14 +- Bolt_Dash/imports/Bolt_Dash/Constants.qml | 6 +- Bolt_Dash/src/main.cpp | 6 + 21 files changed, 1727 insertions(+), 39 deletions(-) create mode 100644 Bolt_Dash/CMakeFiles/3.29.2/CMakeCXXCompiler.cmake create mode 100755 Bolt_Dash/CMakeFiles/3.29.2/CMakeDetermineCompilerABI_CXX.bin create mode 100644 Bolt_Dash/CMakeFiles/3.29.2/CMakeSystem.cmake create mode 100644 Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/a.out create mode 100644 Bolt_Dash/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 Bolt_Dash/CMakeFiles/cmake.check_cache create mode 100644 Bolt_Dash/backend.cpp create mode 100644 Bolt_Dash/backend.h create mode 100644 Bolt_Dash/can.cpp create mode 100644 Bolt_Dash/can.h diff --git a/Bolt_Dash/CMakeFiles/3.29.2/CMakeCXXCompiler.cmake b/Bolt_Dash/CMakeFiles/3.29.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..ed88bdb --- /dev/null +++ b/Bolt_Dash/CMakeFiles/3.29.2/CMakeCXXCompiler.cmake @@ -0,0 +1,92 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.2.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.40) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/c++/13/x86_64-redhat-linux;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-redhat-linux/13/include;/usr/local/include;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-redhat-linux/13;/usr/lib64;/lib64;/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") diff --git a/Bolt_Dash/CMakeFiles/3.29.2/CMakeDetermineCompilerABI_CXX.bin b/Bolt_Dash/CMakeFiles/3.29.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..2b1817e6b0aac13d4b6f11361eedb001f88bd21a GIT binary patch literal 16704 zcmeHOYitzP6+XM>VOqd81aM0N(-uXb$m3nxb(}>Bc3R25`K}5sDk)akeZ60Zj?xtTaX zD&(a`Q^6K_2w z*#%Du*~rk zz0Ze1wAA+nV-V{&~Z?iOK(q+h|JlV*8RH1UWHF2i0v?e&1=3K6jH_M(?@=Oy=3{Zy6oaN>L z?XqWQo_dOc)K6xvo|?;`D_L>EGd?~(ks2B{d-UEutPkU(YQ?xg3R80ae*dGN;%Se< zG`H#cAw#98FZc{UW2FIajE|oi?!yR#5eOp?Mj(tp7=bVXVFbbmgb||6(Guw|2=j7+Kb8a?K*wqGC@s$$cd1k_e$moLq(I=AgL;G**X<_Aih zzny&RgG0%;?zSW&Zzr$a_d4n&Y~&Jxd}{B~vj?zIP}zPgdH($yXKJ`O4_cn)U(z%K+AdZjqxXE|jhDe7=#4ed=>YWl z(ozHO-l?<6Q87j4f?Rl=}Q*6t8=-pzo{xs`$p8rhaH4+(`{p)_M zKz6moAmz{PM!kQXK_<}rP?8nS|AcSCi>yD%x|8(|)}l6Y;x#T$>ZNfc$tGWc@bB0B z_AIkM{&ZIDlQ`lqQ`zS@pXnc)lKJD!DjXjkPH6jahVcO{-mCZMajhrT(--TF_iOv7 z99v6T9%pnteEck^=^PVfzKVd!|m%I6DdH{UdS{6r$Q@U-0@ z`+R?ort971#j@=b%iTEBx*I)gESQBzba*icn+T9wb~HAI{(?YWt*l9MfD{9}n}K};1I z09D}uOjQ!V{Of_fZ_s4u@xgtOUMpT-yD`Ss9`)Uz&oRyu-ONX>-JK69N3Q20U)Rmb zIn8{UFhbJIXO8nke^ei7>+XlNS=w6RI#r`SWJlNUI`~H|m`&}AV9u+2f6>@s8|r5M zPaqz}yQ0K`-C-}|%iLbUdl;AdvEWHeL|_-JGYkdE{e`}dMPM7q{ZeJ(?yI;_y%0Fo zZ!7-}ko&Lr{~8m`+J8~`Zv~nULn8OfKVdooTh*i(!uQY)$ z`7tD0)gE9U;?3&qQvU7G`5A*fS5-6rgXj;?R$o^l-jk}F?GU^Vo>2G>xN*o3SEX}^ zx5LhQoF(%;#5Kf$<1e^}cn2K~9~Z6NAUTWpHjKaYeana8JLDhT3a#wVF#Lr4qgz0( zE5U!E$`NZ-Ur_#=;VAbX`M!BW`ERb@3!Y@kRppOQzd(QcGvXc5oj~)h8s%NYDGtHo zy`}J75BT359dtmtYVsAH7Kl)SiJ!1W|}&o@15j)1f?=jIW_55|}(drrypa%Lu5 z$U9~9vi1P344=4jIN!Q{vk zm?K}D96X#F26KGk$k5<~d1P#CdUVE|863io?qE8$c>dfI``pB=ENtOC5g|G#A z8*|g;vH)wB6@gw}%z0KCwO8`>yrkSbc7!76>cwC#U(t)DLeVLCiw#h^;^LAm*JcRM zQy29qo!sZG@;vDFVjipTwO8_UUUEuhw~$|Bn3#tLXb}N)byT|NEO?+(N5Z^CfRt@5;g-V7{zFG%&AG=(*V_ z{b)4u7nm>W5$Ru0qsV<#FdA<(^5uE_D*Zr0(bRr*7v!J7tbgOXxwOB^^;elM$G?G# z2)5rsoW>HuUt#_V^XYj_LT!xTCVUw;xQLOf@MZk6pBpOU6?9QTWi-lH(4et~@MU~) zj``AV(c&li>&U0Ei`X)LS!TY*l?B_+Fnk{qwgpBM*aoOP>vTgrNH)8eJ}AB;0h+_9gMqc z{e7^$URE4g3t#j*h_^NH<^8i=_X*<1^m_jn{4bb6=U(cU_cK}lT&06Uq5elAJUNel zMT}g8FY80Ecat}dd;Fx@3t#jtL>u|?9(aTKa-B*M!V`Trz^}h2#e7EaeDUE(ad00~ zRFl RdvpE|2NWIR0Ybop{{o?PXfOZ( literal 0 HcmV?d00001 diff --git a/Bolt_Dash/CMakeFiles/3.29.2/CMakeSystem.cmake b/Bolt_Dash/CMakeFiles/3.29.2/CMakeSystem.cmake new file mode 100644 index 0000000..9c79683 --- /dev/null +++ b/Bolt_Dash/CMakeFiles/3.29.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.8.4-200.fc39.x86_64") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.8.4-200.fc39.x86_64") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.8.4-200.fc39.x86_64") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.8.4-200.fc39.x86_64") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9a5e8f8 --- /dev/null +++ b/Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,878 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/a.out b/Bolt_Dash/CMakeFiles/3.29.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..35b20453572501f66917931a878aed4606feb040 GIT binary patch literal 16816 zcmeHOZ)_Y#6`wojj{{C@CnPnbZ5D_sSHk^a@se(iTDSR`Cq5w%6REkm*<#=!A zz4P7X5=9k4eAtn8-@MNqqL8)>quY^?r%X+e_1BtvA%t&ce$%myT1WRrqO6091gR)94Qz1*y zq>7QZ8ndJe>L1IqQ~^u2E7zwX8Iop5!E&5nx-JqTNF>0q>A=TdZN3lJ!7|J(r$6KZMLVo zt-DJvKiA-qwDcCUV$ba?cFKlUe`qYW@ zi`Sp_zIpbg6W4Eq(FXg0KG6mf+VhY>9m{w_{XrA@-B`mIeQ7mtVVYCfoNE?5EAN>m zs1TqOsaY%S3eXFloqFO43{p3$*>Y|w1*WJ)5l<<6U}$i6-0aXhyP!UZkE|8qCI%tL z$M5y;{{RkqSd3AduIw^o4#$FGsDkARyfQwjG}s3b2qF+fAc#N^fgl1w1cC?z5eOoH z5%{3-(SIk8UaL8mJo>Bpb230!9=$#|fBA57{!huHf4(^~o`^0* zFD5TsSkr8X(&m%E`sbwHxb4NV{kau&@y&=~h~!ha_cpzWCRoL~w-G2UPcELDTrqCk zW{9_>{daCiF@H1p&W&BkcW%`sL+6v1?|98+4{OPTpO5W5^3*T{)1 z>HO+AAfZF&?y3*%|NdPxoPXh3a=y5HA#q!_a$)mdVG6#GxR(53GIXi&4bk}4QYdjd zxv=>U_rNdK!li@8H;x#ZvEt#iT9)AXL?DPj5P={94;Fz?)z`$kIfKLfdt<3wb|#&1@(1B7hQ%06ykoxHI(RR@O;=hGf%DL*{Vag^8zFAKoeDP+zJuP^f>qLAI_k zP?i5sqg!@RENz0>xwjGa)-uMny#rECGbNo*;{hYLRhTmxKC+!)^mc(d35g@%N1Z3ZSC z@Qn~R9^xA^b_fNu=17kut0Yq*ag&Ps)R zUfMT^5gI4_-tr{*Z}s_qo$z`e{*m>RXsk95A?c^a> z@SMEqWzAG3=Q;(jv~%WECO2VaOxw%l3#L_^75M5q<9Lp(M`~M`lW;LNt$f~^Gac8< z&xy&rm32(Jn9a@sr9w0DvR`Ey-(!8vi61x+rx)ylww{`q5$0Eiq8({>GRH5}vGI;; z%l`C__U=iTiQzuE3J31QW+G`SFxfXM%)YM-_wE^t3v*y-@9y3qb8mnDSYq59@7+C= zfOR{LZF!b32lv9-9Xsus#e!oCxqt@(P{^6n@ZLS+2w6M7rB@oho)@ya&@JEUAERP1 zk7;L2c^9)h2NwvzUCo?Hlgo_dP8F>w$GrPBzN&@4H3%6ksA+spoO&zURCWNKtG*E6 z;eoEHB}vdv*9K&wP+*{X{gTiNb6L-t0O{qGoaS8Gg^@8Mboo><KKeP=%6SUX{@Ikt)T6G6rI!JU;&r=YGJ_=252lYxwK25}KOggOgDR_OHTB|8i_ z_CfYfw>&SOo+x^7di<9XKIg-!kEgjzEp-M-rSo&X(v&UdQGOmad^Tr(5Ak{3qXA`= ziLbAWbwj3-KTCXG|G1qEN%D1`VVvJo^7+1g3O_nQ(&T<+=jT5IMgM}i0JndM>R%#0 z_kRt!@VDOr9Oo{~Unc%C@$tTo3ELQgjrlxJNdtza%;))1D>anoM_?io`lw7_2L#djQ_~H1& z#5_KZe*+9nn9u7`ue75zKD$&W=CgbsiYxj2TzZxGe4erw=CQoxE-q_ za0fEzi`&o7QxPI^J#0_mU{%xsfSA7?=F?#)+cTeK17xsnKmRZR-(y4az$(kFkl|y4 zCOyv@((+nV3em@gN|o0N%1VL7JoYQ`NT search starts here: + /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13 + /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux + /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/backward + /usr/lib/gcc/x86_64-redhat-linux/13/include + /usr/local/include + /usr/include + End of search list. + Compiler executable checksum: 1597859996ad5af9a6269f983f6a2e78 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_69b58.dir/' + as -v --64 -o CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o /tmp/cceMdFSa.s + GNU assembler version 2.40 (x86_64-redhat-linux) using BFD version version 2.40-14.fc39 + COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_69b58 + /home/mason/.local/lib/python3.12/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_69b58.dir/link.txt --verbose=1 + /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_69b58 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-redhat-linux + Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,objc,obj-c++,ada,go,d,m2,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-13.2.1-20240316/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none --without-cuda-driver --enable-offload-defaulted --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.2.1 20240316 (Red Hat 13.2.1-7) (GCC) + COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_69b58' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_69b58.' + /usr/libexec/gcc/x86_64-redhat-linux/13/collect2 -plugin /usr/libexec/gcc/x86_64-redhat-linux/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1p67YA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_69b58 /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/13 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../.. -v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/13/crtend.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o + collect2 version 13.2.1 20240316 (Red Hat 13.2.1-7) + /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-redhat-linux/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1p67YA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_69b58 /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/13 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../.. -v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/13/crtend.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o + GNU ld version 2.40-14.fc39 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_69b58' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_69b58.' + gmake[1]: Leaving directory '/home/mason/git/bolt-dash-cpp/Bolt_Dash/CMakeFiles/CMakeScratch/TryCompile-4IIrPn' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:134 (message)" + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13] + add: [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux] + add: [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/backward] + add: [/usr/lib/gcc/x86_64-redhat-linux/13/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13] ==> [/usr/include/c++/13] + collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux] ==> [/usr/include/c++/13/x86_64-redhat-linux] + collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/backward] ==> [/usr/include/c++/13/backward] + collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/13/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/13;/usr/include/c++/13/x86_64-redhat-linux;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-redhat-linux/13/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:170 (message)" + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/mason/git/bolt-dash-cpp/Bolt_Dash/CMakeFiles/CMakeScratch/TryCompile-4IIrPn'] + ignore line: [] + ignore line: [Run Build Command(s): /home/mason/.local/lib/python3.12/site-packages/cmake/data/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_69b58/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_69b58.dir/build.make CMakeFiles/cmTC_69b58.dir/build] + ignore line: [gmake[1]: Entering directory '/home/mason/git/bolt-dash-cpp/Bolt_Dash/CMakeFiles/CMakeScratch/TryCompile-4IIrPn'] + ignore line: [Building CXX object CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -c /home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-redhat-linux] + ignore line: [Configured with: ../configure --enable-bootstrap --enable-languages=c c++ fortran objc obj-c++ ada go d m2 lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-13.2.1-20240316/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none --without-cuda-driver --enable-offload-defaulted --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.2.1 20240316 (Red Hat 13.2.1-7) (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_69b58.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/13/cc1plus -quiet -v -D_GNU_SOURCE /home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_69b58.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/cceMdFSa.s] + ignore line: [GNU C++17 (GCC) version 13.2.1 20240316 (Red Hat 13.2.1-7) (x86_64-redhat-linux)] + ignore line: [ compiled by GNU C version 13.2.1 20240316 (Red Hat 13.2.1-7) GMP version 6.2.1 MPFR version 4.2.0-p12 MPC version 1.3.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/13/../../../../x86_64-redhat-linux/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13] + ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux] + ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/backward] + ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 1597859996ad5af9a6269f983f6a2e78] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_69b58.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o /tmp/cceMdFSa.s] + ignore line: [GNU assembler version 2.40 (x86_64-redhat-linux) using BFD version version 2.40-14.fc39] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_69b58] + ignore line: [/home/mason/.local/lib/python3.12/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cmTC_69b58.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -Wl -v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_69b58] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-redhat-linux] + ignore line: [Configured with: ../configure --enable-bootstrap --enable-languages=c c++ fortran objc obj-c++ ada go d m2 lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-13.2.1-20240316/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none --without-cuda-driver --enable-offload-defaulted --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.2.1 20240316 (Red Hat 13.2.1-7) (GCC) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/13/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/13/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_69b58' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_69b58.'] + link line: [ /usr/libexec/gcc/x86_64-redhat-linux/13/collect2 -plugin /usr/libexec/gcc/x86_64-redhat-linux/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1p67YA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_69b58 /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/13 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../.. -v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/13/crtend.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o] + arg [/usr/libexec/gcc/x86_64-redhat-linux/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-redhat-linux/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc1p67YA.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [cmTC_69b58] ==> ignore + arg [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o] + arg [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o] + arg [/usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o] + arg [-L/usr/lib/gcc/x86_64-redhat-linux/13] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/13] + arg [-L/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] + arg [-L/usr/lib/gcc/x86_64-redhat-linux/13/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-redhat-linux/13/crtend.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/13/crtend.o] + arg [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o] + ignore line: [collect2 version 13.2.1 20240316 (Red Hat 13.2.1-7)] + ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-redhat-linux/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc1p67YA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_69b58 /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/13 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/13/../../.. -v CMakeFiles/cmTC_69b58.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/13/crtend.o /usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o] + linker tool for 'CXX': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crt1.o] ==> [/usr/lib64/crt1.o] + collapse obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] + collapse obj [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/13] ==> [/usr/lib/gcc/x86_64-redhat-linux/13] + collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../../../lib64] ==> [/usr/lib64] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] + collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/13/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib64/crt1.o;/usr/lib64/crti.o;/usr/lib/gcc/x86_64-redhat-linux/13/crtbegin.o;/usr/lib/gcc/x86_64-redhat-linux/13/crtend.o;/usr/lib64/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-redhat-linux/13;/usr/lib64;/lib64;/usr/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:207 (cmake_determine_linker_id)" + - "/home/mason/.local/lib/python3.12/site-packages/cmake/data/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Running the CXX compiler's linker: "/usr/bin/ld" "-v" + GNU ld version 2.40-14.fc39 +... diff --git a/Bolt_Dash/CMakeFiles/cmake.check_cache b/Bolt_Dash/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/Bolt_Dash/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index b522e7a..85a0608 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -13,7 +13,10 @@ if (Qt6_VERSION VERSION_GREATER_EQUAL 6.3) qt_standard_project_setup() endif() -qt_add_executable(Bolt_DashApp src/main.cpp) +qt_add_executable(Bolt_DashApp src/main.cpp + backend.h backend.cpp + can.cpp + can.h) qt_add_resources(Bolt_DashApp "configuration" PREFIX "/" @@ -29,9 +32,9 @@ target_link_libraries(Bolt_DashApp PRIVATE pigpio ) -if (BUILD_QDS_COMPONENTS) - include(${CMAKE_CURRENT_SOURCE_DIR}/qmlcomponents) -endif() +# if (BUILD_QDS_COMPONENTS) +# include(${CMAKE_CURRENT_SOURCE_DIR}/qmlcomponents) +# endif() include(${CMAKE_CURRENT_SOURCE_DIR}/qmlmodules) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp new file mode 100644 index 0000000..4c3ccfa --- /dev/null +++ b/Bolt_Dash/backend.cpp @@ -0,0 +1,174 @@ +#include "backend.h" +#include "can.h" +#include + +// Create Backend class which can be included in QML +Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, + m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{} { + std::thread update_vars(&Backend::updateVars, this); + update_vars.detach(); +} + +// Calls the set functions with the values from data +void Backend::updateVars() { + while (true) { + m.lock(); + // The only scaling here is to put the value into the right unit + setMotorTemp(data.motor_temperature / 10.0); // celsius + setAuxVoltage(data.aux_voltage / 10.0); // volts + setAuxPercent(data.aux_percent / 100.0); // percent + setPackSOC(data.pack_state_of_charge / 200.0); // percent + setPackVoltage(data.pack_voltage / 10.0); + setHighCellTemp(data.high_cell_temp); // celsius + setLowCellTemp(data.low_cell_temp); // celsius + setBmsTemp(data.bms_temperature); // celsius + setMotorSpeed(data.motor_speed); // rpm + setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph + setMcTemp(data.mc_temperature / 10.0); // celsius + setBmsFault(data.bms_error); + m.unlock(); + // Debug Message + // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(1)); + } +} + +// Functions to get variable values +// { // Brackets for collapsability +double Backend::motorTemp() const { + return m_motorTemp; +} + +double Backend::auxVoltage() const { + return m_auxVoltage; +} + +double Backend::auxPercent() const { + return m_auxPercent; +} + +double Backend::packSOC() const { + return m_packSOC; +} + +double Backend::packVoltage() const { + return m_packVoltage; +} + +double Backend::highCellTemp() const { + return m_highCellTemp; +} + +double Backend::lowCellTemp() const { + return m_lowCellTemp; +} + +double Backend::bmsTemp() const { + return m_bmsTemp; +} + +double Backend::motorSpeed() const { + return m_motorSpeed; +} + +double Backend::bikeSpeed() const { + return m_bikeSpeed; +} + +double Backend::mcTemp() const { + return m_mcTemp; +} + +bool Backend::bmsFault() const { + return m_bmsFault; +} +// } + +// Setter Functions +// { // Brackets for collapsability +void Backend::setMotorTemp(const double temp) { + if (m_motorTemp != temp) { + m_motorTemp = temp; + emit motorTempChanged(); + } +} + +void Backend::setAuxVoltage(const double cap) { + if (m_auxVoltage != cap) { + m_auxVoltage = cap; + emit auxVoltageChanged(); + } +} + +void Backend::setAuxPercent(const double cap) { + if (m_auxPercent != cap) { + m_auxPercent = cap; + emit auxPercentChanged(); + } +} + +void Backend::setPackSOC(const double soc) { + if (m_packSOC != soc) { + m_packSOC = soc; + emit packSOCChanged(); + } +} + +void Backend::setPackVoltage(const double voltage) { + if (m_packVoltage != voltage) { + m_packVoltage = voltage; + emit packVoltageChanged(); + } +} + +void Backend::setHighCellTemp(const double temp) { + if (m_highCellTemp != temp) { + m_highCellTemp = temp; + emit highCellTempChanged(); + } +} + +void Backend::setLowCellTemp(const double temp) { + if (m_lowCellTemp != temp) { + m_lowCellTemp = temp; + emit lowCellTempChanged(); + } +} + +void Backend::setBmsTemp(const double temp) { + if (m_bmsTemp != temp) { + m_bmsTemp = temp; + emit bmsTempChanged(); + } +} + +void Backend::setMotorSpeed(const double speed) { + if (m_motorSpeed != speed) { + m_motorSpeed = speed; + emit motorSpeedChanged(); + } +} + +void Backend::setBikeSpeed(const double speed) { + if (m_bikeSpeed != speed) { + m_bikeSpeed = speed; + emit bikeSpeedChanged(); + } +} + +void Backend::setMcTemp(const double temp) { + if (m_mcTemp != temp) { + m_mcTemp = temp; + emit mcTempChanged(); + } +} + +void Backend::setBmsFault(const bool fault) { + if (m_bmsFault != fault) { + m_bmsFault = fault; + emit bmsFaultChanged(); + } +} +// } + +std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h new file mode 100644 index 0000000..5722642 --- /dev/null +++ b/Bolt_Dash/backend.h @@ -0,0 +1,85 @@ +#ifndef BACKEND_H +#define BACKEND_H + +#include +#include +#include +#include +#include +#include + +class Backend : public QObject { + Q_OBJECT + QML_ELEMENT + Q_PROPERTY(double motorTemp READ motorTemp WRITE setMotorTemp NOTIFY motorTempChanged); + Q_PROPERTY(double auxVoltage READ auxVoltage WRITE setAuxVoltage NOTIFY auxVoltageChanged); + Q_PROPERTY(double auxPercent READ auxPercent WRITE setAuxPercent NOTIFY auxPercentChanged); + Q_PROPERTY(double packSOC READ packSOC WRITE setPackSOC NOTIFY packSOCChanged); + Q_PROPERTY(double packVoltage READ packVoltage WRITE setPackVoltage NOTIFY packVoltageChanged); + Q_PROPERTY(double highCellTemp READ highCellTemp WRITE setHighCellTemp NOTIFY highCellTempChanged); + Q_PROPERTY(double lowCellTemp READ lowCellTemp WRITE setLowCellTemp NOTIFY lowCellTempChanged); + Q_PROPERTY(double bmsTemp READ bmsTemp WRITE setBmsTemp NOTIFY bmsTempChanged); + Q_PROPERTY(double motorSpeed READ motorSpeed WRITE setMotorSpeed NOTIFY motorSpeedChanged); + Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); + Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); + Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); + +public: + explicit Backend(QObject *parent = nullptr); + double motorTemp() const; + double auxVoltage() const; + double auxPercent() const; + double packSOC() const; + double packVoltage() const; + double highCellTemp() const; + double lowCellTemp() const; + double bmsTemp() const; + double motorSpeed() const; + double bikeSpeed() const; + double mcTemp() const; + bool bmsFault() const; + + void setMotorTemp(const double temp); + void setAuxVoltage(const double cap); + void setAuxPercent(const double cap); + void setPackSOC(const double soc); + void setPackVoltage(const double voltage); + void setHighCellTemp(const double temp); + void setLowCellTemp(const double temp); + void setBmsTemp(const double temp); + void setMotorSpeed(const double speed); + void setBikeSpeed(const double speed); + void setMcTemp(const double temp); + void setBmsFault(const bool fault); + +signals: + void motorTempChanged(); + void auxVoltageChanged(); + void auxPercentChanged(); + void packSOCChanged(); + void packVoltageChanged(); + void highCellTempChanged(); + void lowCellTempChanged(); + void bmsTempChanged(); + void motorSpeedChanged(); + void bikeSpeedChanged(); + void mcTempChanged(); + void bmsFaultChanged(); + +private: + void updateVars(); + double m_motorTemp; + double m_auxVoltage; + double m_auxPercent; + double m_packSOC; + double m_packVoltage; + double m_highCellTemp; + double m_lowCellTemp; + double m_bmsTemp; + double m_motorSpeed; + double m_bikeSpeed; + double m_mcTemp; + bool m_bmsFault; +}; + +#endif // BACKEND_H diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp new file mode 100644 index 0000000..e03bc60 --- /dev/null +++ b/Bolt_Dash/can.cpp @@ -0,0 +1,110 @@ +#include "can.h" + +#include +#include + +using namespace std::chrono_literals; + +std::mutex m; +our_candata data{}; + +namespace can { +int run() { + // Where the data will be stored to be send to the front end + int s, i; + int nbytes; + struct sockaddr_can addr; + struct ifreq ifr; + struct can_frame frame; + int8_t *unknown_data = nullptr; + + printf("CAN Sockets Receive Demo\r\n"); + + // Create a new socket of type CAN using data CAN_RAW + if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) { + perror("Socket"); + return 1; + } + + // Setting the name of the physical can interface (ip a) + strcpy(ifr.ifr_name, "can0"); + // Converts if name to actual interface index + ioctl(s, SIOCGIFINDEX, &ifr); + + // Reserve memory for CAN frames + memset(&addr, 0, sizeof(addr)); + addr.can_family = AF_CAN; // Use CAN sockets specifically + addr.can_ifindex = ifr.ifr_ifindex; + + // Connects to the socket and it locks + if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { + perror("Bind"); + return 1; + } + + while (true) { + // Actually reads from the socket + nbytes = read(s, &frame, sizeof(struct can_frame)); + + // Make sure it exists + if (nbytes < 0) { + perror("Read"); + return 1; + } + m.lock(); + switch (frame.can_id) { + case can_ids.aux_battery: + data.aux_voltage = frame.data[0] + (frame.data[1] << 8); + data.aux_percent = data.aux_voltage / 2.5; + break; + case can_ids.info: + data.pack_state_of_charge = frame.data[4]; + data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.pack_voltage = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.main_pack_temp: + data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); + data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.motor_temp: + data.motor_temperature = frame.data[4] + (frame.data[5] << 8); + break; + case can_ids.bms_temp: + data.bms_temperature = frame.data[4] + (frame.data[5] << 8); + break; + case can_ids.rpm: + data.motor_speed = frame.data[2] + (frame.data[3] << 8); + data.bike_speed = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.speed: + data.bike_speed = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.mc_temp: + data.mc_temperature = frame.data[0] + (frame.data[1] << 8); + default: + unknown_data = new int8_t[frame.can_dlc]; + for (int i{}; i < frame.can_dlc; i++) { + unknown_data[i] = frame.data[i]; + } + } + m.unlock(); + + // Print the can ID and len of data + // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); + + // Print the data in the CAN message + // for (i = 0; i < frame.can_dlc; i++) + // printf("%02X ", frame.data[i]); + + // printf("\r\n"); + } + + // Close socket + if (close(s) < 0) { + perror("Close"); + return 1; + } + + return 0; +} +} diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h new file mode 100644 index 0000000..d3dd520 --- /dev/null +++ b/Bolt_Dash/can.h @@ -0,0 +1,50 @@ +#ifndef CAN_H +#define CAN_H + +#include +#include + +#include +#include +#include + +#include +#include + +#define BMS_FAULT_MASK 0b0010000 + +struct our_candata { + uint8_t aux_voltage{}; + uint8_t aux_percent{}; + uint8_t pack_state_of_charge{}; + uint16_t pack_voltage{}; + uint16_t high_cell_temp{}; + uint16_t low_cell_temp{}; + int16_t motor_temperature{}; + uint16_t bms_temperature{}; + uint16_t mc_temperature{}; + int16_t motor_speed{}; + int16_t bike_speed{}; + uint8_t bms_error{}; +}; + +// ID's for each CAN thing +constexpr struct { + canid_t aux_battery{0x700}; + canid_t info{0x6B0}; + canid_t main_pack_temp{0x6B4}; + canid_t motor_temp{0xA2}; + canid_t bms_temp{0x6B1}; + canid_t mc_temp{0xA1}; + canid_t rpm{0xA5}; + canid_t speed{0x00}; +} can_ids; + +extern std::mutex m; +extern our_candata data; + +namespace can { +int run(); +} + +#endif // CAN_H diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index f36a37a..99ba38e 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -1,6 +1,6 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 -import QtQuick.Studio.Components +// import QtQuick.Studio.Components import QtCharts import QtQuick.Shapes diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml index b3c5a83..6783c7b 100644 --- a/Bolt_Dash/content/FullSlider.qml +++ b/Bolt_Dash/content/FullSlider.qml @@ -3,7 +3,7 @@ import QtQuick Item { property string label: "" property string imageUrl: "" - property color textColor: "black" + property color textColor: "white" property double fullness: 0.5 property int value: 0 property int imageWidth: 50 @@ -35,7 +35,7 @@ Item { Image { id: packTempLabel x: packTempSlider.x - width/2 + packTempSlider.width/2 - y: (250 - (valueLabel.y + valueLabel.height)) / 2 + (valueLabel.y + valueLabel.height) - height/2 + y: packTempSlider.height*packTempSlider.scale - height - padding source: imageUrl width: imageWidth height: imageHeight diff --git a/Bolt_Dash/content/Pictures/motor_temp.svg b/Bolt_Dash/content/Pictures/motor_temp.svg index 73510f0..4515bb9 100644 --- a/Bolt_Dash/content/Pictures/motor_temp.svg +++ b/Bolt_Dash/content/Pictures/motor_temp.svg @@ -1,14 +1,12 @@ - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index a3b2867..d9d3a16 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -84,7 +84,7 @@ Rectangle { id: leanAngle ang: 39 x: ((Constants.width - width*scale/1.5) / 2) - y: (Constants.height) / 2 + y: (Constants.height - height/2*scale) / 2 scale: 0.6 } diff --git a/Bolt_Dash/content/Speedometer.qml b/Bolt_Dash/content/Speedometer.qml index 601937c..c71615d 100644 --- a/Bolt_Dash/content/Speedometer.qml +++ b/Bolt_Dash/content/Speedometer.qml @@ -8,7 +8,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Shapes 2.15 import Bolt_Dash 1.0 -import QtQuick.Studio.Components +// import QtQuick.Components Item { diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index bd5901d..be83c96 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -2,8 +2,8 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 Item { - width: 60 - height: 300 + width: 40 + height: 275 readonly property string red: "#e80c0c" readonly property string green: "#09bd0f" property double fullness: 0.5; @@ -23,8 +23,9 @@ Item { y: 0 width: parent.width height: parent.height - bubble.height - color: "white"; + color: "black"; border.width: 3 + border.color: "white" } Rectangle { @@ -35,7 +36,7 @@ Item { width: parent.width height: (enclosing.height*fullness) // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; - color: fullness > 0.9 ? red : "black"; + color: fullness > 0.9 ? red : "white"; border.width: 3 } @@ -46,7 +47,7 @@ Item { height: 100 width: 100 radius: width/2 - color: fullness > 0.9 ? red : "black" + color: fullness > 0.9 ? red : "white" border.width: 3 } @@ -54,7 +55,7 @@ Item { Rectangle { id: bubblebg x: enclosing.x - y: bubble.y - enclosing.radius/2 + y: bubble.y - enclosing.radius/2 - 1 // radius: level.radius height: 50 width: enclosing.width diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 0325ed0..ae93cf0 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -18,7 +18,7 @@ Item { radius: 15 width: parent.width height: parent.height - color: "white" + color: "black" FullSlider { id: packSlider @@ -27,8 +27,8 @@ Item { fullness: packTemp / 70 value: packTemp imageUrl: "Pictures/battery_temp.svg" - imageWidth: 45 - imageHeight: 40 + imageWidth: 35 + imageHeight: 30 } FullSlider { @@ -38,8 +38,8 @@ Item { fullness: mcTemp / 100 value: mcTemp imageUrl: "Pictures/controller_temp.svg" - imageWidth: 35 - imageHeight: 35 + imageWidth: 30 + imageHeight: 30 } FullSlider { @@ -49,8 +49,8 @@ Item { fullness: motorTemp / 115 value: motorTemp imageUrl: "Pictures/motor_temp.svg" - imageWidth: 50 - imageHeight: 60 + imageWidth: 30 + imageHeight: 25 } // Redline diff --git a/Bolt_Dash/imports/Bolt_Dash/Constants.qml b/Bolt_Dash/imports/Bolt_Dash/Constants.qml index ac3e78a..6c20441 100644 --- a/Bolt_Dash/imports/Bolt_Dash/Constants.qml +++ b/Bolt_Dash/imports/Bolt_Dash/Constants.qml @@ -1,6 +1,6 @@ pragma Singleton import QtQuick 6.2 -import QtQuick.Studio.Application +// import QtQuick.Studio.Application QtObject { readonly property int width: 800 @@ -23,7 +23,7 @@ QtObject { readonly property color errColor: "#ff0000" - property StudioApplication application: StudioApplication { + /*property StudioApplication application: StudioApplication { fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) - } + }*/ } diff --git a/Bolt_Dash/src/main.cpp b/Bolt_Dash/src/main.cpp index 3736091..903be7e 100644 --- a/Bolt_Dash/src/main.cpp +++ b/Bolt_Dash/src/main.cpp @@ -3,11 +3,13 @@ #include #include +#include #include "app_environment.h" #include "import_qml_components_plugins.h" #include "import_qml_plugins.h" #include "qfont.h" +#include "backend.h" int main(int argc, char *argv[]) { set_qt_environment(); @@ -17,6 +19,10 @@ int main(int argc, char *argv[]) { font.setFamily("MesloLGSDZ Nerd Font Mono"); app.setFont(font); QQmlApplicationEngine engine; + + Backend *backend = new Backend(); + engine.rootContext()->setContextProperty("backend", backend); + const QUrl url(u"qrc:Main/main.qml"_qs); QObject::connect( &engine, &QQmlApplicationEngine::objectCreated, &app, From e075ea3abd685e11177f8b7833342037030f6dd1 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 27 Apr 2024 15:55:31 -0400 Subject: [PATCH 102/165] Change bike status to meet all of Colton's deepest desires --- Bolt_Dash/content/BatteryReadout.qml | 2 +- Bolt_Dash/content/BikeStatus.qml | 47 +++++++++++++++++++++++++--- Bolt_Dash/content/Screen01.ui.qml | 8 ++--- 3 files changed, 47 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/BatteryReadout.qml b/Bolt_Dash/content/BatteryReadout.qml index 3224a2b..13b8910 100644 --- a/Bolt_Dash/content/BatteryReadout.qml +++ b/Bolt_Dash/content/BatteryReadout.qml @@ -4,7 +4,7 @@ import QtQuick.Shapes Item { readonly property int batteryBorder: 5 readonly property string red: "#e80c0c" - readonly property string green: "#09bd0f" + readonly property string green: "#54c45e" property int soc property double voltage diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index e16a80e..2d27563 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -1,25 +1,29 @@ import QtQuick import QtQuick.Controls import QtQuick.Shapes +import QtQuick.Layouts Item { readonly property color staticBG: "#5F5F5F" - readonly property string green: "#09bd0f" + readonly property string green: "#54c45e" + property list texts: ["STDBY", "ACC", "PREP", "IDLE", "DRIVE"] property int status: BikeStatus.Status.STANDBY - width: 350 - height: 90 + width: 800 + height: 40 + id: root enum Status { STANDBY, ACCESSORY, CHECKING, - FAULT, READY, - DRIVE + DRIVE, + FAULT } Rectangle { + visible: false id: rect anchors.centerIn: parent width: parent.width @@ -62,4 +66,37 @@ Item { font.pixelSize: 0.75*parent.height } } + + Rectangle { + height: parent.height + width: parent.width + color: "white" + + GridLayout { + id: grid + columns: 5 + x: 0 + y: columnSpacing + height: parent.height + width: parent.width + columnSpacing: 2 + + Repeater { + model: 5 + Rectangle { + required property int index + color: root.status == index ? (root.status == BikeStatus.Status.DRIVE ? root.green : "red") : "black" + Layout.preferredWidth: parent.width / parent.columns - parent.columnSpacing + height: parent.height + Text { + anchors.centerIn: parent + text: root.texts[index] + color: root.status == index ? "black": "white" + font.bold: true + font.pixelSize: 25 + } + } + } + } + } } \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index d9d3a16..5c98392 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -25,7 +25,7 @@ Rectangle { readonly property int mphLabelTextSize: 150 readonly property int mphLabelX: 50 readonly property int mphLabelY: 80 - readonly property int bikeStatusX: 400 + readonly property int bikeStatusX: 0 readonly property int verticalSpacing: 10 Speedometer { @@ -61,7 +61,7 @@ Rectangle { TemperatureIsland { id: temps x: 550 - y: bikeStatus.y + bikeStatus.height + verticalSpacing + y: speedometer.y + speedometer.height + verticalSpacing packTemp: backend.highCellTemp mcTemp: backend.mcTemp motorTemp: backend.motorTemp @@ -91,7 +91,7 @@ Rectangle { BikeStatus { id: bikeStatus x: bikeStatusX - y: speedometer.y + speedometer.height + verticalSpacing - status: BikeStatus.Status.CHECKING + y: Constants.height - height + status: BikeStatus.Status.DRIVE } } From b5d24f21e503f8513886069581d778922387bf24 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 27 Apr 2024 16:21:24 -0400 Subject: [PATCH 103/165] Change temp value formatting --- Bolt_Dash/content/FullSlider.qml | 19 +++++++++++++++--- Bolt_Dash/content/Screen01.ui.qml | 26 ++++++++++++------------- Bolt_Dash/content/TempSlider.qml | 1 + Bolt_Dash/content/TemperatureIsland.qml | 14 +++++++------ 4 files changed, 38 insertions(+), 22 deletions(-) diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml index 6783c7b..7e793aa 100644 --- a/Bolt_Dash/content/FullSlider.qml +++ b/Bolt_Dash/content/FullSlider.qml @@ -9,6 +9,8 @@ Item { property int imageWidth: 50 property int imageHeight: 50 readonly property int padding: 5 + readonly property int valueLabelTextSize: 30 + height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height width: packTempSlider.width*packTempSlider.scale + padding @@ -24,14 +26,25 @@ Item { // current temp label Text { id: valueLabel - x: packTempSlider.x - width/2 + packTempSlider.width/2 - y: packTempSlider.height*packTempSlider.scale + height/2 + padding - text: qsTr("%1°C").arg(value) + x: packTempSlider.width + y: height/2 + text: qsTr("%1").arg(value) font.bold: true font.pixelSize: valueLabelTextSize color: textColor } + Text { + id: unitLabel + x: valueLabel.x + y: valueLabel.y + valueLabel.height + text: qsTr("°C") + font.bold: true + color: textColor + font.pixelSize: 20 + + } + Image { id: packTempLabel x: packTempSlider.x - width/2 + packTempSlider.width/2 diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 5c98392..63e892c 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -27,6 +27,7 @@ Rectangle { readonly property int mphLabelY: 80 readonly property int bikeStatusX: 0 readonly property int verticalSpacing: 10 + readonly property int temperatureIslandY: 290 Speedometer { id: speedometer @@ -52,22 +53,22 @@ Rectangle { id: batteryReadout x: 0 y: 300 - soc: 50 - voltage: 541.2 - // soc: backend.packSOC * 100 - // voltage: backend.packVoltage + // soc: 50 + // voltage: 541.2 + soc: backend.packSOC * 100 + voltage: backend.packVoltage } TemperatureIsland { id: temps - x: 550 - y: speedometer.y + speedometer.height + verticalSpacing - packTemp: backend.highCellTemp - mcTemp: backend.mcTemp - motorTemp: backend.motorTemp - // packTemp: -10 - // mcTemp: 69 - // motorTemp: 0.9*115 + x: 500 + y: temperatureIslandY + // packTemp: backend.highCellTemp + // mcTemp: backend.mcTemp + // motorTemp: backend.motorTemp + packTemp: 0 + mcTemp: 100 + motorTemp: 0.9*115 } Text { id: speedoLabel @@ -77,7 +78,6 @@ Rectangle { color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft -// font.family: "Nasalization" } BoltLeanAngle { diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index be83c96..4ba3761 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -38,6 +38,7 @@ Item { // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; color: fullness > 0.9 ? red : "white"; border.width: 3 + border.color: "white" } Rectangle { diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index ae93cf0..9d8858c 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -1,7 +1,7 @@ import QtQuick Item { - width: 200 + width: 500 height: 250 property int packTemp: 0 @@ -9,20 +9,22 @@ Item { property int motorTemp: 0 readonly property int padding: 10 readonly property int horizSpacing: 35 - readonly property int sliderWidth: 30 + readonly property int sliderWidth: 55 Rectangle { x: 0 y: 0 - radius: 15 + radius: 0 width: parent.width height: parent.height - color: "black" + color: "transparent" + border.width: 2 + border.color: "white" FullSlider { id: packSlider - x: 5 + x: 3*padding label: "PACK" fullness: packTemp / 70 value: packTemp @@ -58,7 +60,7 @@ Item { x: 15 y: 13 width: parent.width - 30 - height: 6 + height: 2 color: "red" } } From 0bee25ef69f5ed2767810d566bc85e8487a805bf Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 03:01:40 -0400 Subject: [PATCH 104/165] OMG it actually looks good --- Bolt_Dash/CMakeLists.txt | 3 +- Bolt_Dash/FaultMotorStatus.qml | 5 + Bolt_Dash/content/CMakeLists.txt | 3 + Bolt_Dash/content/FaultMotorStatus.qml | 206 ++++++++++++++++++ .../Pictures/Virginia_Tech_Hokies_logo.svg | 7 + Bolt_Dash/content/Screen01.ui.qml | 27 ++- Bolt_Dash/content/SpeedometerDecorations.qml | 65 ++++++ 7 files changed, 307 insertions(+), 9 deletions(-) create mode 100644 Bolt_Dash/FaultMotorStatus.qml create mode 100644 Bolt_Dash/content/FaultMotorStatus.qml create mode 100644 Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg create mode 100644 Bolt_Dash/content/SpeedometerDecorations.qml diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 85a0608..7238c86 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -16,7 +16,8 @@ endif() qt_add_executable(Bolt_DashApp src/main.cpp backend.h backend.cpp can.cpp - can.h) + can.h +) qt_add_resources(Bolt_DashApp "configuration" PREFIX "/" diff --git a/Bolt_Dash/FaultMotorStatus.qml b/Bolt_Dash/FaultMotorStatus.qml new file mode 100644 index 0000000..68c2108 --- /dev/null +++ b/Bolt_Dash/FaultMotorStatus.qml @@ -0,0 +1,5 @@ +import QtQuick 2.15 + +Item { + +} diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 90f6244..2995a2a 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -29,5 +29,8 @@ qt6_add_qml_module(content Pictures/battery_temp.svg Pictures/controller_temp.svg Pictures/motor_temp.svg + Pictures/Virginia_Tech_Hokies_logo.svg QML_FILES DebugItem1.ui.qml + QML_FILES FaultMotorStatus.qml + QML_FILES SpeedometerDecorations.qml ) diff --git a/Bolt_Dash/content/FaultMotorStatus.qml b/Bolt_Dash/content/FaultMotorStatus.qml new file mode 100644 index 0000000..6698676 --- /dev/null +++ b/Bolt_Dash/content/FaultMotorStatus.qml @@ -0,0 +1,206 @@ +import QtQuick 2.15 +import QtQuick.Shapes + +Item { + width: 400 + height: 150 + property bool motorOn: false + property bool bmsFault: false + property bool mcFault: false + readonly property string red: "#e80c0c" + readonly property string green: "#54c45e" + readonly property int padding: 10 + readonly property color good: green + readonly property color bad: red + readonly property color off: green//"black" + id: root + + // Motor On + Rectangle { + id: motorOnIndicator + x: width + y: 0 + width: 100 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 15 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: motorOn ? good : off + } + } + + // Motor On Indicator text + Rectangle { + x: 0 + y: motorOnIndicator.y + motorOnIndicator.height + id: motorOnIndicatorRect + width: motorOnIndicatorText.width + padding*2 + height: motorOnIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: motorOnIndicatorText + anchors.centerIn: parent + text: "Motor On" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: motorOnIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: motorOnIndicatorRect.x + motorOnIndicatorRect.width/2 + startY: motorOnIndicatorRect.y + PathCurve { + x: motorOnIndicatorConnector.startX+10; y: motorOnIndicator.y+4*motorOnIndicator.height/5 + } + PathCurve { + x: motorOnIndicator.x+5; y: motorOnIndicator.y+2*motorOnIndicator.height/3 + } + } + } + + // BMS Fault + Rectangle { + id: bmsFaultIndicator + x: motorOnIndicator.x + motorOnIndicator.width + padding + y: 7 + width: 50 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 12 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: bmsFault ? bad : off + } + } + + // BMS Fault Indicator text + Rectangle { + x: bmsFaultIndicator.x + bmsFaultIndicator.width + padding + y: bmsFaultIndicator.y - 2*bmsFaultIndicator.height/5 + id: bmsFaultIndicatorRect + width: bmsFaultIndicatorText.width + padding*2 + height: bmsFaultIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: bmsFaultIndicatorText + anchors.centerIn: parent + text: "BMS Fault" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: bmsFaultIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: bmsFaultIndicatorRect.x + bmsFaultIndicatorRect.width/2 + startY: bmsFaultIndicatorRect.y + bmsFaultIndicatorRect.height + PathCurve { + x: bmsFaultIndicatorConnector.startX-10; y: bmsFaultIndicator.y+3*bmsFaultIndicator.height/5 + } + PathCurve { + x: bmsFaultIndicator.x+bmsFaultIndicator.width; y: bmsFaultIndicator.y+2*bmsFaultIndicator.height/3 + } + } + } + + // MC Fault + Rectangle { + id: mcFaultIndicator + x: bmsFaultIndicator.x + y: bmsFaultIndicator.y + bmsFaultIndicator.height + padding + width: 75 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 13 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: mcFault ? bad : off + } + } + + // MC Fault Indicator Text + Rectangle { + x: bmsFaultIndicatorRect.x + padding + y: mcFaultIndicator.y - 1*mcFaultIndicator.height/5 + id: mcFaultIndicatorRect + width: mcFaultIndicatorText.width + padding*2 + height: mcFaultIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: mcFaultIndicatorText + anchors.centerIn: parent + text: "MC Fault" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: mcFaultIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: mcFaultIndicatorRect.x + mcFaultIndicatorRect.width/2 + startY: mcFaultIndicatorRect.y + mcFaultIndicatorRect.height + PathCurve { + x: mcFaultIndicatorConnector.startX-10; y: mcFaultIndicator.y+3*mcFaultIndicator.height/5 + } + PathCurve { + x: mcFaultIndicator.x + mcFaultIndicator.width; y: mcFaultIndicator.y+2*mcFaultIndicator.height/3 + } + } + } +} diff --git a/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg b/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg new file mode 100644 index 0000000..024f390 --- /dev/null +++ b/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 63e892c..2b6d41d 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -36,6 +36,11 @@ Rectangle { y: 25 } + SpeedometerDecorations { + x: speedometer.x + y: speedometer.y + } + Backend { id: backend motorTemp: 0 @@ -74,19 +79,20 @@ Rectangle { id: speedoLabel x: mphLabelX y: speedometer.y + speedometer.height/2 + 7 +verticalSpacing - text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) + text: qsTr("125").arg(Math.round(backend.bikeSpeed)) color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft } - BoltLeanAngle { - id: leanAngle - ang: 39 - x: ((Constants.width - width*scale/1.5) / 2) - y: (Constants.height - height/2*scale) / 2 - scale: 0.6 - } + // :( + // BoltLeanAngle { + // id: leanAngle + // ang: 39 + // x: ((Constants.width - width*scale/1.5) / 2) + // y: (Constants.height - height/2*scale) / 2 + // scale: 0.6 + // } BikeStatus { id: bikeStatus @@ -94,4 +100,9 @@ Rectangle { y: Constants.height - height status: BikeStatus.Status.DRIVE } + + FaultMotorStatus { + x: Constants.width - width + y: speedometer.y + speedometer.height + 40 + } } diff --git a/Bolt_Dash/content/SpeedometerDecorations.qml b/Bolt_Dash/content/SpeedometerDecorations.qml new file mode 100644 index 0000000..e71241d --- /dev/null +++ b/Bolt_Dash/content/SpeedometerDecorations.qml @@ -0,0 +1,65 @@ +import QtQuick 2.15 +import QtQuick.Shapes + +Item { + id: root + readonly property int leftLineWidth: 100 + readonly property int rightLineWidth: 125 + + Shape { + id: leftLine + ShapePath { + id: leftLinePath + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: 0 + startY: 225 + PathLine { x: leftLinePath.startX + root.leftLineWidth; y: leftLinePath.startY } + } + } + + Text { + id: leftText + text: "mph" + color: "white" + font.italic: true + font.pixelSize: 20 + x: leftLinePath.startX + leftLine.width + root.leftLineWidth + 10 + y: leftLinePath.startY - 15 + } + + Shape { + id: rightLine + ShapePath { + id: rightLinePath + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: leftText.x + leftText.width + 10 + startY: 225 + PathLine { x: rightLinePath.startX + root.rightLineWidth; y: rightLinePath.startY } + PathLine { x: rightLinePath.startX + root.rightLineWidth + 75; y: 85 } + PathLine { x: 1000; y: 85 } + } + } + + Rectangle { + x: rightLinePath.startX + root.rightLineWidth + y: 120 + color: "black" + radius: 10 + border.width: 2 + border.color: "white" + width: 85 + height: 60 + + Image { + id: packTempLabel + anchors.centerIn: parent + source: "Pictures/Virginia_Tech_Hokies_logo.svg" + width: 70 + height: 35 + } + } +} From 08b1c112685612fa635b97c0f51c226c1a87039e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 03:14:44 -0400 Subject: [PATCH 105/165] OK guys it migh talmost be done --- Bolt_Dash/backend.cpp | 28 +++- Bolt_Dash/backend.h | 10 ++ Bolt_Dash/can.cpp | 181 +++++++++++++------------ Bolt_Dash/can.h | 6 +- Bolt_Dash/content/FaultMotorStatus.qml | 2 +- Bolt_Dash/content/Screen01.ui.qml | 31 ++--- 6 files changed, 147 insertions(+), 111 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 4c3ccfa..3dafb1b 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -4,7 +4,8 @@ // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, - m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{} { + m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, + m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); } @@ -26,6 +27,8 @@ void Backend::updateVars() { setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph setMcTemp(data.mc_temperature / 10.0); // celsius setBmsFault(data.bms_error); + setMotorOn(data.motor_on); + setMcFault(data.mc_fault); m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; @@ -82,6 +85,15 @@ double Backend::mcTemp() const { bool Backend::bmsFault() const { return m_bmsFault; } + +bool Backend::mcFault() const { + return m_mcFault; +} + +bool Backend::motorOn() const { + return m_motorOn; +} + // } // Setter Functions @@ -169,6 +181,20 @@ void Backend::setBmsFault(const bool fault) { emit bmsFaultChanged(); } } + +void Backend::setMcFault(const bool fault) { + if (m_mcFault != fault) { + m_mcFault = fault; + emit mcFaultChanged(); + } +} + +void Backend::setMotorOn(const bool on) { + if (m_motorOn != on) { + m_motorOn = on; + emit motorOnChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 5722642..7b2f4a8 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -23,6 +23,8 @@ class Backend : public QObject { Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); + Q_PROPERTY(bool mcFault READ mcFault WRITE setMcFault NOTIFY mcFaultChanged); + Q_PROPERTY(bool motorOn READ motorOn WRITE setMotorOn NOTIFY motorOnChanged); public: explicit Backend(QObject *parent = nullptr); @@ -38,6 +40,8 @@ class Backend : public QObject { double bikeSpeed() const; double mcTemp() const; bool bmsFault() const; + bool mcFault() const; + bool motorOn() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -51,6 +55,8 @@ class Backend : public QObject { void setBikeSpeed(const double speed); void setMcTemp(const double temp); void setBmsFault(const bool fault); + void setMcFault(const bool fault); + void setMotorOn(const bool on); signals: void motorTempChanged(); @@ -65,6 +71,8 @@ class Backend : public QObject { void bikeSpeedChanged(); void mcTempChanged(); void bmsFaultChanged(); + void mcFaultChanged(); + void motorOnChanged(); private: void updateVars(); @@ -80,6 +88,8 @@ class Backend : public QObject { double m_bikeSpeed; double m_mcTemp; bool m_bmsFault; + bool m_mcFault; + bool m_motorOn; }; #endif // BACKEND_H diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index e03bc60..bc7af0f 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -9,102 +9,109 @@ std::mutex m; our_candata data{}; namespace can { -int run() { - // Where the data will be stored to be send to the front end - int s, i; - int nbytes; - struct sockaddr_can addr; - struct ifreq ifr; - struct can_frame frame; - int8_t *unknown_data = nullptr; - - printf("CAN Sockets Receive Demo\r\n"); - - // Create a new socket of type CAN using data CAN_RAW - if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) { - perror("Socket"); - return 1; - } - - // Setting the name of the physical can interface (ip a) - strcpy(ifr.ifr_name, "can0"); - // Converts if name to actual interface index - ioctl(s, SIOCGIFINDEX, &ifr); + int run() { + // Where the data will be stored to be send to the front end + int s, i; + int nbytes; + struct sockaddr_can addr; + struct ifreq ifr; + struct can_frame frame; + int8_t *unknown_data = nullptr; + + printf("CAN Sockets Receive Demo\r\n"); + + // Create a new socket of type CAN using data CAN_RAW + if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) { + perror("Socket"); + return 1; + } - // Reserve memory for CAN frames - memset(&addr, 0, sizeof(addr)); - addr.can_family = AF_CAN; // Use CAN sockets specifically - addr.can_ifindex = ifr.ifr_ifindex; + // Setting the name of the physical can interface (ip a) + strcpy(ifr.ifr_name, "can0"); + // Converts if name to actual interface index + ioctl(s, SIOCGIFINDEX, &ifr); - // Connects to the socket and it locks - if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { - perror("Bind"); - return 1; - } + // Reserve memory for CAN frames + memset(&addr, 0, sizeof(addr)); + addr.can_family = AF_CAN; // Use CAN sockets specifically + addr.can_ifindex = ifr.ifr_ifindex; - while (true) { - // Actually reads from the socket - nbytes = read(s, &frame, sizeof(struct can_frame)); - - // Make sure it exists - if (nbytes < 0) { - perror("Read"); + // Connects to the socket and it locks + if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { + perror("Bind"); return 1; } - m.lock(); - switch (frame.can_id) { - case can_ids.aux_battery: - data.aux_voltage = frame.data[0] + (frame.data[1] << 8); - data.aux_percent = data.aux_voltage / 2.5; - break; - case can_ids.info: - data.pack_state_of_charge = frame.data[4]; - data.bms_error = frame.data[5] & BMS_FAULT_MASK; - data.pack_voltage = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.main_pack_temp: - data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); - data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.motor_temp: - data.motor_temperature = frame.data[4] + (frame.data[5] << 8); - break; - case can_ids.bms_temp: - data.bms_temperature = frame.data[4] + (frame.data[5] << 8); - break; - case can_ids.rpm: - data.motor_speed = frame.data[2] + (frame.data[3] << 8); - data.bike_speed = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.speed: - data.bike_speed = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.mc_temp: - data.mc_temperature = frame.data[0] + (frame.data[1] << 8); - default: - unknown_data = new int8_t[frame.can_dlc]; - for (int i{}; i < frame.can_dlc; i++) { - unknown_data[i] = frame.data[i]; + + while (true) { + // Actually reads from the socket + nbytes = read(s, &frame, sizeof(struct can_frame)); + + // Make sure it exists + if (nbytes < 0) { + perror("Read"); + return 1; } - } - m.unlock(); + m.lock(); + switch (frame.can_id) { + case can_ids.aux_battery: + data.aux_voltage = frame.data[0] + (frame.data[1] << 8); + data.aux_percent = data.aux_voltage / 2.5; + break; + case can_ids.info: + data.pack_state_of_charge = frame.data[4]; + data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.pack_voltage = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.main_pack_temp: + data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); + data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.motor_temp: + data.motor_temperature = frame.data[4] + (frame.data[5] << 8); + break; + case can_ids.bms_temp: + data.bms_temperature = frame.data[4] + (frame.data[5] << 8); + break; + case can_ids.rpm: + data.motor_speed = frame.data[2] + (frame.data[3] << 8); + data.bike_speed = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.speed: + data.bike_speed = frame.data[2] + (frame.data[3] << 8); + break; + case can_ids.mc_temp: + data.mc_temperature = frame.data[0] + (frame.data[1] << 8); + break; + case can_ids.mc_faults: + data.mc_fault = frame.data[0] || frame.data[1] || frame.data[2] || frame.data[3] || frame.data[4] || frame.data[5] || frame.data[6] || frame.data[7]; + break; + case can_ids.internal_states: + data.motor_on = frame.data[0] == 6; + break; + default: + unknown_data = new int8_t[frame.can_dlc]; + for (int i{}; i < frame.can_dlc; i++) { + unknown_data[i] = frame.data[i]; + } + } + m.unlock(); - // Print the can ID and len of data - // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); + // Print the can ID and len of data + // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); - // Print the data in the CAN message - // for (i = 0; i < frame.can_dlc; i++) - // printf("%02X ", frame.data[i]); + // Print the data in the CAN message + // for (i = 0; i < frame.can_dlc; i++) + // printf("%02X ", frame.data[i]); - // printf("\r\n"); - } + // printf("\r\n"); + } - // Close socket - if (close(s) < 0) { - perror("Close"); - return 1; - } + // Close socket + if (close(s) < 0) { + perror("Close"); + return 1; + } - return 0; -} + return 0; + } } diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index d3dd520..df4eeca 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -26,6 +26,8 @@ struct our_candata { int16_t motor_speed{}; int16_t bike_speed{}; uint8_t bms_error{}; + uint8_t mc_fault{}; + uint8_t motor_on{}; }; // ID's for each CAN thing @@ -38,13 +40,15 @@ constexpr struct { canid_t mc_temp{0xA1}; canid_t rpm{0xA5}; canid_t speed{0x00}; + canid_t mc_faults{0x0AB}; + canid_t internal_states{0x0AA}; } can_ids; extern std::mutex m; extern our_candata data; namespace can { -int run(); + int run(); } #endif // CAN_H diff --git a/Bolt_Dash/content/FaultMotorStatus.qml b/Bolt_Dash/content/FaultMotorStatus.qml index 6698676..c724b18 100644 --- a/Bolt_Dash/content/FaultMotorStatus.qml +++ b/Bolt_Dash/content/FaultMotorStatus.qml @@ -12,7 +12,7 @@ Item { readonly property int padding: 10 readonly property color good: green readonly property color bad: red - readonly property color off: green//"black" + readonly property color off: "black" id: root // Motor On diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 2b6d41d..14ce57a 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -8,7 +8,6 @@ Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on import QtQuick 6.2 import QtQuick.Controls 6.2 import Bolt_Dash -import Backend Rectangle { id: rectangle @@ -41,19 +40,6 @@ Rectangle { y: speedometer.y } - Backend { - id: backend - motorTemp: 0 - auxVoltage: 0 - auxPercent: 0 - packSOC: 0 - highCellTemp: 0 - lowCellTemp: 0 - bmsTemp: 0 - motorSpeed: 0 - bikeSpeed: 125 - } - BatteryReadout { id: batteryReadout x: 0 @@ -68,18 +54,18 @@ Rectangle { id: temps x: 500 y: temperatureIslandY - // packTemp: backend.highCellTemp - // mcTemp: backend.mcTemp - // motorTemp: backend.motorTemp - packTemp: 0 - mcTemp: 100 - motorTemp: 0.9*115 + packTemp: backend.highCellTemp + mcTemp: backend.mcTemp + motorTemp: backend.motorTemp + //packTemp: 0 + //mcTemp: 100 + //motorTemp: 0.9*115 } Text { id: speedoLabel x: mphLabelX y: speedometer.y + speedometer.height/2 + 7 +verticalSpacing - text: qsTr("125").arg(Math.round(backend.bikeSpeed)) + text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft @@ -104,5 +90,8 @@ Rectangle { FaultMotorStatus { x: Constants.width - width y: speedometer.y + speedometer.height + 40 + motorOn: backend.motorOn + mcFault: backend.mcFault + bmsFault: backend.bmsFault } } From 54ed308d262048e8adae466ef5a17e722698efa1 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 03:26:35 -0400 Subject: [PATCH 106/165] Fix small formatting errors and change rpm conversion to a #DEFINE --- Bolt_Dash/backend.cpp | 14 ++++++++------ Bolt_Dash/content/Screen01.ui.qml | 6 +++--- Bolt_Dash/content/TemperatureIsland.qml | 6 +++--- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 3dafb1b..7a477ec 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -2,6 +2,8 @@ #include "can.h" #include +#define RPM_TO_SPEED (19 / 45 * 27.63 * M_PI / 1056) + // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, @@ -20,12 +22,12 @@ void Backend::updateVars() { setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent setPackVoltage(data.pack_voltage / 10.0); - setHighCellTemp(data.high_cell_temp); // celsius - setLowCellTemp(data.low_cell_temp); // celsius - setBmsTemp(data.bms_temperature); // celsius - setMotorSpeed(data.motor_speed); // rpm - setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph - setMcTemp(data.mc_temperature / 10.0); // celsius + setHighCellTemp(data.high_cell_temp); // celsius + setLowCellTemp(data.low_cell_temp); // celsius + setBmsTemp(data.bms_temperature); // celsius + setMotorSpeed(data.motor_speed); // rpm + setBikeSpeed(data.motor_speed * RPM_TO_SPEED); // mph + setMcTemp(data.mc_temperature / 10.0); // celsius setBmsFault(data.bms_error); setMotorOn(data.motor_on); setMcFault(data.mc_fault); diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 14ce57a..1c6d79e 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -57,9 +57,9 @@ Rectangle { packTemp: backend.highCellTemp mcTemp: backend.mcTemp motorTemp: backend.motorTemp - //packTemp: 0 - //mcTemp: 100 - //motorTemp: 0.9*115 + // packTemp: 0.89*70 + // mcTemp: 91 + // motorTemp: 0.9*115 } Text { id: speedoLabel diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 9d8858c..fc23110 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -57,10 +57,10 @@ Item { // Redline Rectangle { - x: 15 + x: 25 y: 13 - width: parent.width - 30 - height: 2 + width: 200 + height: 3 color: "red" } } From bf84f148bfb9fa98060bb94e497cac01190c93f8 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 03:28:44 -0400 Subject: [PATCH 107/165] Fix formatting of indicator connecting lines --- Bolt_Dash/content/FaultMotorStatus.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/FaultMotorStatus.qml b/Bolt_Dash/content/FaultMotorStatus.qml index c724b18..054acee 100644 --- a/Bolt_Dash/content/FaultMotorStatus.qml +++ b/Bolt_Dash/content/FaultMotorStatus.qml @@ -136,7 +136,7 @@ Item { x: bmsFaultIndicatorConnector.startX-10; y: bmsFaultIndicator.y+3*bmsFaultIndicator.height/5 } PathCurve { - x: bmsFaultIndicator.x+bmsFaultIndicator.width; y: bmsFaultIndicator.y+2*bmsFaultIndicator.height/3 + x: bmsFaultIndicator.x+bmsFaultIndicator.width - 1; y: bmsFaultIndicator.y+2*bmsFaultIndicator.height/3 } } } @@ -199,7 +199,7 @@ Item { x: mcFaultIndicatorConnector.startX-10; y: mcFaultIndicator.y+3*mcFaultIndicator.height/5 } PathCurve { - x: mcFaultIndicator.x + mcFaultIndicator.width; y: mcFaultIndicator.y+2*mcFaultIndicator.height/3 + x: mcFaultIndicator.x + mcFaultIndicator.width - 2; y: mcFaultIndicator.y+2*mcFaultIndicator.height/3 } } } From 823b6565e64f91fbd3d9642a01887c5c497ba7d2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 04:31:00 -0400 Subject: [PATCH 108/165] Small fixes --- Bolt_Dash/content/BikeStatus.qml | 2 +- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- Bolt_Dash/content/Speedometer.qml | 8 ++++---- Bolt_Dash/content/TempSlider.qml | 2 +- Bolt_Dash/content/TemperatureIsland.qml | 17 ++++++++++------- 5 files changed, 18 insertions(+), 15 deletions(-) diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index 2d27563..97d0d3d 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -85,7 +85,7 @@ Item { model: 5 Rectangle { required property int index - color: root.status == index ? (root.status == BikeStatus.Status.DRIVE ? root.green : "red") : "black" + color: root.status == index ? (root.status == BikeStatus.Status.DRIVE ? root.green : "white") : "black" Layout.preferredWidth: parent.width / parent.columns - parent.columnSpacing height: parent.height Text { diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 1c6d79e..1f56928 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -30,7 +30,7 @@ Rectangle { Speedometer { id: speedometer - fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM + fullness: backend.motorSpeed / 6000 // Expected max speed of 5500 RPM x: 50 y: 25 } @@ -84,7 +84,7 @@ Rectangle { id: bikeStatus x: bikeStatusX y: Constants.height - height - status: BikeStatus.Status.DRIVE + status: BikeStatus.Status.STANDBY } FaultMotorStatus { diff --git a/Bolt_Dash/content/Speedometer.qml b/Bolt_Dash/content/Speedometer.qml index c71615d..3bb7277 100644 --- a/Bolt_Dash/content/Speedometer.qml +++ b/Bolt_Dash/content/Speedometer.qml @@ -22,18 +22,18 @@ Item { id: root width: parent.width height: parent.height - radius: 15 - border.color: "#616161" + radius: 0 + border.color: "#000000" border.width: 10 Rectangle { id: rectangle - radius: 15 + radius: 0 x: 10 y: 10 width: 680*fullness height: 55 - color: "#0c00ff" + color: "#E5751F" } } } diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index 4ba3761..3882ad1 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -3,7 +3,7 @@ import QtQuick.Controls 2.15 Item { width: 40 - height: 275 + height: 250 readonly property string red: "#e80c0c" readonly property string green: "#09bd0f" property double fullness: 0.5; diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index fc23110..97c4c46 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -25,6 +25,7 @@ Item { FullSlider { id: packSlider x: 3*padding + y: 15 label: "PACK" fullness: packTemp / 70 value: packTemp @@ -36,6 +37,7 @@ Item { FullSlider { id: mcSlider x: packSlider.x + horizSpacing + sliderWidth + y: packSlider.y label: "MC" fullness: mcTemp / 100 value: mcTemp @@ -47,6 +49,7 @@ Item { FullSlider { id: motorSlider x: mcSlider.x + horizSpacing + sliderWidth + y: packSlider.y label: "MOTOR" fullness: motorTemp / 115 value: motorTemp @@ -56,12 +59,12 @@ Item { } // Redline - Rectangle { - x: 25 - y: 13 - width: 200 - height: 3 - color: "red" - } + // Rectangle { + // x: 25 + // y: 13 + // width: 200 + // height: 3 + // color: "red" + // } } } \ No newline at end of file From 666f6622eeebd09399d0d27e400c60c9e8091c67 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 04:35:03 -0400 Subject: [PATCH 109/165] Add bike status to CAN --- Bolt_Dash/backend.cpp | 14 +++++++++++++- Bolt_Dash/backend.h | 5 +++++ Bolt_Dash/can.cpp | 18 ++++++++++++++++++ Bolt_Dash/can.h | 2 ++ Bolt_Dash/content/Screen01.ui.qml | 2 +- 5 files changed, 39 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 7a477ec..bbf46e7 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -7,7 +7,7 @@ // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, - m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{} { + m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); } @@ -31,6 +31,7 @@ void Backend::updateVars() { setBmsFault(data.bms_error); setMotorOn(data.motor_on); setMcFault(data.mc_fault); + setBikeStatus(data.bike_status); m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; @@ -96,6 +97,10 @@ bool Backend::motorOn() const { return m_motorOn; } +int Backend::bikeStatus() const { + return m_bikeStatus; +} + // } // Setter Functions @@ -197,6 +202,13 @@ void Backend::setMotorOn(const bool on) { emit motorOnChanged(); } } + +void Backend::setBikeStatus(const int status) { + if (m_bikeStatus != status) { + m_bikeStatus = status; + emit bikeStatusChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 7b2f4a8..33d12d2 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -25,6 +25,7 @@ class Backend : public QObject { Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); Q_PROPERTY(bool mcFault READ mcFault WRITE setMcFault NOTIFY mcFaultChanged); Q_PROPERTY(bool motorOn READ motorOn WRITE setMotorOn NOTIFY motorOnChanged); + Q_PROPERTY(int bikeStatus READ bikeStatus WRITE setBikeStatus NOTIFY bikeStatusChanged); public: explicit Backend(QObject *parent = nullptr); @@ -42,6 +43,7 @@ class Backend : public QObject { bool bmsFault() const; bool mcFault() const; bool motorOn() const; + int bikeStatus() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -57,6 +59,7 @@ class Backend : public QObject { void setBmsFault(const bool fault); void setMcFault(const bool fault); void setMotorOn(const bool on); + void setBikeStatus(const int status); signals: void motorTempChanged(); @@ -73,6 +76,7 @@ class Backend : public QObject { void bmsFaultChanged(); void mcFaultChanged(); void motorOnChanged(); + void bikeStatusChanged(); private: void updateVars(); @@ -90,6 +94,7 @@ class Backend : public QObject { bool m_bmsFault; bool m_mcFault; bool m_motorOn; + int m_bikeStatus; }; #endif // BACKEND_H diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index bc7af0f..ee5359f 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -88,6 +88,24 @@ namespace can { case can_ids.internal_states: data.motor_on = frame.data[0] == 6; break; + case can_ids.bike_status: + switch (frame.data[0]) { + case 1 << 0: + data.bike_status = 1; + break; + case 1 << 1: + data.bike_status = 2; + break; + case 1 << 2: + data.bike_status = 3; + break; + case 1 << 3: + data.bike_status = 4; + break; + default: + data.bike_status = 0; + } + break; default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index df4eeca..5a0ebfa 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -28,6 +28,7 @@ struct our_candata { uint8_t bms_error{}; uint8_t mc_fault{}; uint8_t motor_on{}; + uint8_t bike_status{}; }; // ID's for each CAN thing @@ -42,6 +43,7 @@ constexpr struct { canid_t speed{0x00}; canid_t mc_faults{0x0AB}; canid_t internal_states{0x0AA}; + canid_t bike_status{0x0E1}; } can_ids; extern std::mutex m; diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 1f56928..8358027 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -84,7 +84,7 @@ Rectangle { id: bikeStatus x: bikeStatusX y: Constants.height - height - status: BikeStatus.Status.STANDBY + status: backend.bikeStatus } FaultMotorStatus { From 4f67bc7d0bb43a466242fc2beed07aa892d61ca6 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 28 Apr 2024 15:07:12 -0400 Subject: [PATCH 110/165] Fix mph indicator --- Bolt_Dash/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index bbf46e7..b1df615 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -2,7 +2,7 @@ #include "can.h" #include -#define RPM_TO_SPEED (19 / 45 * 27.63 * M_PI / 1056) +#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, From 101bf82997920dc181c87f5e13704413bca71a8a Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 09:06:11 -0400 Subject: [PATCH 111/165] fix bms fault --- Bolt_Dash/imports/Backend/can.cpp | 2 +- Bolt_Dash/imports/Backend/can.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index d4b411c..1a5bf69 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -56,7 +56,7 @@ namespace can { break; case can_ids.info: data.pack_state_of_charge = frame.data[4]; - data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.bms_error = frame.data[6] & BMS_FAULT_MASK; data.pack_voltage = frame.data[2] + (frame.data[3] << 8); break; case can_ids.main_pack_temp: diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index c433270..d50da51 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -17,7 +17,7 @@ #include #include -#define BMS_FAULT_MASK 0b0010000 +#define BMS_FAULT_MASK (1 << 3) struct our_candata { uint8_t aux_voltage{}; From ac44f8b3d22d9d5ed967b69443bd66d861cf605d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 10:33:39 -0400 Subject: [PATCH 112/165] Change RPM bar to be percentage of max current --- Bolt_Dash/content/Screen01.ui.qml | 5 ++++- Bolt_Dash/imports/Backend/backend.cpp | 25 +++++++++++++++++++------ Bolt_Dash/imports/Backend/backend.h | 5 +++++ Bolt_Dash/imports/Backend/can.cpp | 1 + Bolt_Dash/imports/Backend/can.h | 1 + 5 files changed, 30 insertions(+), 7 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 8358027..3a7bf21 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -16,6 +16,8 @@ Rectangle { color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor + readonly property maxCurrent: 250 + readonly property int sliderY: 160 readonly property int textLabelY: sliderY + 260 readonly property int valueLabelY: textLabelY+25 @@ -30,7 +32,8 @@ Rectangle { Speedometer { id: speedometer - fullness: backend.motorSpeed / 6000 // Expected max speed of 5500 RPM + // fullness: backend.motorSpeed / 6000 // Expected max speed of 5500 RPM + fullness: backend.packCurrent / maxCurrent x: 50 y: 25 } diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index f80a578..41db9b2 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -4,7 +4,8 @@ // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, - m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{} { + m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, + m_packCurrent{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); } @@ -14,11 +15,12 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius - setAuxVoltage(data.aux_voltage / 10.0); // volts - setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage / 10.0); + setMotorTemp(data.motor_temperature / 10.0); // celsius + setAuxVoltage(data.aux_voltage / 10.0); // volts + setAuxPercent(data.aux_percent / 100.0); // percent + setPackSOC(data.pack_state_of_charge / 200.0); // percent + setPackVoltage(data.pack_voltage / 10.0); // volts + setPackCurrent(data.pack_current / 10.0); // amps setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius @@ -82,6 +84,10 @@ double Backend::mcTemp() const { bool Backend::bmsFault() const { return m_bmsFault; } + +double Backend::packCurrent() const { + return m_packCurrent; +} // } // Setter Functions @@ -169,6 +175,13 @@ void Backend::setBmsFault(const bool fault) { emit bmsFaultChanged(); } } + +void Backend::setPackCurrent(const double current) { + if (m_packCurrent != current) { + m_packCurrent = current; + emit packCurrentChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/imports/Backend/backend.h b/Bolt_Dash/imports/Backend/backend.h index 5722642..c087ba2 100644 --- a/Bolt_Dash/imports/Backend/backend.h +++ b/Bolt_Dash/imports/Backend/backend.h @@ -23,6 +23,7 @@ class Backend : public QObject { Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); + Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged); public: explicit Backend(QObject *parent = nullptr); @@ -38,6 +39,7 @@ class Backend : public QObject { double bikeSpeed() const; double mcTemp() const; bool bmsFault() const; + double packCurrent() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -51,6 +53,7 @@ class Backend : public QObject { void setBikeSpeed(const double speed); void setMcTemp(const double temp); void setBmsFault(const bool fault); + void setPackCurrent(const double current); signals: void motorTempChanged(); @@ -65,6 +68,7 @@ class Backend : public QObject { void bikeSpeedChanged(); void mcTempChanged(); void bmsFaultChanged(); + void packCurrentChanged(); private: void updateVars(); @@ -80,6 +84,7 @@ class Backend : public QObject { double m_bikeSpeed; double m_mcTemp; bool m_bmsFault; + double m_packCurrent; }; #endif // BACKEND_H diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 1a5bf69..b38c07e 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -58,6 +58,7 @@ namespace can { data.pack_state_of_charge = frame.data[4]; data.bms_error = frame.data[6] & BMS_FAULT_MASK; data.pack_voltage = frame.data[2] + (frame.data[3] << 8); + data.pack_current = frame.data[0] + (frame.data[1] << 8); break; case can_ids.main_pack_temp: data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index d50da51..138a2e1 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -24,6 +24,7 @@ struct our_candata { uint8_t aux_percent{}; uint8_t pack_state_of_charge{}; uint16_t pack_voltage{}; + uint16_t pack_current{}; uint16_t high_cell_temp{}; uint16_t low_cell_temp{}; int16_t motor_temperature{}; From 87c32b8328587a80c65fcec2a706f84ea9af3cb6 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 12:17:44 -0400 Subject: [PATCH 113/165] Fixed me being silly --- Bolt_Dash/backend.cpp | 16 ++++++++++++++-- Bolt_Dash/backend.h | 5 +++++ Bolt_Dash/can.cpp | 1 + Bolt_Dash/can.h | 1 + Bolt_Dash/imports/Backend/can.cpp | 2 +- 5 files changed, 22 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index b1df615..578a339 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -7,7 +7,7 @@ // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, - m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{} { + m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); } @@ -21,7 +21,8 @@ void Backend::updateVars() { setAuxVoltage(data.aux_voltage / 10.0); // volts setAuxPercent(data.aux_percent / 100.0); // percent setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage / 10.0); + setPackVoltage(data.pack_voltage / 10.0); // Voltage + setPackCurrent(data.pack_current / 10.0); // amps setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius @@ -101,6 +102,10 @@ int Backend::bikeStatus() const { return m_bikeStatus; } +double Backend::packCurrent() const { + return m_packCurrent; +} + // } // Setter Functions @@ -209,6 +214,13 @@ void Backend::setBikeStatus(const int status) { emit bikeStatusChanged(); } } + +void Backend::setPackCurrent(const double current) { + if (m_packCurrent != current) { + m_packCurrent = current; + emit packCurrentChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 33d12d2..8a024fe 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -26,6 +26,7 @@ class Backend : public QObject { Q_PROPERTY(bool mcFault READ mcFault WRITE setMcFault NOTIFY mcFaultChanged); Q_PROPERTY(bool motorOn READ motorOn WRITE setMotorOn NOTIFY motorOnChanged); Q_PROPERTY(int bikeStatus READ bikeStatus WRITE setBikeStatus NOTIFY bikeStatusChanged); + Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged); public: explicit Backend(QObject *parent = nullptr); @@ -44,6 +45,7 @@ class Backend : public QObject { bool mcFault() const; bool motorOn() const; int bikeStatus() const; + double packCurrent() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -60,6 +62,7 @@ class Backend : public QObject { void setMcFault(const bool fault); void setMotorOn(const bool on); void setBikeStatus(const int status); + void setPackCurrent(const double current); signals: void motorTempChanged(); @@ -77,6 +80,7 @@ class Backend : public QObject { void mcFaultChanged(); void motorOnChanged(); void bikeStatusChanged(); + void packCurrentChanged(); private: void updateVars(); @@ -95,6 +99,7 @@ class Backend : public QObject { bool m_mcFault; bool m_motorOn; int m_bikeStatus; + double m_packCurrent; }; #endif // BACKEND_H diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index ee5359f..56761c4 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -60,6 +60,7 @@ namespace can { case can_ids.info: data.pack_state_of_charge = frame.data[4]; data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.pack_current = frame.data[0] + (frame.data[1] << 8); data.pack_voltage = frame.data[2] + (frame.data[3] << 8); break; case can_ids.main_pack_temp: diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 5a0ebfa..375b023 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -18,6 +18,7 @@ struct our_candata { uint8_t aux_percent{}; uint8_t pack_state_of_charge{}; uint16_t pack_voltage{}; + uint16_t pack_current{}; uint16_t high_cell_temp{}; uint16_t low_cell_temp{}; int16_t motor_temperature{}; diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index b38c07e..cb990b9 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -56,7 +56,7 @@ namespace can { break; case can_ids.info: data.pack_state_of_charge = frame.data[4]; - data.bms_error = frame.data[6] & BMS_FAULT_MASK; + data.bms_error = frame.data[5] & BMS_FAULT_MASK; data.pack_voltage = frame.data[2] + (frame.data[3] << 8); data.pack_current = frame.data[0] + (frame.data[1] << 8); break; From 15010688535b16fbe03576e0777faff46d6e4f76 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 13:23:18 -0400 Subject: [PATCH 114/165] Fix left line speedo decoration being silly --- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/content/SpeedometerDecorations.qml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 3a7bf21..15026be 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -16,7 +16,7 @@ Rectangle { color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor - readonly property maxCurrent: 250 + readonly property int maxCurrent: 250 readonly property int sliderY: 160 readonly property int textLabelY: sliderY + 260 diff --git a/Bolt_Dash/content/SpeedometerDecorations.qml b/Bolt_Dash/content/SpeedometerDecorations.qml index e71241d..4147727 100644 --- a/Bolt_Dash/content/SpeedometerDecorations.qml +++ b/Bolt_Dash/content/SpeedometerDecorations.qml @@ -3,7 +3,7 @@ import QtQuick.Shapes Item { id: root - readonly property int leftLineWidth: 100 + readonly property int leftLineWidth: 200 readonly property int rightLineWidth: 125 Shape { @@ -13,9 +13,9 @@ Item { strokeColor: "white" strokeWidth: 2 fillColor: "transparent" - startX: 0 + startX: -100 startY: 225 - PathLine { x: leftLinePath.startX + root.leftLineWidth; y: leftLinePath.startY } + PathLine { x: leftLinePath.startX + root.leftLineWidth; y: leftLinePath.startY } } } From 2cc7baae8380e178aeef52fe8c5a501ffad52e70 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 15:19:01 -0400 Subject: [PATCH 115/165] Fix MC temp not correct --- Bolt_Dash/can.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index 56761c4..0c0edf0 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -69,6 +69,7 @@ namespace can { break; case can_ids.motor_temp: data.motor_temperature = frame.data[4] + (frame.data[5] << 8); + data.mc_temperature = frame.data[0] + (frame.data[1] << 8); break; case can_ids.bms_temp: data.bms_temperature = frame.data[4] + (frame.data[5] << 8); @@ -81,7 +82,7 @@ namespace can { data.bike_speed = frame.data[2] + (frame.data[3] << 8); break; case can_ids.mc_temp: - data.mc_temperature = frame.data[0] + (frame.data[1] << 8); + // data.mc_temperature = frame.data[0] + (frame.data[1] << 8); break; case can_ids.mc_faults: data.mc_fault = frame.data[0] || frame.data[1] || frame.data[2] || frame.data[3] || frame.data[4] || frame.data[5] || frame.data[6] || frame.data[7]; From 24496941d7420763fb411c3d448549421dde1fc9 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 29 Apr 2024 15:35:05 -0400 Subject: [PATCH 116/165] Fix MC temps but better --- Bolt_Dash/can.cpp | 6 ++++-- Bolt_Dash/can.h | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index 0c0edf0..e7adb7f 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -69,7 +69,6 @@ namespace can { break; case can_ids.motor_temp: data.motor_temperature = frame.data[4] + (frame.data[5] << 8); - data.mc_temperature = frame.data[0] + (frame.data[1] << 8); break; case can_ids.bms_temp: data.bms_temperature = frame.data[4] + (frame.data[5] << 8); @@ -82,7 +81,10 @@ namespace can { data.bike_speed = frame.data[2] + (frame.data[3] << 8); break; case can_ids.mc_temp: - // data.mc_temperature = frame.data[0] + (frame.data[1] << 8); + uint16_t r1 = frame.data[0] + (frame.data[1] << 8); + uint16_t r2 = frame.data[2] + (frame.data[3] << 8); + uint16_t r3 = frame.data[4] + (frame.data[5] << 8); + data.mc_temperature = r1 > r2 ? r1 : (r2 > r3 ? r2 : r3); break; case can_ids.mc_faults: data.mc_fault = frame.data[0] || frame.data[1] || frame.data[2] || frame.data[3] || frame.data[4] || frame.data[5] || frame.data[6] || frame.data[7]; diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 375b023..2239579 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -39,7 +39,7 @@ constexpr struct { canid_t main_pack_temp{0x6B4}; canid_t motor_temp{0xA2}; canid_t bms_temp{0x6B1}; - canid_t mc_temp{0xA1}; + canid_t mc_temp{0xA0}; canid_t rpm{0xA5}; canid_t speed{0x00}; canid_t mc_faults{0x0AB}; From f1a7d75c5c660d984b0ed4a2d155d46c83c6b33c Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 8 May 2024 11:31:38 -0400 Subject: [PATCH 117/165] Maybe added bike state from CAN --- Bolt_Dash/can.cpp | 51 ++++++++++++++++++++++++++++++++++++----------- Bolt_Dash/can.h | 1 - 2 files changed, 39 insertions(+), 13 deletions(-) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index e7adb7f..bfa2675 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -80,36 +80,49 @@ namespace can { case can_ids.speed: data.bike_speed = frame.data[2] + (frame.data[3] << 8); break; - case can_ids.mc_temp: + case can_ids.mc_temp: { uint16_t r1 = frame.data[0] + (frame.data[1] << 8); uint16_t r2 = frame.data[2] + (frame.data[3] << 8); uint16_t r3 = frame.data[4] + (frame.data[5] << 8); data.mc_temperature = r1 > r2 ? r1 : (r2 > r3 ? r2 : r3); break; + }; case can_ids.mc_faults: data.mc_fault = frame.data[0] || frame.data[1] || frame.data[2] || frame.data[3] || frame.data[4] || frame.data[5] || frame.data[6] || frame.data[7]; break; - case can_ids.internal_states: - data.motor_on = frame.data[0] == 6; - break; - case can_ids.bike_status: - switch (frame.data[0]) { - case 1 << 0: + case can_ids.internal_states: { + // Get state of bike + uint16_t status = frame.data[0] + (frame.data[1] << 8); + switch (status) { + // I don't actually think this does anything, but this may be when accessories exist + case 0: data.bike_status = 1; break; - case 1 << 1: + // If 1, 2, or 3, VSM is in one of the precharge states + case 1: + case 2: + case 3: data.bike_status = 2; break; - case 1 << 2: + // 4 or 5, MC is ready but not active yet + case 4: + case 5: data.bike_status = 3; break; - case 1 << 3: + // 6, Motor is on an can be moved + case 6: data.bike_status = 4; break; + // Kind of obsolete b/c this is not a visible status, but if 7, there is a fault + case 7: + data.bike_status = 5; + break; default: - data.bike_status = 0; + break; } + data.motor_on = frame.data[0] == 6; break; + }; default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { @@ -119,7 +132,21 @@ namespace can { m.unlock(); // Print the can ID and len of data - // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); + // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); // switch (status) { + // case 0: + // break; + // // If 1, 2, or 3, VSM is in one of the precharge states + // case 1: + // case 2: + // case 3: + // data.bike_status = 0; + // break; + // case 5: + // data.bike_status = 1; + // break; + // default: + // break; + // } // Print the data in the CAN message // for (i = 0; i < frame.can_dlc; i++) diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 2239579..d122ee2 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -44,7 +44,6 @@ constexpr struct { canid_t speed{0x00}; canid_t mc_faults{0x0AB}; canid_t internal_states{0x0AA}; - canid_t bike_status{0x0E1}; } can_ids; extern std::mutex m; From 4f465779131e19f3fc2f3e6cbaa58f5c655b9652 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 8 May 2024 12:22:13 -0400 Subject: [PATCH 118/165] Fix current bar --- Bolt_Dash/can.h | 2 +- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index d122ee2..91db121 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -18,7 +18,7 @@ struct our_candata { uint8_t aux_percent{}; uint8_t pack_state_of_charge{}; uint16_t pack_voltage{}; - uint16_t pack_current{}; + int16_t pack_current{}; uint16_t high_cell_temp{}; uint16_t low_cell_temp{}; int16_t motor_temperature{}; diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 15026be..2899059 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -16,7 +16,7 @@ Rectangle { color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor - readonly property int maxCurrent: 250 + readonly property int maxCurrent: 350 readonly property int sliderY: 160 readonly property int textLabelY: sliderY + 260 @@ -33,7 +33,7 @@ Rectangle { Speedometer { id: speedometer // fullness: backend.motorSpeed / 6000 // Expected max speed of 5500 RPM - fullness: backend.packCurrent / maxCurrent + fullness: Math.abs(backend.packCurrent) / maxCurrent x: 50 y: 25 } From 3b6e4276e09c563d37e8491164263501b7edc59d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 8 May 2024 13:39:56 -0400 Subject: [PATCH 119/165] ??? --- Bolt_Dash/qmlmodules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bolt_Dash/qmlmodules b/Bolt_Dash/qmlmodules index ca9bc8c..6f5afb5 100644 --- a/Bolt_Dash/qmlmodules +++ b/Bolt_Dash/qmlmodules @@ -14,4 +14,6 @@ add_subdirectory(imports) target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE contentplugin Bolt_Dashplugin + BackendPlugin + IOPlugin ) From 39d1e1fa39669009ef0642dcf8ace6c9851e63a7 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 12:53:45 -0400 Subject: [PATCH 120/165] Added web server that outputs json of all bike data from dash --- Bolt_Dash/CMakeLists.txt | 2 ++ Bolt_Dash/backend.cpp | 6 +++++- Bolt_Dash/web.cpp | 34 ++++++++++++++++++++++++++++++++++ Bolt_Dash/web.h | 8 ++++++++ 4 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 Bolt_Dash/web.cpp create mode 100644 Bolt_Dash/web.h diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 7238c86..8dd2af3 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -17,6 +17,8 @@ qt_add_executable(Bolt_DashApp src/main.cpp backend.h backend.cpp can.cpp can.h + web.h + web.cpp ) qt_add_resources(Bolt_DashApp "configuration" diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 578a339..383ca0f 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -1,6 +1,6 @@ #include "backend.h" #include "can.h" -#include +#include "web.h" #define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) @@ -10,6 +10,10 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); + + std::thread run_app(&web::runApp); + run_app.detach(); + // web::runApp(); } // Calls the set functions with the values from data diff --git a/Bolt_Dash/web.cpp b/Bolt_Dash/web.cpp new file mode 100644 index 0000000..3d8e841 --- /dev/null +++ b/Bolt_Dash/web.cpp @@ -0,0 +1,34 @@ +#include "can.h" +#include "crow.h" +#include + +namespace web { + + void runApp() { + crow::SimpleApp app; + + CROW_ROUTE(app, "/") + ([]() { + std::chrono::duration now = std::chrono::system_clock::now().time_since_epoch(); + crow::json::wvalue response({{"timestamp", std::chrono::duration_cast(now).count()}}); + m.lock(); + response["pack_state_of_charge"] = data.pack_state_of_charge; + response["pack_current"] = data.pack_current; + response["high_cell_temp"] = data.high_cell_temp; + response["low_cell_temp"] = data.low_cell_temp; + response["motor_temperature"] = data.motor_temperature; + response["bms_temperature"] = data.bms_temperature; + response["mc_temperature"] = data.mc_temperature; + response["motor_speed"] = data.motor_speed; + response["bike_speed"] = data.bike_speed; + response["bms_error"] = data.bms_error; + response["mc_fault"] = data.mc_fault; + response["motor_on"] = data.motor_on; + response["bike_status"] = data.bike_status; + m.unlock(); + return response; + }); + + app.port(18080).multithreaded().run_async(); + } +} diff --git a/Bolt_Dash/web.h b/Bolt_Dash/web.h new file mode 100644 index 0000000..ab150a6 --- /dev/null +++ b/Bolt_Dash/web.h @@ -0,0 +1,8 @@ +#ifndef WEB_H +#define WEB_H + +namespace web { + void runApp(); +} + +#endif // !WEB)H From 4f9bdfa5ae27c2e858f6adec412fb04f19789d9b Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 15:40:48 -0400 Subject: [PATCH 121/165] Added can data for other types of bms errors/warnings --- Bolt_Dash/backend.cpp | 2 +- Bolt_Dash/can.cpp | 11 ++++++++++- Bolt_Dash/can.h | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 383ca0f..3195921 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -33,7 +33,7 @@ void Backend::updateVars() { setMotorSpeed(data.motor_speed); // rpm setBikeSpeed(data.motor_speed * RPM_TO_SPEED); // mph setMcTemp(data.mc_temperature / 10.0); // celsius - setBmsFault(data.bms_error); + setBmsFault(data.bms_fault); setMotorOn(data.motor_on); setMcFault(data.mc_fault); setBikeStatus(data.bike_status); diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index bfa2675..4c60817 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -59,7 +59,7 @@ namespace can { break; case can_ids.info: data.pack_state_of_charge = frame.data[4]; - data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.bms_fault = frame.data[5] & BMS_FAULT_MASK; data.pack_current = frame.data[0] + (frame.data[1] << 8); data.pack_voltage = frame.data[2] + (frame.data[3] << 8); break; @@ -123,6 +123,15 @@ namespace can { data.motor_on = frame.data[0] == 6; break; }; + case can_ids.bms_error_codes: + // aaaaaaaabbbbbbbbccccccc + // a: DTC codes 2 bits 9-16 + // b: DTC codes 2 bits 1-8 + // c: DTC codes 1 bits 1-8 + data.bms_error_codes = (frame.data[2]) + (frame.data[0] << 8) + (frame.data[1] << 16); + data.bms_error = data.bms_error_codes & ALL_BMS_ERRORS; + data.bms_warning = data.bms_error_codes & ALL_BMS_WARNINGS; + break; default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 91db121..6ce2273 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -26,7 +26,10 @@ struct our_candata { uint16_t mc_temperature{}; int16_t motor_speed{}; int16_t bike_speed{}; + uint8_t bms_fault{}; uint8_t bms_error{}; + uint8_t bms_warning{}; + uint32_t bms_error_codes{}; uint8_t mc_fault{}; uint8_t motor_on{}; uint8_t bike_status{}; @@ -37,6 +40,7 @@ constexpr struct { canid_t aux_battery{0x700}; canid_t info{0x6B0}; canid_t main_pack_temp{0x6B4}; + canid_t bms_error_codes{0x6B6}; canid_t motor_temp{0xA2}; canid_t bms_temp{0x6B1}; canid_t mc_temp{0xA0}; @@ -46,6 +50,40 @@ constexpr struct { canid_t internal_states{0x0AA}; } can_ids; +struct { + uint32_t discharge_limit_enforcement{1 << 0}; + uint32_t cell_balancing_stuck_off{1 << 9}; + uint32_t weak_cell{1 << 10}; + uint32_t current_sensor{1 << 13}; + uint32_t weak_pack{1 << 16}; + uint32_t fan_monitor{1 << 17}; +} bms_warnings; + +constexpr struct { + uint32_t charger_safety_relay{1 << 1}; + uint32_t internal_hardware{1 << 2}; + uint32_t internal_heatsink_thermistor{1 << 3}; + uint32_t internal_software{1 << 4}; + uint32_t highest_cell_voltage_too_high{1 << 5}; + uint32_t lowest_cell_voltage_too_low{1 << 6}; + uint32_t pack_too_hot{1 << 7}; + uint32_t internal_communication{1 << 8}; + uint32_t low_cell_voltage{1 << 11}; + uint32_t open_wiring{1 << 12}; + uint32_t highest_cell_voltage_over_5v{1 << 14}; + uint32_t cell_asic_fault{1 << 15}; + uint32_t thermistor_fault{1 << 18}; + uint32_t external_communication{1 << 19}; + uint32_t redundant_power_supply{1 << 20}; + uint32_t high_voltage_isolation{1 << 21}; + uint32_t input_power_supply{1 << 22}; + uint32_t charge_limit_enforcement{1 << 23}; + +} bms_errors; + +const uint32_t ALL_BMS_ERRORS = bms_errors.charger_safety_relay | bms_errors.internal_hardware | bms_errors.internal_heatsink_thermistor | bms_errors.internal_software | bms_errors.highest_cell_voltage_too_high | bms_errors.lowest_cell_voltage_too_low | bms_errors.pack_too_hot | bms_errors.internal_communication | bms_errors.low_cell_voltage | bms_errors.open_wiring | bms_errors.highest_cell_voltage_over_5v | bms_errors.cell_asic_fault | bms_errors.thermistor_fault | bms_errors.external_communication | bms_errors.redundant_power_supply | bms_errors.high_voltage_isolation | bms_errors.input_power_supply | bms_errors.charge_limit_enforcement; +const uint32_t ALL_BMS_WARNINGS = bms_warnings.discharge_limit_enforcement | bms_warnings.cell_balancing_stuck_off | bms_warnings.weak_cell | bms_warnings.current_sensor | bms_warnings.weak_pack | bms_warnings.fan_monitor; + extern std::mutex m; extern our_candata data; From e68dc0ca4d9050b73524c335d23fa59beb82978b Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 15:42:29 -0400 Subject: [PATCH 122/165] Removed extraneous backend files --- Bolt_Dash/content/App.qml | 1 - Bolt_Dash/content/Debug1.qml | 15 -- Bolt_Dash/imports/Backend/CMakeLists.txt | 16 -- Bolt_Dash/imports/Backend/backend.cpp | 187 ----------------------- Bolt_Dash/imports/Backend/backend.h | 90 ----------- Bolt_Dash/imports/Backend/can.cpp | 108 ------------- Bolt_Dash/imports/Backend/can.h | 57 ------- Bolt_Dash/imports/CMakeLists.txt | 1 - Bolt_Dash/qmlmodules | 1 - 9 files changed, 476 deletions(-) delete mode 100644 Bolt_Dash/imports/Backend/CMakeLists.txt delete mode 100644 Bolt_Dash/imports/Backend/backend.cpp delete mode 100644 Bolt_Dash/imports/Backend/backend.h delete mode 100644 Bolt_Dash/imports/Backend/can.cpp delete mode 100644 Bolt_Dash/imports/Backend/can.h diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 112fa4f..3b07913 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -3,7 +3,6 @@ import QtQuick 6.2 import Bolt_Dash -import Backend import IO Window { diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index c4236de..7497b55 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -1,22 +1,7 @@ import QtQuick 2.15 -import Backend import QtQuick.Shapes Item { - Backend { - id: backend - motorTemp: 0 - auxVoltage: 0 - auxPercent: 0 - packSOC: 0 - packVoltage: 0 - highCellTemp: 0 - lowCellTemp: 0 - bmsTemp: 0 - motorSpeed: 0 - bikeSpeed: 0 - } - DebugItem1 { id: debug1 motorTemp: backend.motorTemp diff --git a/Bolt_Dash/imports/Backend/CMakeLists.txt b/Bolt_Dash/imports/Backend/CMakeLists.txt deleted file mode 100644 index 575b479..0000000 --- a/Bolt_Dash/imports/Backend/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -### This file is automatically generated by Qt Design Studio. -### Do not change - -qt_add_library(Backend STATIC) - -qt6_add_qml_module(BackendPlugin - URI "Backend" - VERSION 1.0 - SOURCES - can.cpp - can.h - backend.h - backend.cpp - RESOURCE_PREFIX "/" -) - diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp deleted file mode 100644 index 41db9b2..0000000 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ /dev/null @@ -1,187 +0,0 @@ -#include "backend.h" -#include "can.h" -#include - -// Create Backend class which can be included in QML -Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, - m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, - m_packCurrent{} { - std::thread update_vars(&Backend::updateVars, this); - update_vars.detach(); -} - -// Calls the set functions with the values from data -void Backend::updateVars() { - while (true) { - m.lock(); - // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius - setAuxVoltage(data.aux_voltage / 10.0); // volts - setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage / 10.0); // volts - setPackCurrent(data.pack_current / 10.0); // amps - setHighCellTemp(data.high_cell_temp); // celsius - setLowCellTemp(data.low_cell_temp); // celsius - setBmsTemp(data.bms_temperature); // celsius - setMotorSpeed(data.motor_speed); // rpm - setBikeSpeed(data.motor_speed * 19 / 45 * 27.63 * M_PI / 1056); // mph - setMcTemp(data.mc_temperature / 10.0); // celsius - setBmsFault(data.bms_error); - m.unlock(); - // Debug Message - // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(1)); - } -} - -// Functions to get variable values -// { // Brackets for collapsability -double Backend::motorTemp() const { - return m_motorTemp; -} - -double Backend::auxVoltage() const { - return m_auxVoltage; -} - -double Backend::auxPercent() const { - return m_auxPercent; -} - -double Backend::packSOC() const { - return m_packSOC; -} - -double Backend::packVoltage() const { - return m_packVoltage; -} - -double Backend::highCellTemp() const { - return m_highCellTemp; -} - -double Backend::lowCellTemp() const { - return m_lowCellTemp; -} - -double Backend::bmsTemp() const { - return m_bmsTemp; -} - -double Backend::motorSpeed() const { - return m_motorSpeed; -} - -double Backend::bikeSpeed() const { - return m_bikeSpeed; -} - -double Backend::mcTemp() const { - return m_mcTemp; -} - -bool Backend::bmsFault() const { - return m_bmsFault; -} - -double Backend::packCurrent() const { - return m_packCurrent; -} -// } - -// Setter Functions -// { // Brackets for collapsability -void Backend::setMotorTemp(const double temp) { - if (m_motorTemp != temp) { - m_motorTemp = temp; - emit motorTempChanged(); - } -} - -void Backend::setAuxVoltage(const double cap) { - if (m_auxVoltage != cap) { - m_auxVoltage = cap; - emit auxVoltageChanged(); - } -} - -void Backend::setAuxPercent(const double cap) { - if (m_auxPercent != cap) { - m_auxPercent = cap; - emit auxPercentChanged(); - } -} - -void Backend::setPackSOC(const double soc) { - if (m_packSOC != soc) { - m_packSOC = soc; - emit packSOCChanged(); - } -} - -void Backend::setPackVoltage(const double voltage) { - if (m_packVoltage != voltage) { - m_packVoltage = voltage; - emit packVoltageChanged(); - } -} - -void Backend::setHighCellTemp(const double temp) { - if (m_highCellTemp != temp) { - m_highCellTemp = temp; - emit highCellTempChanged(); - } -} - -void Backend::setLowCellTemp(const double temp) { - if (m_lowCellTemp != temp) { - m_lowCellTemp = temp; - emit lowCellTempChanged(); - } -} - -void Backend::setBmsTemp(const double temp) { - if (m_bmsTemp != temp) { - m_bmsTemp = temp; - emit bmsTempChanged(); - } -} - -void Backend::setMotorSpeed(const double speed) { - if (m_motorSpeed != speed) { - m_motorSpeed = speed; - emit motorSpeedChanged(); - } -} - -void Backend::setBikeSpeed(const double speed) { - if (m_bikeSpeed != speed) { - m_bikeSpeed = speed; - emit bikeSpeedChanged(); - } -} - -void Backend::setMcTemp(const double temp) { - if (m_mcTemp != temp) { - m_mcTemp = temp; - emit mcTempChanged(); - } -} - -void Backend::setBmsFault(const bool fault) { - if (m_bmsFault != fault) { - m_bmsFault = fault; - emit bmsFaultChanged(); - } -} - -void Backend::setPackCurrent(const double current) { - if (m_packCurrent != current) { - m_packCurrent = current; - emit packCurrentChanged(); - } -} -// } - -std::thread can_thread(can::run); diff --git a/Bolt_Dash/imports/Backend/backend.h b/Bolt_Dash/imports/Backend/backend.h deleted file mode 100644 index c087ba2..0000000 --- a/Bolt_Dash/imports/Backend/backend.h +++ /dev/null @@ -1,90 +0,0 @@ -#ifndef BACKEND_H -#define BACKEND_H - -#include -#include -#include -#include -#include -#include - -class Backend : public QObject { - Q_OBJECT - QML_ELEMENT - Q_PROPERTY(double motorTemp READ motorTemp WRITE setMotorTemp NOTIFY motorTempChanged); - Q_PROPERTY(double auxVoltage READ auxVoltage WRITE setAuxVoltage NOTIFY auxVoltageChanged); - Q_PROPERTY(double auxPercent READ auxPercent WRITE setAuxPercent NOTIFY auxPercentChanged); - Q_PROPERTY(double packSOC READ packSOC WRITE setPackSOC NOTIFY packSOCChanged); - Q_PROPERTY(double packVoltage READ packVoltage WRITE setPackVoltage NOTIFY packVoltageChanged); - Q_PROPERTY(double highCellTemp READ highCellTemp WRITE setHighCellTemp NOTIFY highCellTempChanged); - Q_PROPERTY(double lowCellTemp READ lowCellTemp WRITE setLowCellTemp NOTIFY lowCellTempChanged); - Q_PROPERTY(double bmsTemp READ bmsTemp WRITE setBmsTemp NOTIFY bmsTempChanged); - Q_PROPERTY(double motorSpeed READ motorSpeed WRITE setMotorSpeed NOTIFY motorSpeedChanged); - Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged); - Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged); - Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged); - Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged); - -public: - explicit Backend(QObject *parent = nullptr); - double motorTemp() const; - double auxVoltage() const; - double auxPercent() const; - double packSOC() const; - double packVoltage() const; - double highCellTemp() const; - double lowCellTemp() const; - double bmsTemp() const; - double motorSpeed() const; - double bikeSpeed() const; - double mcTemp() const; - bool bmsFault() const; - double packCurrent() const; - - void setMotorTemp(const double temp); - void setAuxVoltage(const double cap); - void setAuxPercent(const double cap); - void setPackSOC(const double soc); - void setPackVoltage(const double voltage); - void setHighCellTemp(const double temp); - void setLowCellTemp(const double temp); - void setBmsTemp(const double temp); - void setMotorSpeed(const double speed); - void setBikeSpeed(const double speed); - void setMcTemp(const double temp); - void setBmsFault(const bool fault); - void setPackCurrent(const double current); - -signals: - void motorTempChanged(); - void auxVoltageChanged(); - void auxPercentChanged(); - void packSOCChanged(); - void packVoltageChanged(); - void highCellTempChanged(); - void lowCellTempChanged(); - void bmsTempChanged(); - void motorSpeedChanged(); - void bikeSpeedChanged(); - void mcTempChanged(); - void bmsFaultChanged(); - void packCurrentChanged(); - -private: - void updateVars(); - double m_motorTemp; - double m_auxVoltage; - double m_auxPercent; - double m_packSOC; - double m_packVoltage; - double m_highCellTemp; - double m_lowCellTemp; - double m_bmsTemp; - double m_motorSpeed; - double m_bikeSpeed; - double m_mcTemp; - bool m_bmsFault; - double m_packCurrent; -}; - -#endif // BACKEND_H diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp deleted file mode 100644 index cb990b9..0000000 --- a/Bolt_Dash/imports/Backend/can.cpp +++ /dev/null @@ -1,108 +0,0 @@ -#include "can.h" - -using namespace std::chrono_literals; - -std::mutex m; -our_candata data{}; - -namespace can { - int run() { - // Where the data will be stored to be send to the front end - int s, i; - int nbytes; - struct sockaddr_can addr; - struct ifreq ifr; - struct can_frame frame; - int8_t *unknown_data = nullptr; - - printf("CAN Sockets Receive Demo\r\n"); - - // Create a new socket of type CAN using data CAN_RAW - if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) { - perror("Socket"); - return 1; - } - - // Setting the name of the physical can interface (ip a) - strcpy(ifr.ifr_name, "can0"); - // Converts if name to actual interface index - ioctl(s, SIOCGIFINDEX, &ifr); - - // Reserve memory for CAN frames - memset(&addr, 0, sizeof(addr)); - addr.can_family = AF_CAN; // Use CAN sockets specifically - addr.can_ifindex = ifr.ifr_ifindex; - - // Connects to the socket and it locks - if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { - perror("Bind"); - return 1; - } - - while (true) { - // Actually reads from the socket - nbytes = read(s, &frame, sizeof(struct can_frame)); - - // Make sure it exists - if (nbytes < 0) { - perror("Read"); - return 1; - } - m.lock(); - switch (frame.can_id) { - case can_ids.aux_battery: - data.aux_voltage = frame.data[0] + (frame.data[1] << 8); - data.aux_percent = data.aux_voltage / 2.5; - break; - case can_ids.info: - data.pack_state_of_charge = frame.data[4]; - data.bms_error = frame.data[5] & BMS_FAULT_MASK; - data.pack_voltage = frame.data[2] + (frame.data[3] << 8); - data.pack_current = frame.data[0] + (frame.data[1] << 8); - break; - case can_ids.main_pack_temp: - data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); - data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.motor_temp: - data.motor_temperature = frame.data[4] + (frame.data[5] << 8); - break; - case can_ids.bms_temp: - data.bms_temperature = frame.data[4] + (frame.data[5] << 8); - break; - case can_ids.rpm: - data.motor_speed = frame.data[2] + (frame.data[3] << 8); - data.bike_speed = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.speed: - data.bike_speed = frame.data[2] + (frame.data[3] << 8); - break; - case can_ids.mc_temp: - data.mc_temperature = frame.data[0] + (frame.data[1] << 8); - default: - unknown_data = new int8_t[frame.can_dlc]; - for (int i{}; i < frame.can_dlc; i++) { - unknown_data[i] = frame.data[i]; - } - } - m.unlock(); - - // Print the can ID and len of data - // printf("0x%03X [%d] ", frame.can_id, frame.can_dlc); - - // Print the data in the CAN message - // for (i = 0; i < frame.can_dlc; i++) - // printf("%02X ", frame.data[i]); - - // printf("\r\n"); - } - - // Close socket - if (close(s) < 0) { - perror("Close"); - return 1; - } - - return 0; - } -} diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h deleted file mode 100644 index 138a2e1..0000000 --- a/Bolt_Dash/imports/Backend/can.h +++ /dev/null @@ -1,57 +0,0 @@ -#ifndef CAN_H -#define CAN_H - -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -#define BMS_FAULT_MASK (1 << 3) - -struct our_candata { - uint8_t aux_voltage{}; - uint8_t aux_percent{}; - uint8_t pack_state_of_charge{}; - uint16_t pack_voltage{}; - uint16_t pack_current{}; - uint16_t high_cell_temp{}; - uint16_t low_cell_temp{}; - int16_t motor_temperature{}; - uint16_t bms_temperature{}; - uint16_t mc_temperature{}; - int16_t motor_speed{}; - int16_t bike_speed{}; - uint8_t bms_error{}; -}; - -// ID's for each CAN thing -constexpr struct { - canid_t aux_battery{0x700}; - canid_t info{0x6B0}; - canid_t main_pack_temp{0x6B4}; - canid_t motor_temp{0xA2}; - canid_t bms_temp{0x6B1}; - canid_t mc_temp{0xA1}; - canid_t rpm{0xA5}; - canid_t speed{0x00}; -} can_ids; - -extern std::mutex m; -extern our_candata data; - -namespace can { - int run(); -} - -#endif // CAN_H diff --git a/Bolt_Dash/imports/CMakeLists.txt b/Bolt_Dash/imports/CMakeLists.txt index 43c175f..35b1948 100644 --- a/Bolt_Dash/imports/CMakeLists.txt +++ b/Bolt_Dash/imports/CMakeLists.txt @@ -2,5 +2,4 @@ ### Do not change add_subdirectory(Bolt_Dash) -add_subdirectory(Backend) add_subdirectory(IO) diff --git a/Bolt_Dash/qmlmodules b/Bolt_Dash/qmlmodules index 6f5afb5..34bda49 100644 --- a/Bolt_Dash/qmlmodules +++ b/Bolt_Dash/qmlmodules @@ -14,6 +14,5 @@ add_subdirectory(imports) target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE contentplugin Bolt_Dashplugin - BackendPlugin IOPlugin ) From 02e0a46a0836c143e951c5a4c0a6ba2bc2b815de Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 16:23:47 -0400 Subject: [PATCH 123/165] Add BMS fault details screen - not filled in yet --- Bolt_Dash/content/BMSFaultDetails.qml | 15 +++++++++ Bolt_Dash/content/CMakeLists.txt | 1 + Bolt_Dash/content/FaultMotorStatus.qml | 45 ++++++++++++++++++-------- 3 files changed, 48 insertions(+), 13 deletions(-) create mode 100644 Bolt_Dash/content/BMSFaultDetails.qml diff --git a/Bolt_Dash/content/BMSFaultDetails.qml b/Bolt_Dash/content/BMSFaultDetails.qml new file mode 100644 index 0000000..2a2f101 --- /dev/null +++ b/Bolt_Dash/content/BMSFaultDetails.qml @@ -0,0 +1,15 @@ +import QtQuick 2.15 +import QtQuick.Controls +import QtQuick.Shapes + +Window{ + x: 0 + y: 0 + width: 400 + height: 400 + + Text { + text: "Hello World" + anchors.centerIn: parent + } +} \ No newline at end of file diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 2995a2a..53f928b 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -18,6 +18,7 @@ qt6_add_qml_module(content FullBatterySlider.qml TemperatureIsland.qml FullSlider.qml + BMSFaultDetails.qml RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf diff --git a/Bolt_Dash/content/FaultMotorStatus.qml b/Bolt_Dash/content/FaultMotorStatus.qml index 054acee..d099e7b 100644 --- a/Bolt_Dash/content/FaultMotorStatus.qml +++ b/Bolt_Dash/content/FaultMotorStatus.qml @@ -1,4 +1,5 @@ import QtQuick 2.15 +import QtQuick.Controls import QtQuick.Shapes Item { @@ -79,26 +80,40 @@ Item { } // BMS Fault - Rectangle { + Button { id: bmsFaultIndicator x: motorOnIndicator.x + motorOnIndicator.width + padding y: 7 width: 50 height: width - radius: width/2 - color: "transparent" - border.width: 5 - border.color: "white" - - // Indicator circle - Rectangle { - readonly property int offset: 12 - x: offset - y: offset - width: parent.width - offset*2 + onClicked: { + bmsFault = !bmsFault + bmsFaultDetails.show() + } + flat: true + indicator: Rectangle { + // id: bmsFaultIndicator + // x: motorOnIndicator.x + motorOnIndicator.width + padding + // y: 7 + x: 0 + y: 0 + width: 50 height: width radius: width/2 - color: bmsFault ? bad : off + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 12 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: bmsFault ? bad : off + } } } @@ -203,4 +218,8 @@ Item { } } } + + BMSFaultDetails { + id: bmsFaultDetails + } } From 61ef39113ef85e743da0573e8fd0da7d9a3ed2d5 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 18:07:26 -0400 Subject: [PATCH 124/165] Add strings for bms warnings --- .gitignore | 3 +- Bolt_Dash/backend.cpp | 110 +++++++++++++++++++++++++- Bolt_Dash/backend.h | 15 +++- Bolt_Dash/can.h | 4 +- Bolt_Dash/content/BMSFaultDetails.qml | 19 ++++- Bolt_Dash/src/main.cpp | 3 +- 6 files changed, 141 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 4d188ec..405fbc1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ **Debug **.user *.qtds.** -**/CMakeCache.txt \ No newline at end of file +**/CMakeCache.txt +.clangd \ No newline at end of file diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 3195921..8563823 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -1,19 +1,21 @@ #include "backend.h" #include "can.h" #include "web.h" +#include +#include #define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, - m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{} { + m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{}, m_bmsErrorCodes{}, + m_bmsErrorCodesString{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); std::thread run_app(&web::runApp); run_app.detach(); - // web::runApp(); } // Calls the set functions with the values from data @@ -37,6 +39,9 @@ void Backend::updateVars() { setMotorOn(data.motor_on); setMcFault(data.mc_fault); setBikeStatus(data.bike_status); + setBmsErrorCodes(data.bms_error_codes); + std::vector warnings = getErrorCodeStrings(0xFFFFFFFF); + setBmsErrorCodesString(warnings); m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; @@ -44,6 +49,85 @@ void Backend::updateVars() { } } +std::vector Backend::getErrorCodeStrings(uint32_t errorCodes) { + std::vector warnings; + // Warnings + if (errorCodes & bms_warnings.discharge_limit_enforcement) { + warnings.push_back("Discharge Limit Enforcement"); + } + if (errorCodes & bms_warnings.cell_balancing_stuck_off) { + warnings.push_back("Cell Balancing Stuck Off"); + } + if (errorCodes & bms_warnings.weak_cell) { + warnings.push_back("Weak Cell"); + } + if (errorCodes & bms_warnings.current_sensor) { + warnings.push_back("Current Sensor"); + } + if (errorCodes & bms_warnings.weak_pack) { + warnings.push_back("Weak Pack"); + } + if (errorCodes & bms_warnings.fan_monitor) { + warnings.push_back("Fan Monitor"); + } + // Errors + if (errorCodes & bms_errors.charger_safety_relay) { + warnings.push_back("Charger Safety Relay"); + } + if (errorCodes & bms_errors.internal_hardware) { + warnings.push_back("Internal Hardware"); + } + if (errorCodes & bms_errors.internal_heatsink_thermistor) { + warnings.push_back("Internal Heatsink Thermistor"); + } + if (errorCodes & bms_errors.internal_software) { + warnings.push_back("Internal Software"); + } + if (errorCodes & bms_errors.highest_cell_voltage_too_high) { + warnings.push_back("Highest Cell Voltage Too Low"); + } + if (errorCodes & bms_errors.lowest_cell_voltage_too_low) { + warnings.push_back("Lowest Cell Voltage Too Low"); + } + if (errorCodes & bms_errors.pack_too_hot) { + warnings.push_back("Pack Too Hot"); + } + if (errorCodes & bms_errors.internal_communication) { + warnings.push_back("Internal Communication"); + } + if (errorCodes & bms_errors.low_cell_voltage) { + warnings.push_back("Low Cell Voltage"); + } + if (errorCodes & bms_errors.open_wiring) { + warnings.push_back("Open Wiring"); + } + if (errorCodes & bms_errors.highest_cell_voltage_over_5v) { + warnings.push_back("Highest Cell Voltage Over 5v"); + } + if (errorCodes & bms_errors.cell_asic_fault) { + warnings.push_back("Cell ASIC Fault"); + } + if (errorCodes & bms_errors.thermistor_fault) { + warnings.push_back("Thermistor Fault"); + } + if (errorCodes & bms_errors.external_communication) { + warnings.push_back("External Communication"); + } + if (errorCodes & bms_errors.redundant_power_supply) { + warnings.push_back("Redundant Power Supply"); + } + if (errorCodes & bms_errors.high_voltage_isolation) { + warnings.push_back("High Voltage Isolation"); + } + if (errorCodes & bms_errors.input_power_supply) { + warnings.push_back("Input Power Supply"); + } + if (errorCodes & bms_errors.charge_limit_enforcement) { + warnings.push_back("Charge Limit Enforcement"); + } + return warnings; +} + // Functions to get variable values // { // Brackets for collapsability double Backend::motorTemp() const { @@ -110,6 +194,14 @@ double Backend::packCurrent() const { return m_packCurrent; } +uint32_t Backend::bmsErrorCodes() const { + return m_bmsErrorCodes; +} + +std::vector Backend::bmsErrorCodesString() const { + return m_bmsErrorCodesString; +} + // } // Setter Functions @@ -225,6 +317,20 @@ void Backend::setPackCurrent(const double current) { emit packCurrentChanged(); } } + +void Backend::setBmsErrorCodes(const uint32_t warnings) { + if (m_bmsErrorCodes != warnings) { + m_bmsErrorCodes = warnings; + emit bmsErrorCodesChanged(); + } +} + +void Backend::setBmsErrorCodesString(const std::vector warnings) { + if (m_bmsErrorCodesString != warnings) { + m_bmsErrorCodesString = warnings; + emit bmsErrorCodesStringChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 8a024fe..0f8656f 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -3,10 +3,8 @@ #include #include -#include -#include #include -#include +#include class Backend : public QObject { Q_OBJECT @@ -27,6 +25,8 @@ class Backend : public QObject { Q_PROPERTY(bool motorOn READ motorOn WRITE setMotorOn NOTIFY motorOnChanged); Q_PROPERTY(int bikeStatus READ bikeStatus WRITE setBikeStatus NOTIFY bikeStatusChanged); Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged); + Q_PROPERTY(uint32_t bmsErrorCodes READ bmsErrorCodes WRITE setBmsErrorCodes NOTIFY bmsErrorCodesChanged); + Q_PROPERTY(std::vector bmsErrorCodesString READ bmsErrorCodesString NOTIFY bmsErrorCodesStringChanged); public: explicit Backend(QObject *parent = nullptr); @@ -46,6 +46,8 @@ class Backend : public QObject { bool motorOn() const; int bikeStatus() const; double packCurrent() const; + uint32_t bmsErrorCodes() const; + std::vector bmsErrorCodesString() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -63,6 +65,8 @@ class Backend : public QObject { void setMotorOn(const bool on); void setBikeStatus(const int status); void setPackCurrent(const double current); + void setBmsErrorCodes(const uint32_t warnings); + void setBmsErrorCodesString(const std::vector warnings); signals: void motorTempChanged(); @@ -81,9 +85,12 @@ class Backend : public QObject { void motorOnChanged(); void bikeStatusChanged(); void packCurrentChanged(); + void bmsErrorCodesChanged(); + void bmsErrorCodesStringChanged(); private: void updateVars(); + std::vector getErrorCodeStrings(uint32_t errorCodes); double m_motorTemp; double m_auxVoltage; double m_auxPercent; @@ -100,6 +107,8 @@ class Backend : public QObject { bool m_motorOn; int m_bikeStatus; double m_packCurrent; + uint32_t m_bmsErrorCodes; + std::vector m_bmsErrorCodesString; }; #endif // BACKEND_H diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 6ce2273..219af53 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -50,7 +50,7 @@ constexpr struct { canid_t internal_states{0x0AA}; } can_ids; -struct { +constexpr struct { uint32_t discharge_limit_enforcement{1 << 0}; uint32_t cell_balancing_stuck_off{1 << 9}; uint32_t weak_cell{1 << 10}; @@ -78,12 +78,10 @@ constexpr struct { uint32_t high_voltage_isolation{1 << 21}; uint32_t input_power_supply{1 << 22}; uint32_t charge_limit_enforcement{1 << 23}; - } bms_errors; const uint32_t ALL_BMS_ERRORS = bms_errors.charger_safety_relay | bms_errors.internal_hardware | bms_errors.internal_heatsink_thermistor | bms_errors.internal_software | bms_errors.highest_cell_voltage_too_high | bms_errors.lowest_cell_voltage_too_low | bms_errors.pack_too_hot | bms_errors.internal_communication | bms_errors.low_cell_voltage | bms_errors.open_wiring | bms_errors.highest_cell_voltage_over_5v | bms_errors.cell_asic_fault | bms_errors.thermistor_fault | bms_errors.external_communication | bms_errors.redundant_power_supply | bms_errors.high_voltage_isolation | bms_errors.input_power_supply | bms_errors.charge_limit_enforcement; const uint32_t ALL_BMS_WARNINGS = bms_warnings.discharge_limit_enforcement | bms_warnings.cell_balancing_stuck_off | bms_warnings.weak_cell | bms_warnings.current_sensor | bms_warnings.weak_pack | bms_warnings.fan_monitor; - extern std::mutex m; extern our_candata data; diff --git a/Bolt_Dash/content/BMSFaultDetails.qml b/Bolt_Dash/content/BMSFaultDetails.qml index 2a2f101..3d7550b 100644 --- a/Bolt_Dash/content/BMSFaultDetails.qml +++ b/Bolt_Dash/content/BMSFaultDetails.qml @@ -8,8 +8,21 @@ Window{ width: 400 height: 400 - Text { - text: "Hello World" - anchors.centerIn: parent + Column { + Repeater { + model: getBMSWarnings() + Text { + required property string modelData + text: modelData + } + } + } + + function getBMSWarnings() { + var myText = [] + for (var i = 0; i < backend.bmsErrorCodesString.length; i++) { + myText.push(backend.bmsErrorCodesString[i]) + } + return myText } } \ No newline at end of file diff --git a/Bolt_Dash/src/main.cpp b/Bolt_Dash/src/main.cpp index 903be7e..8991f42 100644 --- a/Bolt_Dash/src/main.cpp +++ b/Bolt_Dash/src/main.cpp @@ -6,10 +6,11 @@ #include #include "app_environment.h" +#include "backend.h" +#include "can.h" #include "import_qml_components_plugins.h" #include "import_qml_plugins.h" #include "qfont.h" -#include "backend.h" int main(int argc, char *argv[]) { set_qt_environment(); From 6bcf4fdd9a4fe932d0ff29d3ed3ae650e79c374f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 9 May 2024 18:38:11 -0400 Subject: [PATCH 125/165] Add BMS warning light difference between error and warning --- Bolt_Dash/backend.cpp | 30 +++++++++- Bolt_Dash/backend.h | 11 ++++ Bolt_Dash/content/BMSFaultDetails.qml | 77 ++++++++++++++++++++++++-- Bolt_Dash/content/FaultMotorStatus.qml | 8 ++- Bolt_Dash/content/Screen01.ui.qml | 3 +- 5 files changed, 116 insertions(+), 13 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 8563823..a61c0b4 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -1,8 +1,8 @@ #include "backend.h" #include "can.h" #include "web.h" -#include #include +#include #define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) @@ -10,7 +10,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{}, m_bmsErrorCodes{}, - m_bmsErrorCodesString{} { + m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); @@ -40,7 +40,9 @@ void Backend::updateVars() { setMcFault(data.mc_fault); setBikeStatus(data.bike_status); setBmsErrorCodes(data.bms_error_codes); - std::vector warnings = getErrorCodeStrings(0xFFFFFFFF); + setBmsError(data.bms_error); + setBmsWarning(data.bms_warning); + std::vector warnings = getErrorCodeStrings(data.bms_error_codes); setBmsErrorCodesString(warnings); m.unlock(); // Debug Message @@ -194,6 +196,14 @@ double Backend::packCurrent() const { return m_packCurrent; } +bool Backend::bmsError() const { + return m_bmsError; +} + +bool Backend::bmsWarning() const { + return m_bmsWarning; +} + uint32_t Backend::bmsErrorCodes() const { return m_bmsErrorCodes; } @@ -318,6 +328,20 @@ void Backend::setPackCurrent(const double current) { } } +void Backend::setBmsError(const bool error) { + if (m_bmsError != error) { + m_bmsError = error; + emit bmsErrorChanged(); + } +} + +void Backend::setBmsWarning(const bool warning) { + if (m_bmsWarning != warning) { + m_bmsWarning = warning; + emit bmsWarningChanged(); + } +} + void Backend::setBmsErrorCodes(const uint32_t warnings) { if (m_bmsErrorCodes != warnings) { m_bmsErrorCodes = warnings; diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 0f8656f..b426c5d 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -1,6 +1,7 @@ #ifndef BACKEND_H #define BACKEND_H +#include "qtmetamacros.h" #include #include #include @@ -26,6 +27,8 @@ class Backend : public QObject { Q_PROPERTY(int bikeStatus READ bikeStatus WRITE setBikeStatus NOTIFY bikeStatusChanged); Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged); Q_PROPERTY(uint32_t bmsErrorCodes READ bmsErrorCodes WRITE setBmsErrorCodes NOTIFY bmsErrorCodesChanged); + Q_PROPERTY(bool bmsError READ bmsError WRITE setBmsError NOTIFY bmsErrorChanged); + Q_PROPERTY(bool bmsWarning READ bmsWarning WRITE setBmsWarning NOTIFY bmsWarningChanged); Q_PROPERTY(std::vector bmsErrorCodesString READ bmsErrorCodesString NOTIFY bmsErrorCodesStringChanged); public: @@ -46,6 +49,8 @@ class Backend : public QObject { bool motorOn() const; int bikeStatus() const; double packCurrent() const; + bool bmsError() const; + bool bmsWarning() const; uint32_t bmsErrorCodes() const; std::vector bmsErrorCodesString() const; @@ -65,6 +70,8 @@ class Backend : public QObject { void setMotorOn(const bool on); void setBikeStatus(const int status); void setPackCurrent(const double current); + void setBmsError(const bool error); + void setBmsWarning(const bool warning); void setBmsErrorCodes(const uint32_t warnings); void setBmsErrorCodesString(const std::vector warnings); @@ -85,6 +92,8 @@ class Backend : public QObject { void motorOnChanged(); void bikeStatusChanged(); void packCurrentChanged(); + void bmsErrorChanged(); + void bmsWarningChanged(); void bmsErrorCodesChanged(); void bmsErrorCodesStringChanged(); @@ -107,6 +116,8 @@ class Backend : public QObject { bool m_motorOn; int m_bikeStatus; double m_packCurrent; + bool m_bmsError; + bool m_bmsWarning; uint32_t m_bmsErrorCodes; std::vector m_bmsErrorCodesString; }; diff --git a/Bolt_Dash/content/BMSFaultDetails.qml b/Bolt_Dash/content/BMSFaultDetails.qml index 3d7550b..0a72595 100644 --- a/Bolt_Dash/content/BMSFaultDetails.qml +++ b/Bolt_Dash/content/BMSFaultDetails.qml @@ -8,12 +8,77 @@ Window{ width: 400 height: 400 - Column { - Repeater { - model: getBMSWarnings() - Text { - required property string modelData - text: modelData + Rectangle { + border.color: "black" + border.width: 2 + width: 350 + height: 300 + x: 20 + y: 5 + ScrollView { + x: 5 + y: 5 + width: parent.width - 10 + height: parent.height - 10 + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + ScrollBar.vertical.policy: ScrollBar.AlwaysOn + ScrollBar.horizontal.interactive: false + ScrollBar.vertical.interactive: true + Column { + Repeater { + model: getBMSWarnings() + Text { + required property string modelData + text: modelData + } + } + } + } + } + + Rectangle { + border.color: "black" + border.width: 2 + width: 350 + height: 85 + x: 20 + y: 310 + + Text { + x: 5 + y: 5 + width: parent.width - 10 + text: "Clear BMS Fault Codes?" + horizontalAlignment: Text.AlignHCenter + font.bold: true + font.italic: true + } + + Row { + x: 10 + y: 25 + width: parent.width - 20 + spacing: 10 + Button { + width: parent.width / 2 - 5 + text: "Yes" + + Rectangle { + width: parent.width + height: parent.height + color: "grey" + } + } + + Button { + width: parent.width / 2 - 5 + text: "No" + + Rectangle { + width: parent.width + height: parent.height + color: "grey" + } } } } diff --git a/Bolt_Dash/content/FaultMotorStatus.qml b/Bolt_Dash/content/FaultMotorStatus.qml index d099e7b..2bc1a7f 100644 --- a/Bolt_Dash/content/FaultMotorStatus.qml +++ b/Bolt_Dash/content/FaultMotorStatus.qml @@ -6,13 +6,15 @@ Item { width: 400 height: 150 property bool motorOn: false - property bool bmsFault: false + property bool bmsError: false + property bool bmsWarning: false property bool mcFault: false readonly property string red: "#e80c0c" readonly property string green: "#54c45e" readonly property int padding: 10 readonly property color good: green readonly property color bad: red + readonly property color warn: "orange" readonly property color off: "black" id: root @@ -87,7 +89,7 @@ Item { width: 50 height: width onClicked: { - bmsFault = !bmsFault + bmsError = !bmsError bmsFaultDetails.show() } flat: true @@ -112,7 +114,7 @@ Item { width: parent.width - offset*2 height: width radius: width/2 - color: bmsFault ? bad : off + color: bmsError ? bad : (bmsWarning ? warn : off) } } } diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 2899059..be8881d 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -95,6 +95,7 @@ Rectangle { y: speedometer.y + speedometer.height + 40 motorOn: backend.motorOn mcFault: backend.mcFault - bmsFault: backend.bmsFault + bmsError: backend.bmsError + bmsWarning: backend.bmsWarning } } From 9562d5e968f416536848b3c93e4449f48be4f647 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 19 May 2024 15:45:28 -0400 Subject: [PATCH 126/165] Standardize scaling of CAN data because it needs to be done separately in the rest API and dash backend --- Bolt_Dash/backend.cpp | 28 ++++++++++++++-------------- Bolt_Dash/constants.h | 15 +++++++++++++++ Bolt_Dash/web.cpp | 20 +++++++++++--------- Bolt_Dash/web.h | 2 ++ 4 files changed, 42 insertions(+), 23 deletions(-) create mode 100644 Bolt_Dash/constants.h diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index a61c0b4..8c7cb0e 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -1,11 +1,10 @@ #include "backend.h" #include "can.h" +#include "constants.h" #include "web.h" #include #include -#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) - // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, @@ -23,18 +22,19 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius - setAuxVoltage(data.aux_voltage / 10.0); // volts - setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 200.0); // percent - setPackVoltage(data.pack_voltage / 10.0); // Voltage - setPackCurrent(data.pack_current / 10.0); // amps - setHighCellTemp(data.high_cell_temp); // celsius - setLowCellTemp(data.low_cell_temp); // celsius - setBmsTemp(data.bms_temperature); // celsius - setMotorSpeed(data.motor_speed); // rpm - setBikeSpeed(data.motor_speed * RPM_TO_SPEED); // mph - setMcTemp(data.mc_temperature / 10.0); // celsius + // all scaling defined in constants.h + setMotorTemp(data.motor_temperature * MOTOR_TEMPERATURE_SCALE); // celsius + setAuxVoltage(data.aux_voltage * AUX_VOLTAGE_SCALE); // volts + setAuxPercent(data.aux_percent * AUX_PERCENT_SCALE); // percent + setPackSOC(data.pack_state_of_charge * PACK_STATE_OF_CHARGE_SCALE); // percent + setPackVoltage(data.pack_voltage * PACK_VOLTAGE_SCALE); // Voltage + setPackCurrent(data.pack_current * PACK_CURRENT_SCALE); // amps + setHighCellTemp(data.high_cell_temp * HIGH_CELL_TEMP_SCALE); // celsius + setLowCellTemp(data.low_cell_temp * LOW_CELL_TEMP_SCALE); // celsius + setBmsTemp(data.bms_temperature * BMS_TEMPERATURE_SCALE); // celsius + setMotorSpeed(data.motor_speed * MOTOR_SPEED_SCALE); // rpm + setBikeSpeed(data.motor_speed * BIKE_SPEED_SCALE); // mph + setMcTemp(data.mc_temperature * MC_TEMPERATURE_SCALE); // celsius setBmsFault(data.bms_fault); setMotorOn(data.motor_on); setMcFault(data.mc_fault); diff --git a/Bolt_Dash/constants.h b/Bolt_Dash/constants.h new file mode 100644 index 0000000..b46b8aa --- /dev/null +++ b/Bolt_Dash/constants.h @@ -0,0 +1,15 @@ +#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) + +// Scaling for CAN data +#define MOTOR_TEMPERATURE_SCALE (1.0 / 10.0) +#define AUX_VOLTAGE_SCALE (1.0 / 10.0) +#define AUX_PERCENT_SCALE (1.0 / 100.0) +#define PACK_STATE_OF_CHARGE_SCALE (1.0 / 200.0) +#define PACK_VOLTAGE_SCALE (1.0 / 10.0) +#define PACK_CURRENT_SCALE (1.0 / 10.0) +#define HIGH_CELL_TEMP_SCALE (1) +#define LOW_CELL_TEMP_SCALE (1) +#define BMS_TEMPERATURE_SCALE (1) +#define MOTOR_SPEED_SCALE (1) +#define BIKE_SPEED_SCALE (RPM_TO_SPEED) +#define MC_TEMPERATURE_SCALE (1.0 / 10.0) \ No newline at end of file diff --git a/Bolt_Dash/web.cpp b/Bolt_Dash/web.cpp index 3d8e841..3ad3028 100644 --- a/Bolt_Dash/web.cpp +++ b/Bolt_Dash/web.cpp @@ -1,4 +1,6 @@ +#include "web.h" #include "can.h" +#include "constants.h" #include "crow.h" #include @@ -12,15 +14,15 @@ namespace web { std::chrono::duration now = std::chrono::system_clock::now().time_since_epoch(); crow::json::wvalue response({{"timestamp", std::chrono::duration_cast(now).count()}}); m.lock(); - response["pack_state_of_charge"] = data.pack_state_of_charge; - response["pack_current"] = data.pack_current; - response["high_cell_temp"] = data.high_cell_temp; - response["low_cell_temp"] = data.low_cell_temp; - response["motor_temperature"] = data.motor_temperature; - response["bms_temperature"] = data.bms_temperature; - response["mc_temperature"] = data.mc_temperature; - response["motor_speed"] = data.motor_speed; - response["bike_speed"] = data.bike_speed; + response["pack_state_of_charge"] = data.pack_state_of_charge * PACK_STATE_OF_CHARGE_SCALE; + response["pack_current"] = data.pack_current * PACK_CURRENT_SCALE; + response["high_cell_temp"] = data.high_cell_temp * HIGH_CELL_TEMP_SCALE; + response["low_cell_temp"] = data.low_cell_temp * LOW_CELL_TEMP_SCALE; + response["motor_temperature"] = data.motor_temperature * MOTOR_TEMPERATURE_SCALE; + response["bms_temperature"] = data.bms_temperature * BMS_TEMPERATURE_SCALE; + response["mc_temperature"] = data.mc_temperature * MC_TEMPERATURE_SCALE; + response["motor_speed"] = data.motor_speed * MOTOR_SPEED_SCALE; + response["bike_speed"] = data.bike_speed * BIKE_SPEED_SCALE; response["bms_error"] = data.bms_error; response["mc_fault"] = data.mc_fault; response["motor_on"] = data.motor_on; diff --git a/Bolt_Dash/web.h b/Bolt_Dash/web.h index ab150a6..dd9b42e 100644 --- a/Bolt_Dash/web.h +++ b/Bolt_Dash/web.h @@ -1,6 +1,8 @@ #ifndef WEB_H #define WEB_H +#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056) + namespace web { void runApp(); } From 6b017ef668382565b33a7531df7d21c558ec3810 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 27 May 2024 16:35:38 -0400 Subject: [PATCH 127/165] Start adding extra debug screens for ECUs --- Bolt_Dash/content/App.qml | 11 +++- Bolt_Dash/content/BikeStatus.qml | 4 +- Bolt_Dash/content/CMakeLists.txt | 5 ++ Bolt_Dash/content/Debug1.qml | 30 +++++++++ Bolt_Dash/content/DebugHelpers/DebugBMS.qml | 9 +++ Bolt_Dash/content/DebugHelpers/DebugMain.qml | 65 +++++++++++++++++++ Bolt_Dash/content/DebugHelpers/DebugMotor.qml | 60 +++++++++++++++++ .../content/DebugHelpers/DebugOverview.qml | 5 ++ Bolt_Dash/content/DebugHelpers/DebugPDU.qml | 9 +++ 9 files changed, 195 insertions(+), 3 deletions(-) create mode 100644 Bolt_Dash/content/DebugHelpers/DebugBMS.qml create mode 100644 Bolt_Dash/content/DebugHelpers/DebugMain.qml create mode 100644 Bolt_Dash/content/DebugHelpers/DebugMotor.qml create mode 100644 Bolt_Dash/content/DebugHelpers/DebugOverview.qml create mode 100644 Bolt_Dash/content/DebugHelpers/DebugPDU.qml diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 3b07913..29035cc 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -8,7 +8,7 @@ import IO Window { width: mainScreen.width height: mainScreen.height - property bool debugMode: false + property bool debugMode: true visible: true @@ -31,5 +31,14 @@ Window { debugMode = !debugMode } } + + Rectangle { + visible: true + color: "transparent" + border.color: "red" + border.width: 1 + height: Constants.height + width: Constants.width + } } diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index 97d0d3d..21a9d4d 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -85,7 +85,7 @@ Item { model: 5 Rectangle { required property int index - color: root.status == index ? (root.status == BikeStatus.Status.DRIVE ? root.green : "white") : "black" + color: root.status === index ? (root.status === BikeStatus.Status.DRIVE ? root.green : "white") : "black" Layout.preferredWidth: parent.width / parent.columns - parent.columnSpacing height: parent.height Text { @@ -99,4 +99,4 @@ Item { } } } -} \ No newline at end of file +} diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 53f928b..c81ad2d 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -34,4 +34,9 @@ qt6_add_qml_module(content QML_FILES DebugItem1.ui.qml QML_FILES FaultMotorStatus.qml QML_FILES SpeedometerDecorations.qml + QML_FILES DebugHelpers/DebugMain.qml + QML_FILES DebugHelpers/DebugMotor.qml + QML_FILES DebugHelpers/DebugOverview.qml + QML_FILES DebugHelpers/DebugBMS.qml + QML_FILES DebugHelpers/DebugPDU.qml ) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index 7497b55..7421569 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -1,8 +1,12 @@ import QtQuick 2.15 import QtQuick.Shapes +import "DebugHelpers" + Item { DebugItem1 { + visible: menu.selected == DebugMain.Selected.OVERVIEW + width: 650 id: debug1 motorTemp: backend.motorTemp auxVoltage: backend.auxVoltage @@ -15,4 +19,30 @@ Item { motorSpeed: backend.motorSpeed bikeSpeed: backend.bikeSpeed } + + DebugMotor { + visible: menu.selected == DebugMain.Selected.MOTOR + width: 650 + id: debugMotor + } + + DebugBMS { + visible: menu.selected == DebugMain.Selected.BMS + width: 650 + id: debugBMS + } + + DebugPDU { + visible: menu.selected == DebugMain.Selected.PDU + width: 650 + id: debugPDU + } + + DebugMain { + id: menu + x: 650 + y: 0 + width: 150 + selected: DebugMain.Selected.OVERVIEW + } } diff --git a/Bolt_Dash/content/DebugHelpers/DebugBMS.qml b/Bolt_Dash/content/DebugHelpers/DebugBMS.qml new file mode 100644 index 0000000..7b08715 --- /dev/null +++ b/Bolt_Dash/content/DebugHelpers/DebugBMS.qml @@ -0,0 +1,9 @@ +import QtQuick 2.15 + +Item { + Text { + text: "BMS" + color: "blue" + font.pixelSize: 24 + } +} diff --git a/Bolt_Dash/content/DebugHelpers/DebugMain.qml b/Bolt_Dash/content/DebugHelpers/DebugMain.qml new file mode 100644 index 0000000..6821ae4 --- /dev/null +++ b/Bolt_Dash/content/DebugHelpers/DebugMain.qml @@ -0,0 +1,65 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + width: 100 + height: 480 + property int selected: DebugMain.Selected.OVERVIEW + + enum Selected { + OVERVIEW, + MOTOR, + BMS, + PDU + } + + Column { + id: column + property int numButtons: 4 + y: spacing + spacing: 3 + width: parent.width + height: parent.height + Repeater { + model: column.numButtons + Rectangle { + radius: 2 + height: parent.height / column.numButtons - parent.spacing - 1 + width: parent.width + color: selected === modelData ? "lightgrey" : "grey" + + Text { + height: parent.height + width: parent.width + text: { + switch (modelData) { + case DebugMain.Selected.OVERVIEW: + return "Overview" + case DebugMain.Selected.MOTOR: + return "Motor" + case DebugMain.Selected.BMS: + return "BMS" + case DebugMain.Selected.PDU: + return "PDU" + default: + return "Unknown" + } + } + color: "black" + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + } + Button { + flat: true + width: parent.width + height: parent.height + onClicked: { + selected = modelData + } + } + } + + } + } +} diff --git a/Bolt_Dash/content/DebugHelpers/DebugMotor.qml b/Bolt_Dash/content/DebugHelpers/DebugMotor.qml new file mode 100644 index 0000000..f23fc87 --- /dev/null +++ b/Bolt_Dash/content/DebugHelpers/DebugMotor.qml @@ -0,0 +1,60 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double motorTemp: 0.0 + property double motorSpeed: 0.0 + property double bikeSpeed: 0.0 + + Text { + text: "Motor" + color: "blue" + font.pixelSize: 24 + } + + // Using grid layout for organized display + GridLayout { + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Motor Temperature:" } + Text { text: qsTr("%1°C").arg(backend.motorTemp) } + + Text { text: "Aux Voltage:" } + Text { text: qsTr("%1V").arg(auxVoltage) } + + Text { text: "Aux Percent:" } + Text { text: qsTr("%1\%").arg(auxPercent*100) } + + Text { text: "Pack State of Charge (SOC):" } + Text { text: qsTr("%1\%").arg(packSOC*100) } + + Text { text: "PackVoltage:" } + Text { text: qsTr("%1V").arg(packVoltage) } + + Text { text: "High Cell Temperature:" } + Text { text: qsTr("%1°C").arg(highCellTemp) } + + Text { text: "Low Cell Temperature:" } + Text { text: qsTr("%1°C").arg(lowCellTemp) } + + Text { text: "BMS Temperature:" } + Text { text: qsTr("%1°C").arg(bmsTemp) } + + Text { text: "Motor Speed:" } + Text { text: qsTr("%1 RPM").arg(motorSpeed) } + + Text { text: "Bike Speed:" } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } + } +} diff --git a/Bolt_Dash/content/DebugHelpers/DebugOverview.qml b/Bolt_Dash/content/DebugHelpers/DebugOverview.qml new file mode 100644 index 0000000..68c2108 --- /dev/null +++ b/Bolt_Dash/content/DebugHelpers/DebugOverview.qml @@ -0,0 +1,5 @@ +import QtQuick 2.15 + +Item { + +} diff --git a/Bolt_Dash/content/DebugHelpers/DebugPDU.qml b/Bolt_Dash/content/DebugHelpers/DebugPDU.qml new file mode 100644 index 0000000..9c0506b --- /dev/null +++ b/Bolt_Dash/content/DebugHelpers/DebugPDU.qml @@ -0,0 +1,9 @@ +import QtQuick 2.15 + +Item { + Text { + text: "PDU" + color: "blue" + font.pixelSize: 24 + } +} From 0f16df6506451edf058fb0978618bfaaab99a424 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 27 May 2024 16:56:57 -0400 Subject: [PATCH 128/165] Finish all debug screens with current CAN data --- Bolt_Dash/content/Debug1.qml | 20 ++++++ Bolt_Dash/content/DebugHelpers/DebugBMS.qml | 62 ++++++++++++++++++- Bolt_Dash/content/DebugHelpers/DebugMotor.qml | 38 +++++------- Bolt_Dash/content/DebugHelpers/DebugPDU.qml | 48 +++++++++++++- 4 files changed, 143 insertions(+), 25 deletions(-) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index 7421569..c10c623 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -24,18 +24,38 @@ Item { visible: menu.selected == DebugMain.Selected.MOTOR width: 650 id: debugMotor + motorTemp: backend.motorTemp + motorSpeed: backend.motorSpeed + bikeSpeed: backend.bikeSpeed + mcTemp: backend.mcTemp + mcFault: backend.mcFault + motorOn: backend.motorOn } DebugBMS { visible: menu.selected == DebugMain.Selected.BMS width: 650 id: debugBMS + packSOC: backend.packSOC + highCellTemp: backend.highCellTemp + lowCellTemp: backend.lowCellTemp + bmsTemp: backend.bmsTemp + packVoltage: backend.packVoltage + packCurrent: backend.packCurrent + bmsFault: backend.bmsFault + bmsErrorCodes: bmsErrorCodes + bmsError: backend.bmsError + bmsWarning: backend.bmsWarning + bmsErrorCodesString: backend.bmsErrorCodesString } DebugPDU { visible: menu.selected == DebugMain.Selected.PDU width: 650 id: debugPDU + auxVoltage: backend.auxVoltage + auxPercent: backend.auxPercent + bikeStatus: backend.bikeStatus } DebugMain { diff --git a/Bolt_Dash/content/DebugHelpers/DebugBMS.qml b/Bolt_Dash/content/DebugHelpers/DebugBMS.qml index 7b08715..b56c57e 100644 --- a/Bolt_Dash/content/DebugHelpers/DebugBMS.qml +++ b/Bolt_Dash/content/DebugHelpers/DebugBMS.qml @@ -1,6 +1,66 @@ -import QtQuick 2.15 +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double packSOC: 0.0 + property double highCellTemp: 0.0 + property double lowCellTemp: 0.0 + property double bmsTemp: 0.0 + property double packVoltage: 0.0 + property bool bmsFault: false + property double packCurrent: 0.0 + property int bmsErrorCodes: 0 + property bool bmsError: false + property bool bmsWarning: false + property var bmsErrorCodesString: [] + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height - y + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Pack State of Charge (SOC):" } + Text { text: qsTr("%1\%").arg(packSOC*100) } + + Text { text: "PackVoltage:" } + Text { text: qsTr("%1V").arg(packVoltage) } + + Text { text: "Pack Current:" } + Text { text: qsTr("%1A").arg(packCurrent) } + + Text { text: "High Cell Temperature:" } + Text { text: qsTr("%1°C").arg(highCellTemp) } + + Text { text: "Low Cell Temperature:" } + Text { text: qsTr("%1°C").arg(lowCellTemp) } + + Text { text: "BMS Temperature:" } + Text { text: qsTr("%1°C").arg(bmsTemp) } + + Text { text: "Any BMS Fault:" } + Text { text: bmsFault ? "Yes" : "No" } + + Text { text: "BMS Error:" } + Text { text: bmsError ? "Yes" : "No" } + + Text { text: "BMS Warning:" } + Text { text: bmsWarning ? "Yes" : "No" } + + Text { text: "BMS Error Codes:" } + Text { text: bmsErrorCodesString.length != 0 ? bmsErrorCodesString.join(", ") : "None" } + } + Text { text: "BMS" color: "blue" diff --git a/Bolt_Dash/content/DebugHelpers/DebugMotor.qml b/Bolt_Dash/content/DebugHelpers/DebugMotor.qml index f23fc87..675e643 100644 --- a/Bolt_Dash/content/DebugHelpers/DebugMotor.qml +++ b/Bolt_Dash/content/DebugHelpers/DebugMotor.qml @@ -11,6 +11,9 @@ Item { property double motorTemp: 0.0 property double motorSpeed: 0.0 property double bikeSpeed: 0.0 + property double mcTemp: 0.0 + property bool mcFault: false + property bool motorOn: false Text { text: "Motor" @@ -20,41 +23,30 @@ Item { // Using grid layout for organized display GridLayout { + y: 30 columns: 2 columnSpacing: 10 rowSpacing: 10 width: parent.width - height: parent.height + height: parent.height - 30 // Labels and dynamic text for each data item, converting double to string for display Text { text: "Motor Temperature:" } Text { text: qsTr("%1°C").arg(backend.motorTemp) } - Text { text: "Aux Voltage:" } - Text { text: qsTr("%1V").arg(auxVoltage) } - - Text { text: "Aux Percent:" } - Text { text: qsTr("%1\%").arg(auxPercent*100) } - - Text { text: "Pack State of Charge (SOC):" } - Text { text: qsTr("%1\%").arg(packSOC*100) } - - Text { text: "PackVoltage:" } - Text { text: qsTr("%1V").arg(packVoltage) } - - Text { text: "High Cell Temperature:" } - Text { text: qsTr("%1°C").arg(highCellTemp) } - - Text { text: "Low Cell Temperature:" } - Text { text: qsTr("%1°C").arg(lowCellTemp) } - - Text { text: "BMS Temperature:" } - Text { text: qsTr("%1°C").arg(bmsTemp) } + Text { text: "Motor Controller Temperature:" } + Text { text: qsTr("%1°C").arg(backend.mcTemp) } Text { text: "Motor Speed:" } Text { text: qsTr("%1 RPM").arg(motorSpeed) } - Text { text: "Bike Speed:" } - Text { text: qsTr("%1 mph").arg(bikeSpeed) } + Text { text: "Bike Speed:" } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } + + Text { text: "Motor Controller Fault:" } + Text { text: mcFault ? "Yes" : "No" } + + Text { text: "Motor On:" } + Text { text: motorOn ? "Yes" : "No" } } } diff --git a/Bolt_Dash/content/DebugHelpers/DebugPDU.qml b/Bolt_Dash/content/DebugHelpers/DebugPDU.qml index 9c0506b..de9a8ba 100644 --- a/Bolt_Dash/content/DebugHelpers/DebugPDU.qml +++ b/Bolt_Dash/content/DebugHelpers/DebugPDU.qml @@ -1,6 +1,52 @@ -import QtQuick 2.15 +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +import ".." Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double auxVoltage: 0.0 + property double auxPercent: 0.0 + property int bikeStatus: 0 + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height - y + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Aux Voltage:" } + Text { text: auxVoltage.toFixed(2) + " V" } + + Text { text: "Aux Percent:" } + Text { text: auxPercent.toFixed(2) + " %" } + + Text { text: "Bike Status:" } + Text { text: switch (bikeStatus) { + case BikeStatus.Status.STANDBY: + return "Standby" + case BikeStatus.Status.ACCESSORY: + return "Accessory" + case BikeStatus.Status.CHECKING: + return "Checking" + case BikeStatus.Status.READY: + return "Ready" + case BikeStatus.Status.DRIVE: + return "Drive" + case BikeStatus.Status.FAULT: + return "Fault" + } } + } + Text { text: "PDU" color: "blue" From ff57c2565ee2b0811221f9c66a40e9f764c4c112 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sun, 9 Jun 2024 11:58:37 -0400 Subject: [PATCH 129/165] Pi cannot handle folders for some reason --- Bolt_Dash/content/CMakeLists.txt | 10 +++++----- Bolt_Dash/content/Debug1.qml | 2 -- Bolt_Dash/content/{DebugHelpers => }/DebugBMS.qml | 0 Bolt_Dash/content/{DebugHelpers => }/DebugMain.qml | 0 Bolt_Dash/content/{DebugHelpers => }/DebugMotor.qml | 0 Bolt_Dash/content/{DebugHelpers => }/DebugOverview.qml | 0 Bolt_Dash/content/{DebugHelpers => }/DebugPDU.qml | 2 -- 7 files changed, 5 insertions(+), 9 deletions(-) rename Bolt_Dash/content/{DebugHelpers => }/DebugBMS.qml (100%) rename Bolt_Dash/content/{DebugHelpers => }/DebugMain.qml (100%) rename Bolt_Dash/content/{DebugHelpers => }/DebugMotor.qml (100%) rename Bolt_Dash/content/{DebugHelpers => }/DebugOverview.qml (100%) rename Bolt_Dash/content/{DebugHelpers => }/DebugPDU.qml (98%) diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index c81ad2d..16e45b1 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -34,9 +34,9 @@ qt6_add_qml_module(content QML_FILES DebugItem1.ui.qml QML_FILES FaultMotorStatus.qml QML_FILES SpeedometerDecorations.qml - QML_FILES DebugHelpers/DebugMain.qml - QML_FILES DebugHelpers/DebugMotor.qml - QML_FILES DebugHelpers/DebugOverview.qml - QML_FILES DebugHelpers/DebugBMS.qml - QML_FILES DebugHelpers/DebugPDU.qml + QML_FILES DebugMain.qml + QML_FILES DebugMotor.qml + QML_FILES DebugOverview.qml + QML_FILES DebugBMS.qml + QML_FILES DebugPDU.qml ) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index c10c623..e31ee86 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -1,8 +1,6 @@ import QtQuick 2.15 import QtQuick.Shapes -import "DebugHelpers" - Item { DebugItem1 { visible: menu.selected == DebugMain.Selected.OVERVIEW diff --git a/Bolt_Dash/content/DebugHelpers/DebugBMS.qml b/Bolt_Dash/content/DebugBMS.qml similarity index 100% rename from Bolt_Dash/content/DebugHelpers/DebugBMS.qml rename to Bolt_Dash/content/DebugBMS.qml diff --git a/Bolt_Dash/content/DebugHelpers/DebugMain.qml b/Bolt_Dash/content/DebugMain.qml similarity index 100% rename from Bolt_Dash/content/DebugHelpers/DebugMain.qml rename to Bolt_Dash/content/DebugMain.qml diff --git a/Bolt_Dash/content/DebugHelpers/DebugMotor.qml b/Bolt_Dash/content/DebugMotor.qml similarity index 100% rename from Bolt_Dash/content/DebugHelpers/DebugMotor.qml rename to Bolt_Dash/content/DebugMotor.qml diff --git a/Bolt_Dash/content/DebugHelpers/DebugOverview.qml b/Bolt_Dash/content/DebugOverview.qml similarity index 100% rename from Bolt_Dash/content/DebugHelpers/DebugOverview.qml rename to Bolt_Dash/content/DebugOverview.qml diff --git a/Bolt_Dash/content/DebugHelpers/DebugPDU.qml b/Bolt_Dash/content/DebugPDU.qml similarity index 98% rename from Bolt_Dash/content/DebugHelpers/DebugPDU.qml rename to Bolt_Dash/content/DebugPDU.qml index de9a8ba..98dad5c 100644 --- a/Bolt_Dash/content/DebugHelpers/DebugPDU.qml +++ b/Bolt_Dash/content/DebugPDU.qml @@ -3,8 +3,6 @@ import QtQuick.Controls import QtQuick.Layouts import Bolt_Dash -import ".." - Item { width: Constants.width height: Constants.height From 0a10aaf48f0fdb1e7692d658a046029b8ec5fab8 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Sat, 20 Jul 2024 17:46:30 -0400 Subject: [PATCH 130/165] Added temporary testing code for GPS data --- Bolt_Dash/CMakeLists.txt | 7 + Bolt_Dash/backend.cpp | 206 +++++++ .../src/includes/headers/nmeaparse/Event.h | 217 ++++++++ .../src/includes/headers/nmeaparse/GPSFix.h | 182 +++++++ .../includes/headers/nmeaparse/GPSService.h | 47 ++ .../includes/headers/nmeaparse/NMEACommand.h | 117 ++++ .../includes/headers/nmeaparse/NMEAParser.h | 123 +++++ .../headers/nmeaparse/NumberConversion.h | 49 ++ .../src/includes/headers/nmeaparse/nmea.h | 30 + Bolt_Dash/src/includes/source/GPSFix.cpp | 414 ++++++++++++++ Bolt_Dash/src/includes/source/GPSService.cpp | 511 ++++++++++++++++++ Bolt_Dash/src/includes/source/NMEACommand.cpp | 110 ++++ Bolt_Dash/src/includes/source/NMEAParser.cpp | 492 +++++++++++++++++ .../src/includes/source/NumberConversion.cpp | 147 +++++ 14 files changed, 2652 insertions(+) create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/Event.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/GPSFix.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/GPSService.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/NMEACommand.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/NMEAParser.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/NumberConversion.h create mode 100644 Bolt_Dash/src/includes/headers/nmeaparse/nmea.h create mode 100644 Bolt_Dash/src/includes/source/GPSFix.cpp create mode 100644 Bolt_Dash/src/includes/source/GPSService.cpp create mode 100644 Bolt_Dash/src/includes/source/NMEACommand.cpp create mode 100644 Bolt_Dash/src/includes/source/NMEAParser.cpp create mode 100644 Bolt_Dash/src/includes/source/NumberConversion.cpp diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 8dd2af3..3b5d2b5 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -19,6 +19,11 @@ qt_add_executable(Bolt_DashApp src/main.cpp can.h web.h web.cpp + src/includes/source/NMEAParser.cpp + src/includes/source/GPSService.cpp + src/includes/source/GPSFix.cpp + src/includes/source/NMEACommand.cpp + src/includes/source/NumberConversion.cpp ) qt_add_resources(Bolt_DashApp "configuration" @@ -27,6 +32,8 @@ qt_add_resources(Bolt_DashApp "configuration" qtquickcontrols2.conf ) +target_include_directories(Bolt_DashApp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/includes/headers) + target_link_libraries(Bolt_DashApp PRIVATE Qt6::Core Qt6::Gui diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 8c7cb0e..4225ebb 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -4,6 +4,15 @@ #include "web.h" #include #include +#include +#include + +#include +#include +#include +#include + +using namespace nmea; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, @@ -15,6 +24,8 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); + + } // Calls the set functions with the values from data @@ -357,4 +368,199 @@ void Backend::setBmsErrorCodesString(const std::vector warnings) { } // } +void parserStuff() { + using namespace std; + // -------------------------------------------------------- + // ------------ CONFIGURE GPS SERVICE ------------------- + // -------------------------------------------------------- + + // Create a GPS service that will keep track of the fix data. + NMEAParser parser; + GPSService gps(parser); + //parser.log = true; // true: will spit out all sorts of parse info on each sentence. + + // Handle events when the lock state changes + gps.onLockStateChanged += [](bool newlock){ + if (newlock){ + cout << "\t\t\tGPS aquired LOCK!" << endl; + } + else { + cout << "\t\t\tGPS lost lock. Searching..." << endl; + } + }; + + // Handle any changes to the GPS Fix... This is called after onSentence + gps.onUpdate += [&gps](){ + cout << "\t\t\tPosition: " << gps.fix.latitude << "'N, " << gps.fix.longitude << "'E" << endl << endl; + }; + + // (optional) - Handle events when the parser receives each sentence + parser.onSentence += [&gps](const NMEASentence& n){ + cout << "Received " << (n.checksumOK() ? "good" : "bad") << " GPS Data: " << n.name << endl; + }; + + + cout << "-------- Reading GPS NMEA data --------" << endl; + + // -------------------------------------------------------- + // --------------- STREAM THE DATA --------------------- + // -------------------------------------------------------- + try { + // From a buffer in memory... + // cout << ">> [ From Buffer]" << endl; + // parser.readBuffer((uint8_t*)bytestream, sizeof(bytestream)); + // --------------------------------------- + + // -- OR -- + // From a device byte stream... + // cout << ">> [ From Device Stream]" << endl; + // parser.readByte(byte_from_device); + // --------------------------------------- + + // -- OR -- + // From a text log file... + cout << ">> [ From File]" << endl; + string line; + ifstream file("nmea_log.txt"); + while ( getline(file, line) ){ + try { + parser.readLine(line); + } + catch (NMEAParseError& e){ + cout << e.message << endl << endl; + // You can keep feeding data to the gps service... + // The previous data is ignored and the parser is reset. + } + } + } + catch (exception& e){ + // Notify the proper authorities. Something is on fire. + cout << "Something Broke: " << e.what() << endl; + } + // --------------------------------------- + + + // Show the final fix information + //cout << gps.fix.toString() << endl; + + + + + + // -------------------------------------------------------- + // --------------- NMEA ALTERNATIVE SENTENCES ---------- + // -------------------------------------------------------- + // Not using GPS NMEA Sentences? That's A-OK. + // While there is no data aggregation code written here for + // non-GPS use, the parser will still make your job easier. + // Extract only the sentences you care about. + + // Create our custom parser... + NMEAParser custom_parser; + //parser.log = true; + custom_parser.setSentenceHandler("MYNMEA", [](const NMEASentence& n){ + cout << "Handling $" << n.name << ":" << endl; + for (size_t i = 0; i < n.parameters.size(); ++i){ + cout << " [" << i << "] \t- " << n.parameters[i]; + try { + double num = parseDouble(n.parameters[i]); + cout << " (number: " << num << ")"; + } catch (NumberConversionError&){ + cout << " (string)"; + } + cout << endl; + } + }); + custom_parser.onSentence += [](const NMEASentence& n){ + cout << "Received $" << n.name << endl; + }; + + cout << "-------- Reading non-GPS NMEA data --------" << endl; + + // Read the data stream... + // These don't have correct checksums. They're made up. + char data[] = " $MYNMEA,1,3,3,7,Hello*A2\n \ + $IRRELEVANT,5,5,5*AA\n \ + $ERRORS,:D,\n \ + $\n \ + $$\n \ + $*\n \ + $*,\n \ + $,\n \ + $,*\n \ + garbage that will be \ + !IgN0r3d @)(&%!!! \ + $MYNMEA,1,3,3,7,World!*A2\r\n \ + "; + for (int i = 0; i < sizeof(data); i++){ + try { + custom_parser.readByte(data[i]); + } + catch (NMEAParseError& e){ + cout << e.what() << endl; + } + } + + + // -------------------------------------------------------- + // --------------- NMEA SENTENCE GENERATION ------------ + // -------------------------------------------------------- + // Some devices allow control sentences to be sent to them. + // For some GPS devices this can allow selecting certain data. + // Only the following 2 Sentences are implemented, however + // you can create your own from the NMEACommand base class. + + + // Test the parser and command generation + NMEACommand cmd1; // A blank generic command + NMEACommandQueryRate cmd2; // The $PSRF command that allows for GPS sentence selection and rate setting. + NMEACommandQueryRate cmd3; // The $PSRF command that allows for GPS sentence selection and rate setting. + NMEACommandSerialConfiguration cmd4; // The $PSRF command that can configure a UART baud rate. + NMEAParser test_parser; + test_parser.onSentence += [&cmd1, &cmd2, &cmd3, &cmd4](const NMEASentence& n){ + cout << "Received: " << n.text; + + if (!n.checksumOK()){ + cout << "\t\tChecksum FAIL!" << endl; + } + else { + cout << "\t\tChecksum PASS!" << endl; + } + }; + + cout << "-------- NMEA Command Generation --------" << endl; + + // Just filling it with something. Could be whatever you need. + cmd1.name = "CMD1"; + cmd1.message = "nothing,special"; + + // Config output rate for $GPGGA sentence + cmd2.messageID = NMEASentence::MessageID::GGA; + cmd2.mode = NMEACommandQueryRate::QueryRateMode::SETRATE; + cmd2.rate = 3; // output every 3 seconds, 0 to disable + + // Query $GPGSV almanac sentence just this once + cmd3.messageID = NMEASentence::MessageID::GSV; + cmd3.mode = NMEACommandQueryRate::QueryRateMode::QUERY; + + // Set the Baud rate to 9600, because this GPS chip is awesome + cmd4.baud = 9600; // 4800 is NMEA standard + + // Generate the NMEA sentence from the commands and send them back into the test parser. + test_parser.readSentence(cmd1.toString()); + test_parser.readSentence(cmd2.toString()); + test_parser.readSentence(cmd3.toString()); + test_parser.readSentence(cmd4.toString()); + + + + cout << endl; + cout << endl; + cout << "-------- ALL DONE --------" << endl; + + + + cin.ignore(); +} + std::thread can_thread(can::run); diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/Event.h b/Bolt_Dash/src/includes/headers/nmeaparse/Event.h new file mode 100644 index 0000000..b6bbd97 --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/Event.h @@ -0,0 +1,217 @@ +/* + * Event.h + * + * Created on: Sep 5, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef EVENT_H_ +#define EVENT_H_ + +#include +#include +#include + + + +namespace nmea { + + + template class EventHandler; + template class Event; + + + template + class EventHandler + { + friend Event; + private: + // Typenames + typename Event::ListIterator _iterator; + + // Static members + static uint64_t LastID; + + // Properties + uint64_t ID; + std::function handler; + + // Functions + void _copy(const EventHandler& ref){ + if (&ref != this){ + _iterator = ref._iterator; + handler = ref.handler; + ID = ref.ID; + } + } + + public: + // Typenames + typedef void(*CFunctionPointer)(Args...); + + // Static members + // (none) + + // Properties + // (none) + + // Functions + EventHandler(std::function h) : _iterator(), handler(h), ID(++LastID) + {} + + EventHandler(const EventHandler& ref){ + _copy(ref); + } + + virtual ~EventHandler(){}; + + EventHandler& operator=(const EventHandler& ref){ + _copy(ref); + return *this; + } + + void operator() (Args... args){ + handler(args...); + } + + bool operator==(const EventHandler& ref){ + return ID == ref.ID; + } + + bool operator!=(const EventHandler& ref){ + return ID != ref.ID; + } + + uint64_t getID(){ + return ID; + } + + // Returns function pointer to the underlying function + // or null if it's not a function but implements operator() + CFunctionPointer* getFunctionPointer(){ + CFunctionPointer* ptr = handler.template target(); + return ptr; + } + }; + + template + uint64_t EventHandler::LastID = 0; + + + template + class Event + { + friend EventHandler; + private: + // Typenames + typedef typename std::list>::iterator ListIterator; + + // Static members + // (none) + + // Properties + std::list> handlers; + + //Functions + void _copy(const Event& ref){ + if (&ref != this){ + handlers = ref.handlers; + } + }; + + bool removeHandler(ListIterator handlerIter) { + if (handlerIter == handlers.end()){ + return false; + } + + handlers.erase(handlerIter); + return true; + }; + + public: + // Typenames + // (none) + + // Static members + // (none) + + // Properties + bool enabled; + + // Functions + Event() : enabled(true) + {} + + virtual ~Event() + {} + + Event(const Event& ref) { + _copy(ref); + } + + void call(Args... args) { + if (!enabled) { return; } + for (auto h = handlers.begin(); h != handlers.end(); h++) + { + (*h)(args...); + } + } + + EventHandler registerHandler(EventHandler handler) { + bool found = false; + for (auto h = handlers.begin(); h != handlers.end(); h++) + { + if ((*h) == handler) { + found = true; + break; + } + } + if (!found) + { + ListIterator itr = handlers.insert(handlers.end(), handler); + handler._iterator = itr; + } + return handler; + } + + EventHandler registerHandler(std::function handler) { + EventHandler wrapper(handler); + ListIterator itr = handlers.insert(handlers.end(), wrapper); + wrapper._iterator = itr; + return wrapper; + } + + bool removeHandler(EventHandler& handler) { + bool sts = removeHandler(handler._iterator); + handler._iterator = handlers.end(); + return sts; + }; + + void clear(){ + for (auto h = handlers.begin(); h != handlers.end(); h++) + { + (*h)._iterator = handlers.end(); + } + handlers.clear(); + }; + + void operator ()(Args... args) { return call(args...); }; + EventHandler operator +=(EventHandler handler) { return registerHandler(handler); }; + EventHandler operator +=(std::function handler) { return registerHandler(handler); }; + bool operator -=(EventHandler& handler) { return removeHandler(handler); }; + bool operator -=(uint64_t handlerID) { return removeHandler(handlerID); }; + + EventHandler& operator =(const EventHandler& ref){ + _copy(ref); + return *this; + }; + + }; + + + +} + +#endif /* EVENT_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/GPSFix.h b/Bolt_Dash/src/includes/headers/nmeaparse/GPSFix.h new file mode 100644 index 0000000..da891ba --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/GPSFix.h @@ -0,0 +1,182 @@ +/* + * GPSFix.h + * + * Created on: Jul 23, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef GPSFIX_H_ +#define GPSFIX_H_ + +#include +#include +#include +#include +#include +#include +#include + +namespace nmea { + + class GPSSatellite; + class GPSAlmanac; + class GPSFix; + class GPSService; + + + // =========================== GPS SATELLITE ===================================== + + class GPSSatellite { + public: + GPSSatellite() : + snr(0), + prn(0), + elevation(0), + azimuth(0) + {}; + + //satellite data + double snr; // 0-99 dB + uint32_t prn; // id - 0-32 + double elevation; // 0-90 deg + double azimuth; // 0-359 deg + std::string toString(); + operator std::string(); + }; + + + + + + + // =========================== GPS ALMANAC ===================================== + + + class GPSAlmanac { + friend GPSService; + private: + uint32_t visibleSize; + uint32_t lastPage; + uint32_t totalPages; + uint32_t processedPages; + void clear(); //will remove all information from the satellites + void updateSatellite(GPSSatellite sat); + public: + GPSAlmanac() : + lastPage(0), + totalPages(0), + processedPages(0) + {}; + + //mapped by prn + std::vector satellites; + double averageSNR(); + double minSNR(); + double maxSNR(); + double percentComplete(); + + }; + + + + + // =========================== GPS TIMESTAMP ===================================== + + // UTC time + class GPSTimestamp { + private: + std::string monthName(uint32_t index); + public: + GPSTimestamp(); + + int32_t hour; + int32_t min; + double sec; + + int32_t month; + int32_t day; + int32_t year; + + // Values collected directly from the GPS + double rawTime; + int32_t rawDate; + + time_t getTime(); + + // Set directly from the NMEA time stamp + // hhmmss.sss + void setTime(double raw_ts); + + // Set directly from the NMEA date stamp + // ddmmyy + void setDate(int32_t raw_date); + + std::string toString(); + }; + + + + + + + // =========================== GPS FIX ===================================== + + class GPSFix { + friend GPSService; + + private: + + bool haslock; + bool setlock(bool b); //returns true if lock status **changed***, false otherwise. + + + public: + + GPSFix(); + virtual ~GPSFix(); + + + GPSAlmanac almanac; + GPSTimestamp timestamp; + + char status; // Status: A=active, V=void (not locked) + uint8_t type; // Type: 1=none, 2=2d, 3=3d + uint8_t quality; // Quality: + // 0 = invalid + // 1 = GPS fix (SPS) + // 2 = DGPS fix + // 3 = PPS fix + // 4 = Real Time Kinematic (RTK) + // 5 = Float RTK + // 6 = estimated (dead reckoning) (2.3 feature) + + double dilution; // Combination of Vertical & Horizontal + double horizontalDilution; // Horizontal dilution of precision, initialized to 100, best =1, worst = >20 + double verticalDilution; // Vertical is less accurate + + double altitude; // meters + double latitude; // degrees N + double longitude; // degrees E + double speed; // km/h + double travelAngle; // degrees true north (0-360) + int32_t trackingSatellites; + int32_t visibleSatellites; + + bool locked(); + double horizontalAccuracy(); + double verticalAccuracy(); + bool hasEstimate(); + + std::chrono::seconds timeSinceLastUpdate(); // Returns seconds difference from last timestamp and right now. + + std::string toString(); + operator std::string(); + + static std::string travelAngleToCompassDirection(double deg, bool abbrev = false); + }; + +} + +#endif /* GPSFIX_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/GPSService.h b/Bolt_Dash/src/includes/headers/nmeaparse/GPSService.h new file mode 100644 index 0000000..8b9e291 --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/GPSService.h @@ -0,0 +1,47 @@ +/* + * GPSService.h + * + * Created on: Aug 14, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef GPSSERVICE_H_ +#define GPSSERVICE_H_ + +#include +#include +#include +#include +#include +#include + +namespace nmea { + +class GPSService { +private: + + void read_PSRF150(const NMEASentence& nmea); + void read_GPGGA (const NMEASentence& nmea); + void read_GPGSA (const NMEASentence& nmea); + void read_GPGSV (const NMEASentence& nmea); + void read_GPRMC (const NMEASentence& nmea); + void read_GPVTG (const NMEASentence& nmea); + +public: + GPSFix fix; + + GPSService(NMEAParser& parser); + virtual ~GPSService(); + + Event onLockStateChanged; // user assignable handler, called whenever lock changes + Event onUpdate; // user assignable handler, called whenever fix changes + + void attachToParser(NMEAParser& parser); // will attach to this parser's nmea sentence events +}; + + +} + +#endif /* GPSSERVICE_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/NMEACommand.h b/Bolt_Dash/src/includes/headers/nmeaparse/NMEACommand.h new file mode 100644 index 0000000..1719687 --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/NMEACommand.h @@ -0,0 +1,117 @@ +/* + * NMEACommand.h + * + * Created on: Sep 8, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef NMEACOMMAND_H_ +#define NMEACOMMAND_H_ + +#include +#include + +namespace nmea { + + class NMEACommand { + public: + std::string message; + std::string name; + char checksum; + NMEACommand(); + virtual ~NMEACommand(); + virtual std::string toString(); + std::string addChecksum(std::string s); + }; + + + + class NMEACommandSerialConfiguration : public NMEACommand { + public: + /* + // $PSRF100,0,9600,8,1,0*0C + + Table 2-4 Set Serial Port Data Format + Name Example Unit Description + Message ID $PSRF100 PSRF100 protocol header + Protocol 0 0=SiRF binary, 1=NMEA + Baud 9600 1200, 2400, 4800, 9600, 19200, 38400, 57600, and 115200 + DataBits 8 8,71 + + StopBits 1 0,1 1. SiRF protocol is only valid for 8 data bits, 1stop bit, and no parity. + Parity 0 0=None, 1=Odd, 2=Even + Checksum *0C + End of message termination + */ + int32_t baud; //4800, 9600, 19200, 38400 + int32_t databits; //7, 8 Databits + int32_t stopbits; //0, 1 Stopbits + int32_t parity; //0=none, 1=odd, 2=even Parity + + NMEACommandSerialConfiguration(){ + name = "PSRF100"; + baud = 4800; + databits = 8; + stopbits = 1; + parity = 0; + }; + virtual std::string toString(); + }; + + class NMEACommandQueryRate : public NMEACommand { + public: + // data fields that will be stringed. + + + // $PSRF103,00,01,00,01*25 + /* + * Table 2-9 Query/Rate Control Data Format + Name Example Unit Description + Message ID $PSRF103 PSRF103 protocol header + Msg 00 See Table 2-10 + Mode 01 0=SetRate, 1=Query + Rate 00 sec Output—off=0, max=255 + CksumEnable 01 0=Disable Checksum, 1=Enable Checksum + Checksum *25 + End of message termination + */ + /* + * Table 2-10 Messages + Value Description + 0 GGA + 1 GLL + 2 GSA + 3 GSV + 4 RMC + 5 VTG + 6 MSS (If internal beacon is supported) + 7 Not defined + 8 ZDA (if 1PPS output is supported) + 9 Not defined + */ + + enum QueryRateMode { + SETRATE = 0, + QUERY = 1 + }; + + NMEASentence::MessageID messageID; + QueryRateMode mode; + int rate; + int checksumEnable; + NMEACommandQueryRate(){ + name = "PSRF103"; + messageID = NMEASentence::Unknown; + mode = QueryRateMode::SETRATE; + rate = 0; + checksumEnable = 1; + }; + virtual std::string toString(); + }; + + +} + +#endif /* NMEACOMMAND_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/NMEAParser.h b/Bolt_Dash/src/includes/headers/nmeaparse/NMEAParser.h new file mode 100644 index 0000000..d57bb20 --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/NMEAParser.h @@ -0,0 +1,123 @@ +/* + * NMEAParser.h + * + * Created on: Aug 12, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef NMEAPARSER_H_ +#define NMEAPARSER_H_ + + +#include +#include +#include +#include +#include +#include +#include + + + +//read class definition for info +#define NMEA_PARSER_MAX_BUFFER_SIZE 2000 + + + + + +namespace nmea { + +class NMEAParser; + + +class NMEASentence { + friend NMEAParser; +private: + bool isvalid; +public: + std::string text; //whole plaintext of the received command + std::string name; //name of the command + std::vector parameters; //list of parameters from the command + std::string checksum; + bool checksumIsCalculated; + uint8_t parsedChecksum; + uint8_t calculatedChecksum; + + enum MessageID { // These ID's are according to NMEA standard. + Unknown = -1, + GGA = 0, + GLL = 1, + GSA = 2, + GSV = 3, + RMC = 4, + VTG = 5, // notice missing 6,7 + ZDA = 8 + }; +public: + NMEASentence(); + virtual ~NMEASentence(); + + bool checksumOK() const; + bool valid() const; + +}; + + + + +class NMEAParseError : public std::exception { +public: + std::string message; + NMEASentence nmea; + + NMEAParseError(std::string msg); + NMEAParseError(std::string msg, NMEASentence n); + virtual ~NMEAParseError(); + + std::string what(); +}; + + + + +class NMEAParser { +private: + std::unordered_map> eventTable; + std::string buffer; + bool fillingbuffer; + uint32_t maxbuffersize; //limit the max size if no newline ever comes... Prevents huge buffer string internally + + void parseText (NMEASentence& nmea, std::string s); //fills the given NMEA sentence with the results of parsing the string. + + void onInfo (NMEASentence& n, std::string s); + void onWarning (NMEASentence& n, std::string s); + void onError (NMEASentence& n, std::string s); +public: + + NMEAParser(); + virtual ~NMEAParser(); + + bool log; + + Event onSentence; // called every time parser receives any NMEA sentence + void setSentenceHandler(std::string cmdKey, std::function handler); //one handler called for any named sentence where name is the "cmdKey" + std::string getRegisteredSentenceHandlersCSV(); // show a list of message names that currently have handlers. + + // Byte streaming functions + void readByte (uint8_t b); + void readBuffer (uint8_t* b, uint32_t size); + void readLine (std::string line); + + // This function expects the data to be a single line with an actual sentence in it, else it throws an error. + void readSentence (std::string cmd); // called when parser receives a sentence from the byte stream. Can also be called by user to inject sentences. + + static uint8_t calculateChecksum(std::string); // returns checksum of string -- XOR + +}; + +} + +#endif /* NMEAPARSER_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/NumberConversion.h b/Bolt_Dash/src/includes/headers/nmeaparse/NumberConversion.h new file mode 100644 index 0000000..342d200 --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/NumberConversion.h @@ -0,0 +1,49 @@ +/* + * NumberConversion.h + * + * Created on: Aug 14, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#ifndef NUMBERCONVERSION_H_ +#define NUMBERCONVERSION_H_ + + +#include +#include +#include +#include + + +namespace nmea { + +class NumberConversionError : public std::exception { +public: + std::string message; + NumberConversionError(std::string msg) + : message(msg) + {}; + + virtual ~NumberConversionError() + {}; + + std::string what(){ + return message; + } +}; + + + + +double parseDouble(std::string s); +int64_t parseInt(std::string s, int radix = 10); + +//void NumberConversion_test(); + +} + + + +#endif /* NUMBERCONVERSION_H_ */ diff --git a/Bolt_Dash/src/includes/headers/nmeaparse/nmea.h b/Bolt_Dash/src/includes/headers/nmeaparse/nmea.h new file mode 100644 index 0000000..811126e --- /dev/null +++ b/Bolt_Dash/src/includes/headers/nmeaparse/nmea.h @@ -0,0 +1,30 @@ +/* +* nmea.h +* +* Created on: March 23, 2014 +* Author: Cameron Karlsson +* +* See the license file included with this source. +*/ + + +// The implementation of a NMEA 0183 parser. +// The implementation of a NMEA 0183 sentence generator. +// The implementation of a GPS data service. + + +#ifndef NMEA_H_ +#define NMEA_H_ + + + +#include +#include +#include + +#include + + + + +#endif //NMEA_H_ diff --git a/Bolt_Dash/src/includes/source/GPSFix.cpp b/Bolt_Dash/src/includes/source/GPSFix.cpp new file mode 100644 index 0000000..20fe275 --- /dev/null +++ b/Bolt_Dash/src/includes/source/GPSFix.cpp @@ -0,0 +1,414 @@ +/* + * GPSFix.cpp + * + * Created on: Jul 23, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#include +#include +#include +#include +#include + +using namespace std; +using namespace std::chrono; + +using namespace nmea; + + + +// =========================================================== +// ======================== GPS SATELLITE ==================== +// =========================================================== + +string GPSSatellite::toString(){ + stringstream ss; + + ss << "[PRN: " << setw(3) << setfill(' ') << prn << " " + << " SNR: " << setw(3) << setfill(' ') << snr << " dB " + << " Azimuth: " << setw(3) << setfill(' ') << azimuth << " deg " + << " Elevation: " << setw(3) << setfill(' ') << elevation << " deg " + << "]"; + + return ss.str(); +} +GPSSatellite::operator std::string(){ + return toString(); +} + + + +// ========================================================= +// ======================== GPS ALMANAC ==================== +// ========================================================= + +void GPSAlmanac::clear(){ + lastPage = 0; + totalPages = 0; + processedPages = 0; + visibleSize = 0; + satellites.clear(); +} +void GPSAlmanac::updateSatellite(GPSSatellite sat){ + if (satellites.size() > visibleSize) + { //we missed the new almanac start page, start over. + clear(); + } + + satellites.push_back(sat); +} +double GPSAlmanac::percentComplete(){ + if (totalPages == 0){ + return 0.0; + } + + return ((double)processedPages) / ((double)totalPages) * 100.0; +} +double GPSAlmanac::averageSNR(){ + + double avg = 0; + double relevant = 0; + for (const auto& satellite : satellites){ + if (satellite.snr > 0){ + relevant += 1.0; + } + } + + for (const auto& satellite : satellites){ + if (satellite.snr > 0){ + avg += satellite.snr / relevant; + } + } + + return avg; +} +double GPSAlmanac::minSNR(){ + double min = 9999999; + if (satellites.empty()){ + return 0; + } + int32_t num_over_zero = 0; + for (const auto& satellite : satellites){ + if (satellite.snr > 0){ + num_over_zero++; + if (satellite.snr < min){ + min = satellite.snr; + } + } + } + if (num_over_zero == 0){ + return 0; + } + return min; +} + +double GPSAlmanac::maxSNR(){ + double max = 0; + for (const auto& satellite : satellites){ + if (satellite.snr > 0){ + if (satellite.snr > max){ + max = satellite.snr; + } + } + } + return max; +} + + + + +// =========================================================== +// ======================== GPS TIMESTAMP ==================== +// =========================================================== + + +GPSTimestamp::GPSTimestamp(){ + hour = 0; + min = 0; + sec = 0; + + month = 1; + day = 1; + year = 1970; + + rawTime = 0; + rawDate = 0; +}; + +// indexed from 1! +std::string GPSTimestamp::monthName(uint32_t index){ + if (index < 1 || index > 12){ + std::stringstream ss; + ss << "[month:" << index << "]"; + return ss.str(); + } + + std::string names[] = { + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + }; + return names[index - 1]; +}; + +// Returns seconds since Jan 1, 1970. Classic Epoch time. +time_t GPSTimestamp::getTime() { + struct tm t = { 0 }; + t.tm_year = year - 1900; // This is year-1900, so 112 = 2012 + t.tm_mon = month; // month from 0:Jan + t.tm_mday = day; + t.tm_hour = hour; + t.tm_min = min; + t.tm_sec = (int)sec; + return mktime(&t); +} + +void GPSTimestamp::setTime(double raw_ts){ + rawTime = raw_ts; + + hour = (int32_t)trunc(raw_ts / 10000.0); + min = (int32_t)trunc((raw_ts - hour * 10000) / 100.0); + sec = raw_ts - min * 100 - hour * 10000; +} + +//ddmmyy +void GPSTimestamp::setDate(int32_t raw_date){ + rawDate = raw_date; + // If uninitialized, use posix time. + if(rawDate == 0) { + month = 1; + day = 1; + year = 1970; + } + else { + day = (int32_t)trunc(raw_date / 10000.0); + month = (int32_t)trunc((raw_date - 10000 * day) / 100.0); + year = raw_date - 10000 * day - 100 * month + 2000; + } +} + +std::string GPSTimestamp::toString(){ + std::stringstream ss; + ss << hour << "h " << min << "m " << sec << "s" << " " << monthName(month) << " " << day << " " << year; + return ss.str(); +}; + + + + + + + +// ===================================================== +// ======================== GPS FIX ==================== +// ===================================================== + +GPSFix::GPSFix() { + + quality = 0; // Searching... + status = 'V'; // Void + type = 1; // 1=none, 2=2d, 3=3d + + haslock = 0; + + dilution = 0; + horizontalDilution = 0; // Horizontal - Best is 1, >20 is terrible, so 0 means uninitialized + verticalDilution = 0; + latitude = 0; + longitude = 0; + speed = 0; + travelAngle = 0; + altitude = 0; + trackingSatellites = 0; + visibleSatellites = 0; + + +} + +GPSFix::~GPSFix() { + // TODO Auto-generated destructor stub +} + +// Returns the duration since the Host has received information +seconds GPSFix::timeSinceLastUpdate(){ + time_t now = time(NULL); + struct tm stamp = { 0 }; + + stamp.tm_hour = timestamp.hour; + stamp.tm_min = timestamp.min; + stamp.tm_sec = (int)timestamp.sec; + stamp.tm_year = timestamp.year-1900; + stamp.tm_mon = timestamp.month-1; + stamp.tm_mday = timestamp.day; + + time_t then = mktime(&stamp); + uint64_t secs = (uint64_t)difftime(now,then); + return seconds((uint64_t)secs); +} + +bool GPSFix::hasEstimate(){ + return (latitude != 0 && longitude != 0) || (quality == 6); +} + +bool GPSFix::setlock(bool locked){ + if (haslock != locked){ + haslock = locked; + return true; + } + return false; +} + +bool GPSFix::locked(){ + return haslock; +} + +// Returns meters +double GPSFix::horizontalAccuracy(){ + // horizontal 2drms 95% = 4.0 -- from GPS CHIP datasheets + return 4.0 * horizontalDilution; +} + +// Returns meters +double GPSFix::verticalAccuracy(){ + // Vertical 2drms 95% = 6.0 -- from GPS CHIP datasheets + return 6.0 * verticalDilution; +} + +// Takes a degree travel heading (0-360') and returns the name +std::string GPSFix::travelAngleToCompassDirection(double deg, bool abbrev){ + + //normalize, just in case + int32_t c = (int32_t)round(deg / 360.0 * 8.0); + int32_t r = c % 8; + if (r < 0){ + r = 8 + r; + } + + if (abbrev){ + std::string dirs[] = { + "N", + "NE", + "E", + "SE", + "S", + "SW", + "W", + "NW", + "N" + }; + return dirs[r]; + } + else { + std::string dirs[] = { + "North", + "North East", + "East", + "South East", + "South", + "South West", + "West", + "North West", + "North" + }; + return dirs[r]; + } + +}; + + +std::string fixStatusToString(char status){ + switch (status){ + case 'A': + return "Active"; + case 'V': + return "Void"; + default: + return "Unknown"; + } +} +std::string fixTypeToString(uint8_t type){ + switch (type){ + case 1: + return "None"; + case 2: + return "2D"; + case 3: + return "3D"; + default: + return "Unknown"; + } +} +std::string fixQualityToString(uint8_t quality){ + switch (quality){ + case 0: + return "Invalid"; + case 1: + return "Standard"; + case 2: + return "DGPS"; + case 3: + return "PPS fix"; + case 4: + return "Real Time Kinetic"; + case 5: + return "Real Time Kinetic (float)"; + case 6: + return "Estimate"; + default: + return "Unknown"; + } +} + +std::string GPSFix::toString(){ + stringstream ss; + ios_base::fmtflags oldflags = ss.flags(); + + ss << "========================== GPS FIX ================================" << endl + << " Status: \t\t" << ((haslock) ? "LOCK!" : "SEARCHING...") << endl + << " Satellites: \t\t" << trackingSatellites << " (tracking) of " << visibleSatellites << " (visible)" << endl + << " < Fix Details >" << endl + << " Age: " << timeSinceLastUpdate().count() << " s" << endl + << " Timestamp: " << timestamp.toString() << " UTC \n\t\t\t(raw: " << timestamp.rawTime << " time, " << timestamp.rawDate << " date)" << endl + << " Raw Status: " << status << " (" << fixStatusToString(status) << ")" << endl + << " Type: " << (int)type << " (" << fixTypeToString(type) << ")" << endl + << " Quality: " << (int)quality << " (" << fixQualityToString(quality) << ")" << endl + << " Lat/Lon (N,E): " << setprecision(6) << fixed << latitude << "' N, " << longitude << "' E" << endl; + + ss.flags(oldflags); //reset + + ss << " DOP (P,H,V): " << dilution << ", " << horizontalDilution << ", " << verticalDilution << endl + << " Accuracy(H,V): " << horizontalAccuracy() << " m, " << verticalAccuracy() << " m" << endl; + + ss << " Altitude: " << altitude << " m" << endl + << " Speed: " << speed << " km/h" << endl + << " Travel Dir: " << travelAngle << " deg [" << travelAngleToCompassDirection(travelAngle) << "]" << endl + << " SNR: avg: " << almanac.averageSNR() << " dB [min: " << almanac.minSNR() << " dB, max:" << almanac.maxSNR() << " dB]" << endl; + + ss << " < Almanac (" << almanac.percentComplete() << "%) >" << endl; + if (almanac.satellites.empty()){ + ss << " > No satellite info in almanac." << endl; + } + for (size_t i = 0; i < almanac.satellites.size(); i++){ + ss << " [" << setw(2) << setfill(' ') << (i + 1) << "] " << almanac.satellites[i].toString() << endl; + } + + return ss.str(); +} +GPSFix::operator std::string(){ + return toString(); +} + + + diff --git a/Bolt_Dash/src/includes/source/GPSService.cpp b/Bolt_Dash/src/includes/source/GPSService.cpp new file mode 100644 index 0000000..65bf79f --- /dev/null +++ b/Bolt_Dash/src/includes/source/GPSService.cpp @@ -0,0 +1,511 @@ +/* + * GPSService.cpp + * + * Created on: Aug 14, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + + +#include +#include + +#include +#include + +using namespace std; +using namespace std::chrono; + +using namespace nmea; + + +// ------ Some helpers ---------- +// Takes the NMEA lat/long format (dddmm.mmmm, [N/S,E/W]) and converts to degrees N,E only +double convertLatLongToDeg(string llstr, string dir){ + + double pd = parseDouble(llstr); + double deg = trunc(pd / 100); //get ddd from dddmm.mmmm + double mins = pd - deg * 100; + + deg = deg + mins / 60.0; + + char hdg = 'x'; + if (!dir.empty()){ + hdg = dir[0]; + } + + //everything should be N/E, so flip S,W + if (hdg == 'S' || hdg == 'W'){ + deg *= -1.0; + } + + return deg; +} +double convertKnotsToKilometersPerHour(double knots){ + return knots * 1.852; +} + + + +// ------------- GPSSERVICE CLASS ------------- + + + + +GPSService::GPSService(NMEAParser& parser) { + attachToParser(parser); // attach to parser in the GPS object +} + +GPSService::~GPSService() { + // TODO Auto-generated destructor stub +} + +void GPSService::attachToParser(NMEAParser& _parser){ + + // http://www.gpsinformation.org/dale/nmea.htm + /* used sentences... + $GPGGA - time,position,fix data + $GPGSA - gps receiver operating mode, satellites used in position and DOP values + $GPGSV - number of gps satellites in view, satellite ID, elevation,azimuth, and SNR + $GPRMC - time,date, position,course, and speed data + $GPVTG - course and speed information relative to the ground + $GPZDA - 1pps timing message + $PSRF150 - gps module "ok to send" + */ + _parser.setSentenceHandler("PSRF150", [this](const NMEASentence& nmea){ + this->read_PSRF150(nmea); + }); + _parser.setSentenceHandler("GPGGA", [this](const NMEASentence& nmea){ + this->read_GPGGA(nmea); + }); + _parser.setSentenceHandler("GPGSA", [this](const NMEASentence& nmea){ + this->read_GPGSA(nmea); + }); + _parser.setSentenceHandler("GPGSV", [this](const NMEASentence& nmea){ + this->read_GPGSV(nmea); + }); + _parser.setSentenceHandler("GPRMC", [this](const NMEASentence& nmea){ + this->read_GPRMC(nmea); + }); + _parser.setSentenceHandler("GPVTG", [this](const NMEASentence& nmea){ + this->read_GPVTG(nmea); + }); + +} + + + + +void GPSService::read_PSRF150(const NMEASentence& nmea){ + // nothing right now... + // Called with checksum 3E (valid) for GPS turning ON + // Called with checksum 3F (invalid) for GPS turning OFF +} + +void GPSService::read_GPGGA(const NMEASentence& nmea){ + /* -- EXAMPLE -- + $GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47 + + $GPGGA,205630.945,3346.1070,N,08423.6687,W,0,03,,30.8,M,-30.8,M,,0000*73 // ATLANTA!!!! + + Where: + GGA Global Positioning System Fix Data + index: + [0] 123519 Fix taken at 12:35:19 UTC + [1-2] 4807.038,N Latitude 48 deg 07.038' N + [3-4] 1131.000,E Longitude 11 deg 31.000' E + [5] 1 Fix quality: 0 = invalid + 1 = GPS fix (SPS) + 2 = DGPS fix + 3 = PPS fix + 4 = Real Time Kinematic + 5 = Float RTK + 6 = estimated (dead reckoning) (2.3 feature) + 7 = Manual input mode + 8 = Simulation mode + [6] 08 Number of satellites being tracked + [7] 0.9 Horizontal dilution of position + [8-9] 545.4,M Altitude, Meters, above mean sea level + [10-11] 46.9,M Height of geoid (mean sea level) above WGS84 + ellipsoid + [12] (empty field) time in seconds since last DGPS update + [13] (empty field) DGPS station ID number + [13] *47 the checksum data, always begins with * + */ + try + { + if (!nmea.checksumOK()){ + throw NMEAParseError("Checksum is invalid!"); + } + + if (nmea.parameters.size() < 14){ + throw NMEAParseError("GPS data is missing parameters."); + } + + + // TIMESTAMP + this->fix.timestamp.setTime(parseDouble(nmea.parameters[0])); + + string sll; + string dir; + // LAT + sll = nmea.parameters[1]; + dir = nmea.parameters[2]; + if (!sll.empty()){ + this->fix.latitude = convertLatLongToDeg(sll, dir); + } + + // LONG + sll = nmea.parameters[3]; + dir = nmea.parameters[4]; + if (!sll.empty()){ + this->fix.longitude = convertLatLongToDeg(sll, dir); + } + + + // FIX QUALITY + bool lockupdate = false; + this->fix.quality = (uint8_t)parseInt(nmea.parameters[5]); + if (this->fix.quality == 0){ + lockupdate = this->fix.setlock(false); + } + else if (this->fix.quality == 1){ + lockupdate = this->fix.setlock(true); + } + else {} + + + // TRACKING SATELLITES + this->fix.trackingSatellites = (int32_t)parseInt(nmea.parameters[6]); + if (this->fix.visibleSatellites < this->fix.trackingSatellites){ + this->fix.visibleSatellites = this->fix.trackingSatellites; // the visible count is in another sentence. + } + + // ALTITUDE + if (!nmea.parameters[8].empty()){ + this->fix.altitude = parseDouble(nmea.parameters[8]); + } + else { + // leave old value + } + + //calling handlers + if (lockupdate){ + this->onLockStateChanged(this->fix.haslock); + } + this->onUpdate(); + } + catch (NumberConversionError& ex) + { + NMEAParseError pe("GPS Number Bad Format [$GPGGA] :: " + ex.message, nmea); + throw pe; + } + catch (NMEAParseError& ex) + { + NMEAParseError pe("GPS Data Bad Format [$GPGGA] :: " + ex.message, nmea); + throw pe; + } +} + +void GPSService::read_GPGSA(const NMEASentence& nmea){ + /* -- EXAMPLE -- + $GPGSA,A,3,04,05,,09,12,,,24,,,,,2.5,1.3,2.1*39 + + $GPGSA,A,3,18,21,22,14,27,19,,,,,,,4.4,2.7,3.4*32 + + Where: + GSA Satellite status + [0] A Auto selection of 2D or 3D fix (M = manual) + [1] 3 3D fix - values include: 1 = no fix + 2 = 2D fix + 3 = 3D fix + [2-13] 04,05... PRNs of satellites used for fix (space for 12) + [14] 2.5 PDOP (dilution of precision) + [15] 1.3 Horizontal dilution of precision (HDOP) + [16] 2.1 Vertical dilution of precision (VDOP) + [16] *39 the checksum data, always begins with * + */ + + + try + { + if (!nmea.checksumOK()){ + throw NMEAParseError("Checksum is invalid!"); + } + + if (nmea.parameters.size() < 17){ + throw NMEAParseError("GPS data is missing parameters."); + } + + + // FIX TYPE + bool lockupdate = false; + uint64_t fixtype = parseInt(nmea.parameters[1]); + this->fix.type = (int8_t)fixtype; + if (fixtype == 1){ + lockupdate = this->fix.setlock(false); + } + else if (fixtype == 3) { + lockupdate = this->fix.setlock(true); + } + else {} + + + // DILUTION OF PRECISION -- PDOP + double dop = parseDouble(nmea.parameters[14]); + this->fix.dilution = dop; + + // HORIZONTAL DILUTION OF PRECISION -- HDOP + double hdop = parseDouble(nmea.parameters[15]); + this->fix.horizontalDilution = hdop; + + // VERTICAL DILUTION OF PRECISION -- VDOP + double vdop = parseDouble(nmea.parameters[16]); + this->fix.verticalDilution = vdop; + + //calling handlers + if (lockupdate){ + this->onLockStateChanged(this->fix.haslock); + } + this->onUpdate(); + } + catch (NumberConversionError& ex) + { + NMEAParseError pe("GPS Number Bad Format [$GPGSA] :: " + ex.message, nmea); + throw pe; + } + catch (NMEAParseError& ex) + { + NMEAParseError pe("GPS Data Bad Format [$GPGSA] :: " + ex.message, nmea); + throw pe; + } +} + +void GPSService::read_GPGSV(const NMEASentence& nmea){ + /* -- EXAMPLE -- + $GPGSV,2,1,08,01,40,083,46,02,17,308,41,12,07,344,39,14,22,228,45*75 + + + $GPGSV,3,1,12,01,00,000,,02,00,000,,03,00,000,,04,00,000,*7C + $GPGSV,3,2,12,05,00,000,,06,00,000,,07,00,000,,08,00,000,*77 + $GPGSV,3,3,12,09,00,000,,10,00,000,,11,00,000,,12,00,000,*71 + + Where: + GSV Satellites in view + [0] 2 Number of sentences for full data + [1] 1 sentence 1 of 2 + [2] 08 Number of satellites in view + + [3] 01 Satellite PRN number + [4] 40 Elevation, degrees + [5] 083 Azimuth, degrees + [6] 46 SNR - higher is better + [...] for up to 4 satellites per sentence + [17] *75 the checksum data, always begins with * + */ + + try + { + if (!nmea.checksumOK()){ + throw NMEAParseError("Checksum is invalid!"); + } + + // can't do this check because the length varies depending on satallites... + //if(nmea.parameters.size() < 18){ + // throw NMEAParseError("GPS data is missing parameters."); + //} + + // VISIBLE SATELLITES + this->fix.visibleSatellites = (int32_t)parseInt(nmea.parameters[2]); + if (this->fix.trackingSatellites == 0){ + this->fix.visibleSatellites = 0; // if no satellites are tracking, then none are visible! + } // Also NMEA defaults to 12 visible when chip powers on. Obviously not right. + + uint32_t totalPages = (uint32_t)parseInt(nmea.parameters[0]); + uint32_t currentPage = (uint32_t)parseInt(nmea.parameters[1]); + + + //if this is the first page, then reset the almanac + if (currentPage == 1){ + this->fix.almanac.clear(); + //cout << "CLEARING ALMANAC" << endl; + } + + this->fix.almanac.lastPage = currentPage; + this->fix.almanac.totalPages = totalPages; + this->fix.almanac.visibleSize = this->fix.visibleSatellites; + + int entriesInPage = (nmea.parameters.size() - 3) >> 2; //first 3 are not satellite info + //- entries come in 4-ples, and truncate, so used shift + GPSSatellite sat; + for (int i = 0; i < entriesInPage; i++){ + int prop = 3 + i * 4; + + // PRN, ELEVATION, AZIMUTH, SNR + sat.prn = (uint32_t)parseInt(nmea.parameters[prop]); + sat.elevation = (uint32_t)parseInt(nmea.parameters[prop + 1]); + sat.azimuth = (uint32_t)parseInt(nmea.parameters[prop + 2]); + sat.snr = (uint32_t)parseInt(nmea.parameters[prop + 3]); + + //cout << "ADDING SATELLITE ::" << sat.toString() << endl; + this->fix.almanac.updateSatellite(sat); + } + + this->fix.almanac.processedPages++; + + // + if (this->fix.visibleSatellites == 0){ + this->fix.almanac.clear(); + } + + + //cout << "ALMANAC FINISHED page " << this->fix.almanac.processedPages << " of " << this->fix.almanac.totalPages << endl; + this->onUpdate(); + + } + catch (NumberConversionError& ex) + { + NMEAParseError pe("GPS Number Bad Format [$GPGSV] :: " + ex.message, nmea); + throw pe; + } + catch (NMEAParseError& ex) + { + NMEAParseError pe("GPS Data Bad Format [$GPGSV] :: " + ex.message, nmea); + throw pe; + } +} + +void GPSService::read_GPRMC(const NMEASentence& nmea){ + /* -- EXAMPLE --- + $GPRMC,123519,A,4807.038,N,01131.000,E,022.4,084.4,230394,003.1,W*6A + $GPRMC,235957.025,V,,,,,,,070810,,,N*4B + $GPRMC,061425.000,A,3346.2243,N,08423.4706,W,0.45,18.77,060914,,,A*47 + + Where: + RMC Recommended Minimum sentence C + [0] 123519 Fix taken at 12:35:19 UTC + [1] A Status A=active or V=Void. + [2-3] 4807.038,N Latitude 48 deg 07.038' N + [4-5] 01131.000,E Longitude 11 deg 31.000' E + [6] 022.4 Speed over the ground in knots + [7] 084.4 Track angle in degrees True + [8] 230394 Date - 23rd of March 1994 + [9-10] 003.1,W Magnetic Variation + [10] *6A The checksum data, always begins with * + // NMEA 2.3 includes another field after + */ + + try + { + if (!nmea.checksumOK()){ + throw NMEAParseError("Checksum is invalid!"); + } + + if (nmea.parameters.size() < 11){ + throw NMEAParseError("GPS data is missing parameters."); + } + + // TIMESTAMP + this->fix.timestamp.setTime(parseDouble(nmea.parameters[0])); + + string sll; + string dir; + // LAT + sll = nmea.parameters[2]; + dir = nmea.parameters[3]; + if (!sll.empty()){ + this->fix.latitude = convertLatLongToDeg(sll, dir); + } + + // LONG + sll = nmea.parameters[4]; + dir = nmea.parameters[5]; + if (!sll.empty()){ + this->fix.longitude = convertLatLongToDeg(sll, dir); + } + + + // ACTIVE + bool lockupdate = false; + char status = 'V'; + if (!nmea.parameters[1].empty()){ + status = nmea.parameters[1][0]; + } + this->fix.status = status; + if (status == 'V'){ + lockupdate = this->fix.setlock(false); + } + else if (status == 'A') { + lockupdate = this->fix.setlock(true); + } + else { + lockupdate = this->fix.setlock(false); //not A or V, so must be wrong... no lock + } + + + this->fix.speed = convertKnotsToKilometersPerHour(parseDouble(nmea.parameters[6])); // received as knots, convert to km/h + this->fix.travelAngle = parseDouble(nmea.parameters[7]); + this->fix.timestamp.setDate((int32_t)parseInt(nmea.parameters[8])); + + + //calling handlers + if (lockupdate){ + this->onLockStateChanged(this->fix.haslock); + } + this->onUpdate(); + } + catch (NumberConversionError& ex) + { + NMEAParseError pe("GPS Number Bad Format [$GPRMC] :: " + ex.message, nmea); + throw pe; + } + catch (NMEAParseError& ex) + { + NMEAParseError pe("GPS Data Bad Format [$GPRMC] :: " + ex.message, nmea); + throw pe; + } +} + +void GPSService::read_GPVTG(const NMEASentence& nmea){ + /* + $GPVTG,054.7,T,034.4,M,005.5,N,010.2,K*48 + + where: + VTG Track made good and ground speed + [0-1] 054.7,T True track made good (degrees) + [2-3] 034.4,M Magnetic track made good + [4-5] 005.5,N Ground speed, knots + [6-7] 010.2,K Ground speed, Kilometers per hour + [7] *48 Checksum + */ + + try + { + if (!nmea.checksumOK()){ + throw NMEAParseError("Checksum is invalid!"); + } + + if (nmea.parameters.size() < 8){ + throw NMEAParseError("GPS data is missing parameters."); + } + + // SPEED + // if empty, is converted to 0 + this->fix.speed = parseDouble(nmea.parameters[6]); //km/h + + + this->onUpdate(); + } + catch (NumberConversionError& ex) + { + NMEAParseError pe("GPS Number Bad Format [$GPVTG] :: " + ex.message, nmea); + throw pe; + } + catch (NMEAParseError& ex) + { + NMEAParseError pe("GPS Data Bad Format [$GPVTG] :: " + ex.message, nmea); + throw pe; + } +} + diff --git a/Bolt_Dash/src/includes/source/NMEACommand.cpp b/Bolt_Dash/src/includes/source/NMEACommand.cpp new file mode 100644 index 0000000..0319f99 --- /dev/null +++ b/Bolt_Dash/src/includes/source/NMEACommand.cpp @@ -0,0 +1,110 @@ +/* + * NMEACommand.cpp + * + * Created on: Sep 8, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#include +#include +#include + +using namespace std; +using namespace nmea; + + +NMEACommand::NMEACommand(){}; + +NMEACommand::~NMEACommand(){}; + +string NMEACommand::toString(){ + return addChecksum(message); +} + +string NMEACommand::addChecksum(std::string s){ + stringstream zz; + zz << name << "," << s; + checksum = NMEAParser::calculateChecksum(zz.str()); + + stringstream ss; + ios_base::fmtflags oldflags = ss.flags(); + ss << "$" << zz.str() << "*" << hex << uppercase << internal << setfill('0') << setw(2) << (int)checksum << "\r\n"; + ss.flags(oldflags); //reset + + return ss.str(); +}; + + + + /* + // $PSRF100,0,9600,8,1,0*0C + + Table 2-4 Set Serial Port Data Format + Name Example Unit Description + Message ID $PSRF100 PSRF100 protocol header + Protocol 0 0=SiRF binary, 1=NMEA + Baud 9600 1200, 2400, 4800, 9600, 19200, 38400, 57600, and 115200 + DataBits 8 8,71 + + StopBits 1 0,1 1. SiRF protocol is only valid for 8 data bits, 1stop bit, and no parity. + Parity 0 0=None, 1=Odd, 2=Even + Checksum *0C + End of message termination + */ +std::string NMEACommandSerialConfiguration::toString(){ + stringstream ss; + + ss << "1," << baud << "," << databits << "," << stopbits << "," << parity; + message = ss.str(); + + return NMEACommand::addChecksum(message); +} + + + + // $PSRF103,00,01,00,01*25 + /* + * Table 2-9 Query/Rate Control Data Format + Name Example Unit Description + Message ID $PSRF103 PSRF103 protocol header + Msg 00 See Table 2-10 + Mode 01 0=SetRate, 1=Query + Rate 00 sec Output—off=0, max=255 + CksumEnable 01 0=Disable Checksum, 1=Enable Checksum + Checksum *25 + End of message termination + */ + /* + * Table 2-10 Messages + Value Description + 0 GGA + 1 GLL + 2 GSA + 3 GSV + 4 RMC + 5 VTG + 6 MSS (If internal beacon is supported) + 7 Not defined + 8 ZDA (if 1PPS output is supported) + 9 Not defined + */ +// Data Members: +// int messageID; +// int mode; +// int rate; +// int checksumEnable; +// Creates a valid NMEA $PSRF103 command sentence. +std::string NMEACommandQueryRate::toString(){ + stringstream ss; + + ss << setfill('0') << setw(2) << messageID << "," + << setfill('0') << setw(2) << mode << "," + << setfill('0') << setw(2) << rate << "," + << setfill('0') << setw(2) << checksumEnable; + message = ss.str(); + + return NMEACommand::addChecksum(message); +} + diff --git a/Bolt_Dash/src/includes/source/NMEAParser.cpp b/Bolt_Dash/src/includes/source/NMEAParser.cpp new file mode 100644 index 0000000..d0a52ed --- /dev/null +++ b/Bolt_Dash/src/includes/source/NMEAParser.cpp @@ -0,0 +1,492 @@ +/* + * NMEAParser.cpp + * + * Created on: Aug 12, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#include +#include +#include +#include +#include +#include + +using namespace std; +using namespace nmea; + + + +// --------- NMEA PARSE ERROR-------------- + +NMEAParseError::NMEAParseError(std::string msg) + : message(msg) +{} +NMEAParseError::NMEAParseError(std::string msg, NMEASentence n) + : message(msg), nmea(n) +{} + +NMEAParseError::~NMEAParseError() +{} + +std::string NMEAParseError::what(){ + return message; +} + + + + +// --------- NMEA SENTENCE -------------- + +NMEASentence::NMEASentence() +: isvalid(false) +, checksumIsCalculated(false) +, calculatedChecksum(0) +, parsedChecksum(0) +{ } + +NMEASentence::~NMEASentence() +{ } + +bool NMEASentence::valid() const { + return isvalid; +} + +bool NMEASentence::checksumOK() const { + return (checksumIsCalculated) + && + (parsedChecksum == calculatedChecksum); +} + + + +// true if the text contains a non-alpha numeric value +bool hasNonAlphaNum(string txt){ + for (const char i : txt){ + if ( !isalnum(i) ){ + return true; + } + } + return false; +} + +// true if alphanumeric or '-' +bool validParamChars(string txt){ + for (const char i : txt){ + if (!isalnum(i)){ + if (i != '-' && i != '.'){ + return false; + } + } + } + return true; +} + +// remove all whitespace +void squish(string& str){ + + char chars[] = {'\t',' '}; + for (const char i : chars) + { + // needs include + str.erase(std::remove(str.begin(), str.end(), i), str.end()); + } +} + +// remove side whitespace +void trim(string& str){ + stringstream trimmer; + trimmer << str; + str.clear(); + trimmer >> str; +} + + +// --------- NMEA PARSER -------------- + + + +NMEAParser::NMEAParser() +: log(false) +, maxbuffersize(NMEA_PARSER_MAX_BUFFER_SIZE) +, fillingbuffer(false) +{ } + +NMEAParser::~NMEAParser() +{ } + + +void NMEAParser::setSentenceHandler(std::string cmdKey, std::function handler){ + eventTable.erase(cmdKey); + eventTable.insert({ cmdKey, handler }); +} +string NMEAParser::getRegisteredSentenceHandlersCSV() +{ + if(eventTable.empty()){ + return ""; + } + + ostringstream ss; + for(const auto& table : eventTable){ + ss << table.first; + + if( ! table.second ){ + ss << "(not callable)"; + } + ss << ","; + } + string s = ss.str(); + if( ! s.empty() ){ + s.resize(s.size()-1); // chop off comma + } + return s; +} + +void NMEAParser::readByte(uint8_t b){ + uint8_t startbyte = '$'; + + if (fillingbuffer){ + if (b == '\n'){ + buffer.push_back(b); + try { + readSentence(buffer); + buffer.clear(); + fillingbuffer = false; + } + catch (exception&){ + // If anything happens, let it pass through, but reset the buffer first. + buffer.clear(); + fillingbuffer = false; + throw; + } + } + else{ + if (buffer.size() < maxbuffersize){ + buffer.push_back(b); + } + else { + buffer.clear(); //clear the host buffer so it won't overflow. + fillingbuffer = false; + } + } + } + else { + if (b == startbyte){ // only start filling when we see the start byte. + fillingbuffer = true; + buffer.push_back(b); + } + } +} + +void NMEAParser::readBuffer(uint8_t* b, uint32_t size){ + for (uint32_t i = 0; i < size; ++i){ + readByte(b[i]); + } +} + +void NMEAParser::readLine(string cmd){ + cmd += "\r\n"; + for (const char i : cmd){ + readByte(i); + } +} + +// Loggers +void NMEAParser::onInfo(NMEASentence& nmea, string txt){ + if (log){ + cout << "[Info] " << txt << endl; + } +} +void NMEAParser::onWarning(NMEASentence& nmea, string txt){ + if (log){ + cout << "[Warning] " << txt << endl; + } +} +void NMEAParser::onError(NMEASentence& nmea, string txt){ + throw NMEAParseError("[ERROR] " + txt); +} + +// takes a complete NMEA string and gets the data bits from it, +// calls the corresponding handler in eventTable, based on the 5 letter sentence code +void NMEAParser::readSentence(std::string cmd){ + + NMEASentence nmea; + + onInfo(nmea, "Processing NEW string..."); + + if (cmd.empty()){ + onWarning(nmea, "Blank string -- Skipped processing."); + return; + } + + // If there is a newline at the end (we are coming from the byte reader + if ( *(cmd.end()-1) == '\n'){ + if (*(cmd.end() - 2) == '\r'){ // if there is a \r before the newline, remove it. + cmd = cmd.substr(0, cmd.size() - 2); + } + else + { + onWarning(nmea, "Malformed newline, missing carriage return (\\r) "); + cmd = cmd.substr(0, cmd.size()-1); + } + } + + ios_base::fmtflags oldflags = cout.flags(); + + // Remove all whitespace characters. + size_t beginsize = cmd.size(); + squish(cmd); + if (cmd.size() != beginsize){ + stringstream ss; + ss << "New NMEA string was full of " << (beginsize - cmd.size()) << " whitespaces!"; + onWarning(nmea, ss.str()); + } + + + onInfo(nmea, string("NMEA string: (\"") + cmd + "\")"); + + + // Seperates the data now that everything is formatted + try{ + parseText(nmea, cmd); + } + catch (NMEAParseError&){ + throw; + } + catch (std::exception& e){ + string s = " >> NMEA Parser Internal Error: Indexing error?... "; + throw std::runtime_error(s + e.what()); + } + cout.flags(oldflags); //reset + + // Handle/Throw parse errors + if (!nmea.valid()){ + + size_t linewidth = 35; + stringstream ss; + if (nmea.text.size() > linewidth){ + ss << "Invalid text. (\"" << nmea.text.substr(0, linewidth) << "...\")"; + } + else{ + ss << "Invalid text. (\"" << nmea.text << "\")"; + } + + onError(nmea, ss.str()); + return; + } + + + // Call the "any sentence" event handler, even if invalid checksum, for possible logging elsewhere. + onInfo(nmea, "Calling generic onSentence()."); + onSentence(nmea); + + + // Call event handlers based on map entries + function handler = eventTable[nmea.name]; + if (handler){ + onInfo(nmea, string("Calling specific handler for sentence named \"") + nmea.name + "\""); + handler(nmea); + } + else + { + onWarning(nmea, string("Null event handler for type (name: \"") + nmea.name + "\")"); + } + + + + + + cout.flags(oldflags); //reset + +} + +// takes the string *between* the '$' and '*' in nmea sentence, +// then calculates a rolling XOR on the bytes +uint8_t NMEAParser::calculateChecksum(string s){ + uint8_t checksum = 0; + for (const char i : s){ + checksum = checksum ^ i; + } + + // will display the calculated checksum in hex + //if(log) + //{ + // ios_base::fmtflags oldflags = cout.flags(); + // cout << "NMEA parser Info: calculated CHECKSUM for \"" << s << "\": 0x" << std::hex << (int)checksum << endl; + // cout.flags(oldflags); //reset + //} + return checksum; +} + + +void NMEAParser::parseText(NMEASentence& nmea, string txt){ + + if (txt.empty()){ + nmea.isvalid = false; + return; + } + + nmea.isvalid = false; // assume it's invalid first + nmea.text = txt; // save the received text of the sentence + + // Looking for index of last '$' + size_t startbyte = 0; + size_t dollar = txt.find_last_of('$'); + if (dollar == string::npos){ + // No dollar sign... INVALID! + return; + } + else + { + startbyte = dollar; + } + + + // Get rid of data up to last'$' + txt = txt.substr(startbyte + 1); + + + // Look for checksum + size_t checkstri = txt.find_last_of('*'); + bool haschecksum = checkstri != string::npos; + if (haschecksum){ + // A checksum was passed in the message, so calculate what we expect to see + nmea.calculatedChecksum = calculateChecksum(txt.substr(0, checkstri)); + } + else + { + // No checksum is only a warning because some devices allow sending data with no checksum. + onWarning(nmea, "No checksum information provided. Could not find '*'."); + } + + // Handle comma edge cases + size_t comma = txt.find(','); + if (comma == string::npos){ //comma not found, but there is a name... + if (!txt.empty()) + { // the received data must just be the name + if ( hasNonAlphaNum(txt) ){ + nmea.isvalid = false; + return; + } + nmea.name = txt; + nmea.isvalid = true; + return; + } + else + { //it is a '$' with no information + nmea.isvalid = false; + return; + } + } + + //"$," case - no name + if (comma == 0){ + nmea.isvalid = false; + return; + } + + + //name should not include first comma + nmea.name = txt.substr(0, comma); + if ( hasNonAlphaNum(nmea.name) ){ + nmea.isvalid = false; + return; + } + + + //comma is the last character/only comma + if (comma + 1 == txt.size()){ + nmea.parameters.push_back(""); + nmea.isvalid = true; + return; + } + + + //move to data after first comma + txt = txt.substr(comma + 1, txt.size() - (comma + 1)); + + //parse parameters according to csv + istringstream f(txt); + string s; + while (getline(f, s, ',')) { + //cout << s << endl; + nmea.parameters.push_back(s); + } + + + //above line parsing does not add a blank parameter if there is a comma at the end... + // so do it here. + if (*(txt.end() - 1) == ','){ + + // supposed to have checksum but there is a comma at the end... invalid + if (haschecksum){ + nmea.isvalid = false; + return; + } + + //cout << "NMEA parser Warning: extra comma at end of sentence, but no information...?" << endl; // it's actually standard, if checksum is disabled + nmea.parameters.push_back(""); + + stringstream sz; + sz << "Found " << nmea.parameters.size() << " parameters."; + onInfo(nmea, sz.str()); + + } + else + { + stringstream sz; + sz << "Found " << nmea.parameters.size() << " parameters."; + onInfo(nmea, sz.str()); + + //possible checksum at end... + size_t endi = nmea.parameters.size() - 1; + size_t checki = nmea.parameters[endi].find_last_of('*'); + if (checki != string::npos){ + string last = nmea.parameters[endi]; + nmea.parameters[endi] = last.substr(0, checki); + if (checki == last.size() - 1){ + onError(nmea, "Checksum '*' character at end, but no data."); + } + else{ + nmea.checksum = last.substr(checki + 1, last.size() - checki); //extract checksum without '*' + + onInfo(nmea, string("Found checksum. (\"*") + nmea.checksum + "\")"); + + try + { + nmea.parsedChecksum = (uint8_t)parseInt(nmea.checksum, 16); + nmea.checksumIsCalculated = true; + } + catch( NumberConversionError& ) + { + onError(nmea, string("parseInt() error. Parsed checksum string was not readable as hex. (\"") + nmea.checksum + "\")"); + } + + onInfo(nmea, string("Checksum ok? ") + (nmea.checksumOK() ? "YES" : "NO") + "!"); + + + } + } + } + + + for (size_t i = 0; i < nmea.parameters.size(); i++){ + if (!validParamChars(nmea.parameters[i])){ + nmea.isvalid = false; + stringstream ss; + ss << "Invalid character (non-alpha-num) in parameter " << i << " (from 0): \"" << nmea.parameters[i] << "\""; + onError(nmea, ss.str() ); + break; + } + } + + + nmea.isvalid = true; + + return; + +} + + diff --git a/Bolt_Dash/src/includes/source/NumberConversion.cpp b/Bolt_Dash/src/includes/source/NumberConversion.cpp new file mode 100644 index 0000000..9638b88 --- /dev/null +++ b/Bolt_Dash/src/includes/source/NumberConversion.cpp @@ -0,0 +1,147 @@ +/* + * NumberConversion.cpp + * + * Created on: Sep 2, 2014 + * Author: Cameron Karlsson + * + * See the license file included with this source. + */ + +#include +#include + +using namespace std; + +namespace nmea { +// Note: both parseDouble and parseInt return 0 with "" input. + + double parseDouble(std::string s){ + + char* p; + double d = ::strtod(s.c_str(), &p); + if (*p != 0){ + std::stringstream ss; + ss << "NumberConversionError: parseDouble() error in argument \"" << s << "\", '" + << *p << "' is not a number."; + throw NumberConversionError(ss.str()); + } + return d; + } + int64_t parseInt(std::string s, int radix){ + char* p; + + int64_t d = ::strtoll(s.c_str(), &p, radix); + + if (*p != 0) { + std::stringstream ss; + ss << "NumberConversionError: parseInt() error in argument \"" << s << "\", '" + << *p << "' is not a number."; + throw NumberConversionError(ss.str()); + } + return d; + } + +} + +/* +#include +void NumberConversion_test(){ + string s; + float f; + long long k; + + try{ + s = "-1.345"; + f = parseDouble(s); + cout << s << ": " << f << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + try{ + s = "-1.23e-2"; + f = parseDouble(s); + cout << s << ": " << f << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + try{ + s = ""; + f = parseDouble(s); + cout << s << ": " << f << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + + try{ + // -- fails, ok + s = "asd"; + f = parseDouble(s); + cout << s << ": " << f << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + try{ + s = "-1234.123"; + k = parseInt(s); + cout << s << ": " << k << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + + try{ + s = "01234"; + k = parseInt(s); + cout << s << ": " << k << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + try{ + // -- converts to 0 + s = ""; + k = parseInt(s); + cout << s << ": " << k << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + + try{ + // -- fails, ok + s = "asd"; + k = parseInt(s); + cout << s << ": " << k << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + try{ + // -- fails, ok + s = "-16"; + k = parseInt(s); + cout << s << ": " << k << endl; + } + catch(NumberConversionError& ex){ + cout << ex.message << endl; + } + + } + */ \ No newline at end of file From 986f355cd31da2818f71ce82bd1392028b6183e2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 22 Jul 2024 19:12:55 -0400 Subject: [PATCH 131/165] Add averaging cell voltages to verify BMS faults --- Bolt_Dash/can.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++ Bolt_Dash/can.h | 28 ++++++++++++++++++++-------- 2 files changed, 65 insertions(+), 8 deletions(-) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index 4c60817..55acdb3 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -1,14 +1,42 @@ #include "can.h" +#include #include #include using namespace std::chrono_literals; +#define FRAMES_TO_AVERAGE 10 +#define CELL_VOLTAGE_SCALING 0.0001 +#define SAFEST_HIGH_CELL_VOLTAGE 4.25 +#define SAFEST_LOW_CELL_VOLTAGE 3.0 + std::mutex m; our_candata data{}; namespace can { + // Circular buffers to store the last 10 values of the highest and lowest cell voltages + int lastLowestCellVoltages[FRAMES_TO_AVERAGE]{}; + int lastHighestCellVoltages[FRAMES_TO_AVERAGE]{}; + int lastLowestCellVoltageIndex = 0; + int lastHighestCellVoltageIndex = 0; + + // Average lowest and highest cell voltages + int getAverageLowestCellVoltage() { + int sum = 0; + for (int i = 0; i < FRAMES_TO_AVERAGE; i++) { + sum += lastLowestCellVoltages[i]; + } + return sum / FRAMES_TO_AVERAGE; + } + int getAverageHighestCellVoltage() { + int sum = 0; + for (int i = 0; i < FRAMES_TO_AVERAGE; i++) { + sum += lastHighestCellVoltages[i]; + } + return sum / FRAMES_TO_AVERAGE; + } + int run() { // Where the data will be stored to be send to the front end int s, i; @@ -67,6 +95,15 @@ namespace can { data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); data.low_cell_temp = frame.data[2] + (frame.data[3] << 8); break; + case can_ids.cell_max_min_voltages: + data.highest_cell_voltage = frame.data[2] + (frame.data[3] << 8); + data.lowest_cell_voltage = frame.data[4] + (frame.data[5] << 8); + // Update circular buffers + lastLowestCellVoltages[lastLowestCellVoltageIndex] = data.lowest_cell_voltage; + lastHighestCellVoltages[lastHighestCellVoltageIndex] = data.highest_cell_voltage; + lastLowestCellVoltageIndex = (lastLowestCellVoltageIndex + 1) % FRAMES_TO_AVERAGE; + lastHighestCellVoltageIndex = (lastHighestCellVoltageIndex + 1) % FRAMES_TO_AVERAGE; + break; case can_ids.motor_temp: data.motor_temperature = frame.data[4] + (frame.data[5] << 8); break; @@ -131,6 +168,14 @@ namespace can { data.bms_error_codes = (frame.data[2]) + (frame.data[0] << 8) + (frame.data[1] << 16); data.bms_error = data.bms_error_codes & ALL_BMS_ERRORS; data.bms_warning = data.bms_error_codes & ALL_BMS_WARNINGS; + + // Clear warnings if they are no longer relevant + if (data.bms_error_codes & bms_errors.highest_cell_voltage_too_high && (getAverageHighestCellVoltage() * CELL_VOLTAGE_SCALING) <= SAFEST_HIGH_CELL_VOLTAGE) { + data.bms_warning &= ~bms_errors.highest_cell_voltage_too_high; + } + if (data.bms_error_codes & bms_errors.lowest_cell_voltage_too_low && (getAverageLowestCellVoltage() * CELL_VOLTAGE_SCALING) >= SAFEST_LOW_CELL_VOLTAGE) { + data.bms_warning &= ~bms_errors.lowest_cell_voltage_too_low; + } break; default: unknown_data = new int8_t[frame.can_dlc]; diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 219af53..dd6e665 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -33,12 +33,15 @@ struct our_candata { uint8_t mc_fault{}; uint8_t motor_on{}; uint8_t bike_status{}; + uint16_t highest_cell_voltage{}; + uint16_t lowest_cell_voltage{}; }; // ID's for each CAN thing constexpr struct { canid_t aux_battery{0x700}; canid_t info{0x6B0}; + canid_t cell_max_min_voltages{0x6B3}; canid_t main_pack_temp{0x6B4}; canid_t bms_error_codes{0x6B6}; canid_t motor_temp{0xA2}; @@ -52,36 +55,45 @@ constexpr struct { constexpr struct { uint32_t discharge_limit_enforcement{1 << 0}; + uint32_t charger_safety_relay{1 << 1}; + uint32_t internal_heatsink_thermistor{1 << 3}; uint32_t cell_balancing_stuck_off{1 << 9}; uint32_t weak_cell{1 << 10}; + uint32_t open_wiring{1 << 12}; uint32_t current_sensor{1 << 13}; uint32_t weak_pack{1 << 16}; uint32_t fan_monitor{1 << 17}; + uint32_t thermistor_fault{1 << 18}; + uint32_t external_communication{1 << 19}; + uint32_t charge_limit_enforcement{1 << 23}; } bms_warnings; constexpr struct { - uint32_t charger_safety_relay{1 << 1}; uint32_t internal_hardware{1 << 2}; - uint32_t internal_heatsink_thermistor{1 << 3}; uint32_t internal_software{1 << 4}; uint32_t highest_cell_voltage_too_high{1 << 5}; uint32_t lowest_cell_voltage_too_low{1 << 6}; uint32_t pack_too_hot{1 << 7}; uint32_t internal_communication{1 << 8}; uint32_t low_cell_voltage{1 << 11}; - uint32_t open_wiring{1 << 12}; uint32_t highest_cell_voltage_over_5v{1 << 14}; uint32_t cell_asic_fault{1 << 15}; - uint32_t thermistor_fault{1 << 18}; - uint32_t external_communication{1 << 19}; uint32_t redundant_power_supply{1 << 20}; uint32_t high_voltage_isolation{1 << 21}; uint32_t input_power_supply{1 << 22}; - uint32_t charge_limit_enforcement{1 << 23}; } bms_errors; -const uint32_t ALL_BMS_ERRORS = bms_errors.charger_safety_relay | bms_errors.internal_hardware | bms_errors.internal_heatsink_thermistor | bms_errors.internal_software | bms_errors.highest_cell_voltage_too_high | bms_errors.lowest_cell_voltage_too_low | bms_errors.pack_too_hot | bms_errors.internal_communication | bms_errors.low_cell_voltage | bms_errors.open_wiring | bms_errors.highest_cell_voltage_over_5v | bms_errors.cell_asic_fault | bms_errors.thermistor_fault | bms_errors.external_communication | bms_errors.redundant_power_supply | bms_errors.high_voltage_isolation | bms_errors.input_power_supply | bms_errors.charge_limit_enforcement; -const uint32_t ALL_BMS_WARNINGS = bms_warnings.discharge_limit_enforcement | bms_warnings.cell_balancing_stuck_off | bms_warnings.weak_cell | bms_warnings.current_sensor | bms_warnings.weak_pack | bms_warnings.fan_monitor; +const uint32_t ALL_BMS_ERRORS = bms_errors.internal_hardware | bms_errors.internal_software | + bms_errors.highest_cell_voltage_too_high | bms_errors.lowest_cell_voltage_too_low | + bms_errors.pack_too_hot | bms_errors.internal_communication | bms_errors.low_cell_voltage | + bms_errors.highest_cell_voltage_over_5v | bms_errors.cell_asic_fault | + bms_errors.redundant_power_supply | bms_errors.high_voltage_isolation | + bms_errors.input_power_supply; +const uint32_t ALL_BMS_WARNINGS = bms_warnings.charger_safety_relay | bms_warnings.discharge_limit_enforcement | + bms_warnings.cell_balancing_stuck_off | bms_warnings.internal_heatsink_thermistor | bms_warnings.weak_cell | + bms_warnings.current_sensor | bms_warnings.weak_pack | bms_warnings.fan_monitor | + bms_warnings.thermistor_fault | bms_warnings.external_communication | + bms_warnings.open_wiring | bms_warnings.charge_limit_enforcement; extern std::mutex m; extern our_candata data; From 0b884193309932a604e58bec4e43ef587a9cacdf Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 22 Jul 2024 19:13:14 -0400 Subject: [PATCH 132/165] Add basic GPS code --- Bolt_Dash/backend.cpp | 97 ++++++++++++++++++------------------------- 1 file changed, 40 insertions(+), 57 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 4225ebb..73b14cd 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -3,13 +3,13 @@ #include "constants.h" #include "web.h" #include -#include -#include #include +#include +#include -#include -#include #include +#include +#include #include using namespace nmea; @@ -24,8 +24,6 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - - } // Calls the set functions with the values from data @@ -377,29 +375,28 @@ void parserStuff() { // Create a GPS service that will keep track of the fix data. NMEAParser parser; GPSService gps(parser); - //parser.log = true; // true: will spit out all sorts of parse info on each sentence. + // parser.log = true; // true: will spit out all sorts of parse info on each sentence. // Handle events when the lock state changes - gps.onLockStateChanged += [](bool newlock){ - if (newlock){ + gps.onLockStateChanged += [](bool newlock) { + if (newlock) { cout << "\t\t\tGPS aquired LOCK!" << endl; - } - else { + } else { cout << "\t\t\tGPS lost lock. Searching..." << endl; } }; // Handle any changes to the GPS Fix... This is called after onSentence - gps.onUpdate += [&gps](){ - cout << "\t\t\tPosition: " << gps.fix.latitude << "'N, " << gps.fix.longitude << "'E" << endl << endl; + gps.onUpdate += [&gps]() { + cout << "\t\t\tPosition: " << gps.fix.latitude << "'N, " << gps.fix.longitude << "'E" << endl + << endl; }; // (optional) - Handle events when the parser receives each sentence - parser.onSentence += [&gps](const NMEASentence& n){ + parser.onSentence += [&gps](const NMEASentence &n) { cout << "Received " << (n.checksumOK() ? "good" : "bad") << " GPS Data: " << n.name << endl; }; - cout << "-------- Reading GPS NMEA data --------" << endl; // -------------------------------------------------------- @@ -422,30 +419,24 @@ void parserStuff() { cout << ">> [ From File]" << endl; string line; ifstream file("nmea_log.txt"); - while ( getline(file, line) ){ + while (getline(file, line)) { try { parser.readLine(line); - } - catch (NMEAParseError& e){ - cout << e.message << endl << endl; + } catch (NMEAParseError &e) { + cout << e.message << endl + << endl; // You can keep feeding data to the gps service... // The previous data is ignored and the parser is reset. } } - } - catch (exception& e){ + } catch (exception &e) { // Notify the proper authorities. Something is on fire. cout << "Something Broke: " << e.what() << endl; } // --------------------------------------- - // Show the final fix information - //cout << gps.fix.toString() << endl; - - - - + // cout << gps.fix.toString() << endl; // -------------------------------------------------------- // --------------- NMEA ALTERNATIVE SENTENCES ---------- @@ -457,21 +448,21 @@ void parserStuff() { // Create our custom parser... NMEAParser custom_parser; - //parser.log = true; - custom_parser.setSentenceHandler("MYNMEA", [](const NMEASentence& n){ + // parser.log = true; + custom_parser.setSentenceHandler("MYNMEA", [](const NMEASentence &n) { cout << "Handling $" << n.name << ":" << endl; - for (size_t i = 0; i < n.parameters.size(); ++i){ + for (size_t i = 0; i < n.parameters.size(); ++i) { cout << " [" << i << "] \t- " << n.parameters[i]; try { double num = parseDouble(n.parameters[i]); cout << " (number: " << num << ")"; - } catch (NumberConversionError&){ + } catch (NumberConversionError &) { cout << " (string)"; } cout << endl; } }); - custom_parser.onSentence += [](const NMEASentence& n){ + custom_parser.onSentence += [](const NMEASentence &n) { cout << "Received $" << n.name << endl; }; @@ -492,16 +483,14 @@ void parserStuff() { !IgN0r3d @)(&%!!! \ $MYNMEA,1,3,3,7,World!*A2\r\n \ "; - for (int i = 0; i < sizeof(data); i++){ + for (int i = 0; i < sizeof(data); i++) { try { custom_parser.readByte(data[i]); - } - catch (NMEAParseError& e){ + } catch (NMEAParseError &e) { cout << e.what() << endl; } } - // -------------------------------------------------------- // --------------- NMEA SENTENCE GENERATION ------------ // -------------------------------------------------------- @@ -510,20 +499,18 @@ void parserStuff() { // Only the following 2 Sentences are implemented, however // you can create your own from the NMEACommand base class. - // Test the parser and command generation - NMEACommand cmd1; // A blank generic command - NMEACommandQueryRate cmd2; // The $PSRF command that allows for GPS sentence selection and rate setting. - NMEACommandQueryRate cmd3; // The $PSRF command that allows for GPS sentence selection and rate setting. - NMEACommandSerialConfiguration cmd4; // The $PSRF command that can configure a UART baud rate. + NMEACommand cmd1; // A blank generic command + NMEACommandQueryRate cmd2; // The $PSRF command that allows for GPS sentence selection and rate setting. + NMEACommandQueryRate cmd3; // The $PSRF command that allows for GPS sentence selection and rate setting. + NMEACommandSerialConfiguration cmd4; // The $PSRF command that can configure a UART baud rate. NMEAParser test_parser; - test_parser.onSentence += [&cmd1, &cmd2, &cmd3, &cmd4](const NMEASentence& n){ + test_parser.onSentence += [&cmd1, &cmd2, &cmd3, &cmd4](const NMEASentence &n) { cout << "Received: " << n.text; - if (!n.checksumOK()){ + if (!n.checksumOK()) { cout << "\t\tChecksum FAIL!" << endl; - } - else { + } else { cout << "\t\tChecksum PASS!" << endl; } }; @@ -531,20 +518,20 @@ void parserStuff() { cout << "-------- NMEA Command Generation --------" << endl; // Just filling it with something. Could be whatever you need. - cmd1.name = "CMD1"; - cmd1.message = "nothing,special"; + cmd1.name = "CMD1"; + cmd1.message = "nothing,special"; // Config output rate for $GPGGA sentence - cmd2.messageID = NMEASentence::MessageID::GGA; - cmd2.mode = NMEACommandQueryRate::QueryRateMode::SETRATE; - cmd2.rate = 3; // output every 3 seconds, 0 to disable + cmd2.messageID = NMEASentence::MessageID::GGA; + cmd2.mode = NMEACommandQueryRate::QueryRateMode::SETRATE; + cmd2.rate = 3; // output every 3 seconds, 0 to disable // Query $GPGSV almanac sentence just this once - cmd3.messageID = NMEASentence::MessageID::GSV; - cmd3.mode = NMEACommandQueryRate::QueryRateMode::QUERY; + cmd3.messageID = NMEASentence::MessageID::GSV; + cmd3.mode = NMEACommandQueryRate::QueryRateMode::QUERY; // Set the Baud rate to 9600, because this GPS chip is awesome - cmd4.baud = 9600; // 4800 is NMEA standard + cmd4.baud = 9600; // 4800 is NMEA standard // Generate the NMEA sentence from the commands and send them back into the test parser. test_parser.readSentence(cmd1.toString()); @@ -552,14 +539,10 @@ void parserStuff() { test_parser.readSentence(cmd3.toString()); test_parser.readSentence(cmd4.toString()); - - cout << endl; cout << endl; cout << "-------- ALL DONE --------" << endl; - - cin.ignore(); } From f98b5bc934a076daad839cf1f57e1693fa53c084 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 2 Aug 2024 16:44:45 -0400 Subject: [PATCH 133/165] Add gps parsing code --- Bolt_Dash/CMakeLists.txt | 3 + Bolt_Dash/backend.cpp | 194 ++---------------------------------- Bolt_Dash/gpsprocessing.cpp | 60 +++++++++++ Bolt_Dash/nmea_decoder.cpp | 94 +++++++++++++++++ 4 files changed, 165 insertions(+), 186 deletions(-) create mode 100644 Bolt_Dash/gpsprocessing.cpp create mode 100644 Bolt_Dash/nmea_decoder.cpp diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 3b5d2b5..4f14247 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -19,11 +19,14 @@ qt_add_executable(Bolt_DashApp src/main.cpp can.h web.h web.cpp + gpsprocessing.cpp src/includes/source/NMEAParser.cpp src/includes/source/GPSService.cpp src/includes/source/GPSFix.cpp src/includes/source/NMEACommand.cpp src/includes/source/NumberConversion.cpp + nmea_decoder.cpp + ) qt_add_resources(Bolt_DashApp "configuration" diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 73b14cd..4a7ad68 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -2,17 +2,14 @@ #include "can.h" #include "constants.h" #include "web.h" +#include "gpsprocessing.cpp" #include #include #include #include - -#include -#include -#include -#include - -using namespace nmea; +#include +#include +#include // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, @@ -24,6 +21,8 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); + + parserStuff(); } // Calls the set functions with the values from data @@ -366,184 +365,7 @@ void Backend::setBmsErrorCodesString(const std::vector warnings) { } // } -void parserStuff() { - using namespace std; - // -------------------------------------------------------- - // ------------ CONFIGURE GPS SERVICE ------------------- - // -------------------------------------------------------- - - // Create a GPS service that will keep track of the fix data. - NMEAParser parser; - GPSService gps(parser); - // parser.log = true; // true: will spit out all sorts of parse info on each sentence. - - // Handle events when the lock state changes - gps.onLockStateChanged += [](bool newlock) { - if (newlock) { - cout << "\t\t\tGPS aquired LOCK!" << endl; - } else { - cout << "\t\t\tGPS lost lock. Searching..." << endl; - } - }; - - // Handle any changes to the GPS Fix... This is called after onSentence - gps.onUpdate += [&gps]() { - cout << "\t\t\tPosition: " << gps.fix.latitude << "'N, " << gps.fix.longitude << "'E" << endl - << endl; - }; - - // (optional) - Handle events when the parser receives each sentence - parser.onSentence += [&gps](const NMEASentence &n) { - cout << "Received " << (n.checksumOK() ? "good" : "bad") << " GPS Data: " << n.name << endl; - }; - - cout << "-------- Reading GPS NMEA data --------" << endl; - - // -------------------------------------------------------- - // --------------- STREAM THE DATA --------------------- - // -------------------------------------------------------- - try { - // From a buffer in memory... - // cout << ">> [ From Buffer]" << endl; - // parser.readBuffer((uint8_t*)bytestream, sizeof(bytestream)); - // --------------------------------------- - - // -- OR -- - // From a device byte stream... - // cout << ">> [ From Device Stream]" << endl; - // parser.readByte(byte_from_device); - // --------------------------------------- - - // -- OR -- - // From a text log file... - cout << ">> [ From File]" << endl; - string line; - ifstream file("nmea_log.txt"); - while (getline(file, line)) { - try { - parser.readLine(line); - } catch (NMEAParseError &e) { - cout << e.message << endl - << endl; - // You can keep feeding data to the gps service... - // The previous data is ignored and the parser is reset. - } - } - } catch (exception &e) { - // Notify the proper authorities. Something is on fire. - cout << "Something Broke: " << e.what() << endl; - } - // --------------------------------------- - - // Show the final fix information - // cout << gps.fix.toString() << endl; - - // -------------------------------------------------------- - // --------------- NMEA ALTERNATIVE SENTENCES ---------- - // -------------------------------------------------------- - // Not using GPS NMEA Sentences? That's A-OK. - // While there is no data aggregation code written here for - // non-GPS use, the parser will still make your job easier. - // Extract only the sentences you care about. - - // Create our custom parser... - NMEAParser custom_parser; - // parser.log = true; - custom_parser.setSentenceHandler("MYNMEA", [](const NMEASentence &n) { - cout << "Handling $" << n.name << ":" << endl; - for (size_t i = 0; i < n.parameters.size(); ++i) { - cout << " [" << i << "] \t- " << n.parameters[i]; - try { - double num = parseDouble(n.parameters[i]); - cout << " (number: " << num << ")"; - } catch (NumberConversionError &) { - cout << " (string)"; - } - cout << endl; - } - }); - custom_parser.onSentence += [](const NMEASentence &n) { - cout << "Received $" << n.name << endl; - }; - - cout << "-------- Reading non-GPS NMEA data --------" << endl; - - // Read the data stream... - // These don't have correct checksums. They're made up. - char data[] = " $MYNMEA,1,3,3,7,Hello*A2\n \ - $IRRELEVANT,5,5,5*AA\n \ - $ERRORS,:D,\n \ - $\n \ - $$\n \ - $*\n \ - $*,\n \ - $,\n \ - $,*\n \ - garbage that will be \ - !IgN0r3d @)(&%!!! \ - $MYNMEA,1,3,3,7,World!*A2\r\n \ - "; - for (int i = 0; i < sizeof(data); i++) { - try { - custom_parser.readByte(data[i]); - } catch (NMEAParseError &e) { - cout << e.what() << endl; - } - } - - // -------------------------------------------------------- - // --------------- NMEA SENTENCE GENERATION ------------ - // -------------------------------------------------------- - // Some devices allow control sentences to be sent to them. - // For some GPS devices this can allow selecting certain data. - // Only the following 2 Sentences are implemented, however - // you can create your own from the NMEACommand base class. - - // Test the parser and command generation - NMEACommand cmd1; // A blank generic command - NMEACommandQueryRate cmd2; // The $PSRF command that allows for GPS sentence selection and rate setting. - NMEACommandQueryRate cmd3; // The $PSRF command that allows for GPS sentence selection and rate setting. - NMEACommandSerialConfiguration cmd4; // The $PSRF command that can configure a UART baud rate. - NMEAParser test_parser; - test_parser.onSentence += [&cmd1, &cmd2, &cmd3, &cmd4](const NMEASentence &n) { - cout << "Received: " << n.text; - - if (!n.checksumOK()) { - cout << "\t\tChecksum FAIL!" << endl; - } else { - cout << "\t\tChecksum PASS!" << endl; - } - }; - - cout << "-------- NMEA Command Generation --------" << endl; - - // Just filling it with something. Could be whatever you need. - cmd1.name = "CMD1"; - cmd1.message = "nothing,special"; - - // Config output rate for $GPGGA sentence - cmd2.messageID = NMEASentence::MessageID::GGA; - cmd2.mode = NMEACommandQueryRate::QueryRateMode::SETRATE; - cmd2.rate = 3; // output every 3 seconds, 0 to disable - - // Query $GPGSV almanac sentence just this once - cmd3.messageID = NMEASentence::MessageID::GSV; - cmd3.mode = NMEACommandQueryRate::QueryRateMode::QUERY; - - // Set the Baud rate to 9600, because this GPS chip is awesome - cmd4.baud = 9600; // 4800 is NMEA standard - - // Generate the NMEA sentence from the commands and send them back into the test parser. - test_parser.readSentence(cmd1.toString()); - test_parser.readSentence(cmd2.toString()); - test_parser.readSentence(cmd3.toString()); - test_parser.readSentence(cmd4.toString()); - - cout << endl; - cout << endl; - cout << "-------- ALL DONE --------" << endl; - - cin.ignore(); -} + + std::thread can_thread(can::run); diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp new file mode 100644 index 0000000..39744d8 --- /dev/null +++ b/Bolt_Dash/gpsprocessing.cpp @@ -0,0 +1,60 @@ +#include +#include +#include +#include +#include + +#include "nmea_decoder.cpp" + +const char* SERIAL_PORT = "/dev/ttyAMA0"; // Serial port for GPS +const int BAUD_RATE = B9600; // Baud rate for GPS communication + +int initializeGPS() { + int fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY); + if (fd == -1) { + perror("Unable to open serial port"); + return -1; + } + + struct termios options; + tcgetattr(fd, &options); + cfsetispeed(&options, BAUD_RATE); + cfsetospeed(&options, BAUD_RATE); + options.c_cflag |= (CLOCAL | CREAD); + options.c_cflag &= ~PARENB; + options.c_cflag &= ~CSTOPB; + options.c_cflag &= ~CSIZE; + options.c_cflag |= CS8; + tcsetattr(fd, TCSANOW, &options); + + return fd; +} + +int parserStuff() { + // Function to initialize GPS serial port + int gps_fd = initializeGPS(); + if (gps_fd < 0) { + std::cerr << "Failed to initialize GPS serial port" << std::endl; + return 1; + } + + std::cout << "PiCAN+ GPS initialized successfully" << std::endl; + + // Main loop + while (true) { + // Read GPS data + char gps_buffer[256]; + int n = read(gps_fd, gps_buffer, sizeof(gps_buffer)); + if (n > 0) { + gps_buffer[n] = 0; // Null-terminate the string + std::cout << "GPS Data: " << gps_buffer; + GPSData currentData = decodeNMEA(gps_buffer); + printGPSData(currentData); + } + + usleep(100000); // Sleep for 100ms + } + + close(gps_fd); + return 0; +} diff --git a/Bolt_Dash/nmea_decoder.cpp b/Bolt_Dash/nmea_decoder.cpp new file mode 100644 index 0000000..d45b940 --- /dev/null +++ b/Bolt_Dash/nmea_decoder.cpp @@ -0,0 +1,94 @@ +#include +#include +#include +#include +#include + +struct GPSData { + double latitude = 0.0; + double longitude = 0.0; + std::string time = ""; + std::string date = ""; + double altitude = 0.0; + int satellites = 0; + std::string fix = "Invalid"; +}; + +std::vector split(const std::string& s, char delimiter) { + std::vector tokens; + std::string token; + std::istringstream tokenStream(s); + while (std::getline(tokenStream, token, delimiter)) { + tokens.push_back(token); + } + return tokens; +} + +double convertToDecimalDegrees(const std::string& value, const std::string& direction) { + double degree = std::stod(value.substr(0, value.find('.') - 2)); + double minutes = std::stod(value.substr(value.find('.') - 2)); + double decimalDegrees = degree + (minutes / 60.0); + + if (direction == "S" || direction == "W") { + decimalDegrees = -decimalDegrees; + } + + return decimalDegrees; +} + +GPSData decodeNMEA(const std::string& nmea) { + GPSData data; + std::vector parts = split(nmea, ','); + + if (parts[0] == "$GPGGA") { + if (parts.size() >= 15) { + data.time = parts[1].substr(0, 2) + ":" + parts[1].substr(2, 2) + ":" + parts[1].substr(4, 2); + if (!parts[2].empty() && !parts[3].empty()) { + data.latitude = convertToDecimalDegrees(parts[2], parts[3]); + } + if (!parts[4].empty() && !parts[5].empty()) { + data.longitude = convertToDecimalDegrees(parts[4], parts[5]); + } + data.fix = (parts[6] == "1" || parts[6] == "2") ? "Valid" : "Invalid"; + data.satellites = std::stoi(parts[7]); + data.altitude = std::stod(parts[9]); + } + } + else if (parts[0] == "$GPRMC") { + if (parts.size() >= 12) { + data.time = parts[1].substr(0, 2) + ":" + parts[1].substr(2, 2) + ":" + parts[1].substr(4, 2); + if (!parts[3].empty() && !parts[4].empty()) { + data.latitude = convertToDecimalDegrees(parts[3], parts[4]); + } + if (!parts[5].empty() && !parts[6].empty()) { + data.longitude = convertToDecimalDegrees(parts[5], parts[6]); + } + data.date = parts[9].substr(0, 2) + "/" + parts[9].substr(2, 2) + "/" + parts[9].substr(4, 2); + data.fix = (parts[2] == "A") ? "Valid" : "Invalid"; + } + } + + return data; +} + +void printGPSData(const GPSData& data) { + std::cout << "Time: " << data.time << std::endl; + std::cout << "Date: " << data.date << std::endl; + std::cout << "Latitude: " << data.latitude << std::endl; + std::cout << "Longitude: " << data.longitude << std::endl; + std::cout << "Altitude: " << data.altitude << " m" << std::endl; + std::cout << "Satellites: " << data.satellites << std::endl; + std::cout << "Fix: " << data.fix << std::endl; + std::cout << "------------------------" << std::endl; +} + +int main() { + std::string nmea; + while (std::getline(std::cin, nmea)) { + if (nmea.substr(0, 6) == "$GPGGA" || nmea.substr(0, 6) == "$GPRMC") { + GPSData data = decodeNMEA(nmea); + printGPSData(data); + } + } + return 0; +} From 95f1c7d9fa25e474b3628ae3b78297db39553acf Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 2 Aug 2024 16:48:38 -0400 Subject: [PATCH 134/165] Change some errors to warnings in backend.cpp --- Bolt_Dash/backend.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 4a7ad68..3b2f5bf 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -81,13 +81,13 @@ std::vector Backend::getErrorCodeStrings(uint32_t errorCodes) { warnings.push_back("Fan Monitor"); } // Errors - if (errorCodes & bms_errors.charger_safety_relay) { + if (errorCodes & bms_warnings.charger_safety_relay) { warnings.push_back("Charger Safety Relay"); } if (errorCodes & bms_errors.internal_hardware) { warnings.push_back("Internal Hardware"); } - if (errorCodes & bms_errors.internal_heatsink_thermistor) { + if (errorCodes & bms_warnings.internal_heatsink_thermistor) { warnings.push_back("Internal Heatsink Thermistor"); } if (errorCodes & bms_errors.internal_software) { @@ -108,7 +108,7 @@ std::vector Backend::getErrorCodeStrings(uint32_t errorCodes) { if (errorCodes & bms_errors.low_cell_voltage) { warnings.push_back("Low Cell Voltage"); } - if (errorCodes & bms_errors.open_wiring) { + if (errorCodes & bms_warnings.open_wiring) { warnings.push_back("Open Wiring"); } if (errorCodes & bms_errors.highest_cell_voltage_over_5v) { @@ -117,10 +117,10 @@ std::vector Backend::getErrorCodeStrings(uint32_t errorCodes) { if (errorCodes & bms_errors.cell_asic_fault) { warnings.push_back("Cell ASIC Fault"); } - if (errorCodes & bms_errors.thermistor_fault) { + if (errorCodes & bms_warnings.thermistor_fault) { warnings.push_back("Thermistor Fault"); } - if (errorCodes & bms_errors.external_communication) { + if (errorCodes & bms_warnings.external_communication) { warnings.push_back("External Communication"); } if (errorCodes & bms_errors.redundant_power_supply) { @@ -132,7 +132,7 @@ std::vector Backend::getErrorCodeStrings(uint32_t errorCodes) { if (errorCodes & bms_errors.input_power_supply) { warnings.push_back("Input Power Supply"); } - if (errorCodes & bms_errors.charge_limit_enforcement) { + if (errorCodes & bms_warnings.charge_limit_enforcement) { warnings.push_back("Charge Limit Enforcement"); } return warnings; From 65d258d3771e126e9245a08f805a58c719e350c4 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 2 Aug 2024 16:50:06 -0400 Subject: [PATCH 135/165] Correct serial port --- Bolt_Dash/gpsprocessing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 39744d8..1efb94c 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -6,7 +6,7 @@ #include "nmea_decoder.cpp" -const char* SERIAL_PORT = "/dev/ttyAMA0"; // Serial port for GPS +const char* SERIAL_PORT = "/dev/ttyS0"; // Serial port for GPS const int BAUD_RATE = B9600; // Baud rate for GPS communication int initializeGPS() { From 121d2826ce5c55ed573bc95c46b3a626da5a806d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 2 Aug 2024 16:52:08 -0400 Subject: [PATCH 136/165] Can't have two functions named 'main' --- Bolt_Dash/nmea_decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/nmea_decoder.cpp b/Bolt_Dash/nmea_decoder.cpp index d45b940..5611840 100644 --- a/Bolt_Dash/nmea_decoder.cpp +++ b/Bolt_Dash/nmea_decoder.cpp @@ -82,7 +82,7 @@ void printGPSData(const GPSData& data) { std::cout << "------------------------" << std::endl; } -int main() { +int nmmeaMain() { std::string nmea; while (std::getline(std::cin, nmea)) { if (nmea.substr(0, 6) == "$GPGGA" || nmea.substr(0, 6) == "$GPRMC") { From 304b2e5366b131bb4a8357fcc5cf77af51a4fcfc Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 2 Aug 2024 16:53:46 -0400 Subject: [PATCH 137/165] Testing --- Bolt_Dash/nmea_decoder.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bolt_Dash/nmea_decoder.cpp b/Bolt_Dash/nmea_decoder.cpp index 5611840..2422a74 100644 --- a/Bolt_Dash/nmea_decoder.cpp +++ b/Bolt_Dash/nmea_decoder.cpp @@ -4,6 +4,8 @@ #include #include +#pragma once + struct GPSData { double latitude = 0.0; double longitude = 0.0; From 9e7c3d0ead26a1ce66aa7abc1e628100e863dee3 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 28 Aug 2024 16:30:23 -0400 Subject: [PATCH 138/165] Migrate changes from pi --- Bolt_Dash/CMakeLists.txt | 4 +- Bolt_Dash/backend.cpp | 12 +- Bolt_Dash/gpsprocessing.cpp | 18 +- Bolt_Dash/gpsprocessing.h | 16 + Bolt_Dash/nmea_decoder.cpp | 32 +- Bolt_Dash/nmea_decoder.h | 25 + .../api/v1/query/client-vscode/query.json | 1 + .../reply/cache-v2-4f2284380e850db36450.json | 5967 +++++++++++++++++ .../cmakeFiles-v1-81ec662148f00936beea.json | 5038 ++++++++++++++ .../codemodel-v2-9e1aa1876566bda061f7.json | 650 ++ ...irectory-.-Debug-c763ad29e698621ff67d.json | 45 + ...ry-content-Debug-61a361743d88a3b42c45.json | 14 + ...ry-imports-Debug-615074570c3908afab44.json | 14 + ....Bolt_Dash-Debug-826bc3c800d0ab2caed0.json | 14 + ...imports.IO-Debug-292cee666d28555cd386.json | 14 + .../reply/index-2024-08-28T20-25-29-0248.json | 132 + ...-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json | 703 ++ ...lt_DashApp-Debug-eb462bdc3b44739a892a.json | 1600 +++++ ...pp_autogen-Debug-ecac5cdf9083af5a0e90.json | 75 + ...stamp_deps-Debug-dd6fa5d8215e24bf5e96.json | 50 + ...importscan-Debug-c50036dcb3d9905198cb.json | 120 + ...pp_qmllint-Debug-86360ad26642c7135a80.json | 110 + ...llint_json-Debug-e6f29d11dfb6cf4124b2.json | 110 + ...int_module-Debug-09c57076607543db8839.json | 110 + ...gistration-Debug-bed60cad2623cab775fd.json | 138 + ...pp_tooling-Debug-b5a316b22109d18669c5.json | 104 + ...sh_autogen-Debug-441b69b2d2859eb87ef9.json | 75 + ...stamp_deps-Debug-088cb1adfedc1814c818.json | 38 + ...sh_qmllint-Debug-8f84f953a3c3747dcfa4.json | 98 + ...llint_json-Debug-b9482acbc0f5cb9eee92.json | 98 + ...int_module-Debug-5161ed4a6133ec9c44db.json | 98 + ...gistration-Debug-a66ba952e1eb06fb9c42.json | 126 + ...esources_1-Debug-f941936bb9e211476b67.json | 263 + ...esources_2-Debug-4a8635105ce5670d28ed.json | 270 + ...sh_tooling-Debug-fa310d612e1f5c4b7e79.json | 134 + ...Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json | 301 + ...in_autogen-Debug-9a452770f8adbf060a01.json | 75 + ...stamp_deps-Debug-f9d79c4e9cde3feff6ed.json | 62 + ...lugin_init-Debug-d8f518305c4ecf6747f6.json | 289 + ...it_autogen-Debug-6cbb6c2e197bd8d1f37d.json | 75 + ...stamp_deps-Debug-32f76fa5b6be2d7ecb15.json | 62 + .../target-IO-Debug-e29c6efea1915d85c9e6.json | 137 + ...t-IOPlugin-Debug-e858e202624a3206316e.json | 621 ++ ...in_autogen-Debug-ab7dda293435bacb6cef.json | 75 + ...stamp_deps-Debug-9fd2f2bd055f0f2aa787.json | 31 + ...in_qmllint-Debug-8c11c37e67daa846bd4d.json | 98 + ...llint_json-Debug-ff36221727ea077c298a.json | 98 + ...int_module-Debug-e500ecfaad5c8fc0f0e5.json | 98 + ...gistration-Debug-ef5f2c0b53e30c6e5e52.json | 126 + ...uginplugin-Debug-a0d4e74bb53dc236a11a.json | 423 ++ ...in_autogen-Debug-0789b3865f46588f5ad0.json | 75 + ...stamp_deps-Debug-7c334fe2ed061162f2bb.json | 62 + ...IO_autogen-Debug-708994b234752366cd0d.json | 75 + ...stamp_deps-Debug-c486d73ceaf28f507353.json | 31 + ...ll_qmllint-Debug-c143a655f3229854e7a1.json | 208 + ...llint_json-Debug-02e8fac95724d14079aa.json | 208 + ...int_module-Debug-74f2c776ef292c1a5eef.json | 208 + ...istrations-Debug-fbf9e0225f3838680c13.json | 158 + ...et-content-Debug-84c13ddb4d05224351df.json | 1353 ++++ ...nt_autogen-Debug-3c4e7cf7b92ed045bf43.json | 75 + ...stamp_deps-Debug-cf12f537e2a66db07150.json | 38 + ...nt_qmllint-Debug-8142ca0703017c202a06.json | 98 + ...llint_json-Debug-7eab1ed0c12a3f64d3b1.json | 98 + ...int_module-Debug-8f5301cedfba2c65c02b.json | 98 + ...gistration-Debug-4d171b3e279cd861953b.json | 126 + ...esources_1-Debug-3dfee9aca78a1157a591.json | 263 + ...esources_2-Debug-4e21ea579599e366b50a.json | 270 + ...nt_tooling-Debug-31cbc5df92c7478ca653.json | 532 ++ ...tentplugin-Debug-2c9a48946c97ef59f438.json | 301 + ...in_autogen-Debug-c1a4b967070723e2f2f4.json | 75 + ...stamp_deps-Debug-c808e5e877b5935fa4e2.json | 62 + ...lugin_init-Debug-202e8c1956da63ca4598.json | 289 + ...it_autogen-Debug-7e23e3d44851a0a93369.json | 75 + ...stamp_deps-Debug-b58281811959a68fc485.json | 62 + ...al_plugins-Debug-73d78de408bb540280e3.json | 76 + .../toolchains-v1-3df0db7d651d973da145.json | 61 + build/.qt/QtDeploySupport.cmake | 70 + build/.qt/QtDeployTargets.cmake | 3 + .../.qt/deploy_qml_imports/Bolt_DashApp.cmake | 20 + .../Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake | 38 + .../Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp | 15 + build/.rcc/Bolt_DashApp_raw_qml_0.qrc | 6 + build/.rcc/configuration.qrc | 6 + build/.rcc/qmake_Main.qrc | 6 + .../Bolt_DashApp_qml_loader_file_list.rsp | 7 + build/.rcc/qmllint/Bolt_DashApp.rsp | 12 + build/.rcc/qmllint/Bolt_DashApp_json.rsp | 14 + build/.rcc/qmllint/Bolt_DashApp_module.rsp | 12 + .../CMakeFiles/3.30.0/CMakeCXXCompiler.cmake | 101 + .../3.30.0/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16984 bytes build/CMakeFiles/3.30.0/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 919 +++ .../3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 1712 bytes .../Bolt_DashApp.dir/DependInfo.cmake | 23 + build/CMakeFiles/Bolt_DashApp.dir/build.make | 132 + .../Bolt_DashApp.dir/cmake_clean.cmake | 14 + .../Bolt_DashApp.dir/compiler_depend.make | 2 + .../Bolt_DashApp.dir/compiler_depend.ts | 2 + build/CMakeFiles/Bolt_DashApp.dir/depend.make | 2 + build/CMakeFiles/Bolt_DashApp.dir/flags.make | 12 + build/CMakeFiles/Bolt_DashApp.dir/link.txt | 1 + .../CMakeFiles/Bolt_DashApp.dir/progress.make | 3 + .../Bolt_DashApp_autogen.dir/AutogenInfo.json | 1169 ++++ .../Bolt_DashApp_autogen.dir/DependInfo.cmake | 23 + .../Bolt_DashApp_autogen.dir/build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 22 + .../Bolt_DashApp_qmlimportscan.dir/build.make | 95 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../Bolt_DashApp_qmllint.dir/DependInfo.cmake | 22 + .../Bolt_DashApp_qmllint.dir/build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../Bolt_DashApp_qmllint_json.dir/build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 22 + .../build.make | 89 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 29 + .../build.make | 136 + .../cmake_clean.cmake | 16 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 6 + .../Bolt_DashApp_tooling.dir/DependInfo.cmake | 22 + .../Bolt_DashApp_tooling.dir/build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_DashApp_tooling.dir/progress.make | 2 + build/CMakeFiles/CMakeConfigureLog.yaml | 322 + .../CMakeDirectoryInformation.cmake | 16 + build/CMakeFiles/CMakeRuleHashes.txt | 129 + build/CMakeFiles/Makefile.cmake | 923 +++ build/CMakeFiles/Makefile2 | 1802 +++++ build/CMakeFiles/TargetDirectories.txt | 89 + .../all_qmllint.dir/DependInfo.cmake | 22 + build/CMakeFiles/all_qmllint.dir/build.make | 83 + .../all_qmllint.dir/cmake_clean.cmake | 5 + .../all_qmllint.dir/compiler_depend.make | 2 + .../all_qmllint.dir/compiler_depend.ts | 2 + .../CMakeFiles/all_qmllint.dir/progress.make | 1 + .../all_qmllint_json.dir/DependInfo.cmake | 22 + .../all_qmllint_json.dir/build.make | 83 + .../all_qmllint_json.dir/cmake_clean.cmake | 5 + .../all_qmllint_json.dir/compiler_depend.make | 2 + .../all_qmllint_json.dir/compiler_depend.ts | 2 + .../all_qmllint_json.dir/progress.make | 1 + .../all_qmllint_module.dir/DependInfo.cmake | 22 + .../all_qmllint_module.dir/build.make | 83 + .../all_qmllint_module.dir/cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../all_qmllint_module.dir/compiler_depend.ts | 2 + .../all_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../all_qmltyperegistrations.dir/build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + build/CMakeFiles/cmake.check_cache | 1 + build/CMakeFiles/progress.marks | 1 + .../Main/Bolt_DashApp_qml_module_dir_map.qrc | 6 + build/Main/main.qml | 9 + build/Main/qmldir | 4 + build/Makefile | 1042 +++ build/cmake_install.cmake | 81 + build/compile_commands.json | 332 + build/content/.rcc/content_raw_qml_0.qrc | 37 + build/content/.rcc/qmake_content.qrc | 6 + .../qmlcache/content_qml_loader_file_list.rsp | 25 + build/content/.rcc/qmllint/content.rsp | 30 + build/content/.rcc/qmllint/content_json.rsp | 32 + build/content/.rcc/qmllint/content_module.rsp | 10 + .../.rcc/qrc_content_raw_qml_0_init.cpp | 14 + build/content/.rcc/qrc_qmake_content_init.cpp | 14 + build/content/App.qml | 44 + build/content/BMSFaultDetails.qml | 93 + build/content/BatteryReadout.qml | 87 + build/content/BatterySlider.qml | 41 + build/content/BikeStatus.qml | 102 + build/content/BoltLeanAngle.qml | 30 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/content.dir/DependInfo.cmake | 54 + .../content/CMakeFiles/content.dir/build.make | 829 +++ .../CMakeFiles/content.dir/cmake_clean.cmake | 94 + .../content.dir/cmake_clean_target.cmake | 3 + .../content.dir/compiler_depend.make | 2 + .../CMakeFiles/content.dir/compiler_depend.ts | 2 + .../CMakeFiles/content.dir/depend.make | 2 + .../content/CMakeFiles/content.dir/flags.make | 12 + build/content/CMakeFiles/content.dir/link.txt | 2 + .../CMakeFiles/content.dir/progress.make | 56 + .../content_autogen.dir/AutogenInfo.json | 161 + .../content_autogen.dir/DependInfo.cmake | 23 + .../CMakeFiles/content_autogen.dir/build.make | 93 + .../content_autogen.dir/cmake_clean.cmake | 10 + .../content_autogen.dir/compiler_depend.make | 2 + .../content_autogen.dir/compiler_depend.ts | 2 + .../content_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../content_qmllint.dir/DependInfo.cmake | 22 + .../CMakeFiles/content_qmllint.dir/build.make | 109 + .../content_qmllint.dir/cmake_clean.cmake | 8 + .../content_qmllint.dir/compiler_depend.make | 2 + .../content_qmllint.dir/compiler_depend.ts | 2 + .../content_qmllint.dir/progress.make | 1 + .../content_qmllint_json.dir/DependInfo.cmake | 22 + .../content_qmllint_json.dir/build.make | 109 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../content_qmllint_module.dir/build.make | 109 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 29 + .../build.make | 129 + .../cmake_clean.cmake | 16 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 6 + .../content_resources_1.dir/DependInfo.cmake | 23 + .../content_resources_1.dir/build.make | 101 + .../content_resources_1.dir/cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_resources_1.dir/depend.make | 2 + .../content_resources_1.dir/flags.make | 12 + .../content_resources_1.dir/progress.make | 2 + .../content_resources_2.dir/DependInfo.cmake | 23 + .../content_resources_2.dir/build.make | 101 + .../content_resources_2.dir/cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../content_resources_2.dir/depend.make | 2 + .../content_resources_2.dir/flags.make | 12 + .../content_resources_2.dir/progress.make | 2 + .../content_tooling.dir/DependInfo.cmake | 22 + .../CMakeFiles/content_tooling.dir/build.make | 243 + .../content_tooling.dir/cmake_clean.cmake | 39 + .../content_tooling.dir/compiler_depend.make | 2 + .../content_tooling.dir/compiler_depend.ts | 2 + .../content_tooling.dir/progress.make | 33 + .../contentplugin.dir/DependInfo.cmake | 24 + .../CMakeFiles/contentplugin.dir/build.make | 127 + .../contentplugin.dir/cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../contentplugin.dir/compiler_depend.make | 2 + .../contentplugin.dir/compiler_depend.ts | 2 + .../CMakeFiles/contentplugin.dir/depend.make | 2 + .../CMakeFiles/contentplugin.dir/flags.make | 12 + .../CMakeFiles/contentplugin.dir/link.txt | 2 + .../contentplugin.dir/progress.make | 4 + .../AutogenInfo.json | 166 + .../DependInfo.cmake | 23 + .../contentplugin_autogen.dir/build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../contentplugin_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 86 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../contentplugin_init.dir/DependInfo.cmake | 24 + .../contentplugin_init.dir/build.make | 116 + .../contentplugin_init.dir/cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../contentplugin_init.dir/compiler_depend.ts | 2 + .../contentplugin_init.dir/depend.make | 2 + .../contentplugin_init.dir/flags.make | 12 + .../contentplugin_init.dir/progress.make | 3 + .../AutogenInfo.json | 169 + .../DependInfo.cmake | 23 + .../contentplugin_init_autogen.dir/build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 86 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + build/content/CMakeFiles/progress.marks | 1 + build/content/Debug1.qml | 66 + build/content/DebugBMS.qml | 69 + build/content/DebugItem1.ui.qml | 61 + build/content/DebugMain.qml | 65 + build/content/DebugMotor.qml | 52 + build/content/DebugOverview.qml | 5 + build/content/DebugPDU.qml | 53 + build/content/FaultMotorStatus.qml | 227 + build/content/FullBatterySlider.qml | 37 + build/content/FullSlider.qml | 56 + build/content/Makefile | 1279 ++++ .../Pictures/Virginia_Tech_Hokies_logo.svg | 7 + .../battery-twotone-0-svgrepo-com.svg | 6 + build/content/Pictures/battery.svg | 6 + build/content/Pictures/battery_temp.svg | 11 + build/content/Pictures/controller_temp.svg | 3 + build/content/Pictures/leanAngleBack.png | Bin 0 -> 55425 bytes build/content/Pictures/motor_temp.svg | 12 + build/content/Pictures/motorcycleIcon.png | Bin 0 -> 19552 bytes build/content/Screen01.ui.qml | 101 + build/content/Speedometer.qml | 40 + build/content/SpeedometerDecorations.qml | 65 + build/content/TempSlider.qml | 65 + build/content/TemperatureIsland.qml | 70 + build/content/cmake_install.cmake | 39 + build/content/content_qml_module_dir_map.qrc | 6 + build/content/contentplugin_contentPlugin.cpp | 32 + .../contentplugin_contentPlugin_in.cpp | 36 + build/content/contentplugin_init.cpp | 2 + .../fonts/MesloLGSDZNerdFontMono-Regular.ttf | Bin 0 -> 2308356 bytes build/content/fonts/fonts.txt | 1 + build/content/fonts/nasalization-rg.otf | Bin 0 -> 89220 bytes .../qt6content_debug_metatypes.json | 0 build/content/qmldir | 28 + .../qmltypes/content_foreign_types.txt | 1 + .../Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc | 9 + .../Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc | 6 + .../Bolt_Dash_qml_loader_file_list.rsp | 8 + .../Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp | 13 + .../Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp | 15 + .../.rcc/qmllint/Bolt_Dash_module.rsp | 10 + .../.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp | 14 + .../.rcc/qrc_qmake_Bolt_Dash_init.cpp | 14 + .../Bolt_Dash_qml_module_dir_map.qrc | 6 + .../Bolt_Dashplugin_Bolt_DashPlugin.cpp | 32 + .../Bolt_Dashplugin_Bolt_DashPlugin_in.cpp | 36 + .../Bolt_Dash/Bolt_Dashplugin_init.cpp | 2 + .../CMakeFiles/Bolt_Dash.dir/DependInfo.cmake | 37 + .../CMakeFiles/Bolt_Dash.dir/build.make | 342 + .../Bolt_Dash.dir/cmake_clean.cmake | 43 + .../Bolt_Dash.dir/cmake_clean_target.cmake | 3 + .../Bolt_Dash.dir/compiler_depend.make | 2 + .../Bolt_Dash.dir/compiler_depend.ts | 2 + .../CMakeFiles/Bolt_Dash.dir/depend.make | 2 + .../CMakeFiles/Bolt_Dash.dir/flags.make | 12 + .../CMakeFiles/Bolt_Dash.dir/link.txt | 2 + .../CMakeFiles/Bolt_Dash.dir/progress.make | 22 + .../Bolt_Dash_autogen.dir/AutogenInfo.json | 127 + .../Bolt_Dash_autogen.dir/DependInfo.cmake | 23 + .../Bolt_Dash_autogen.dir/build.make | 93 + .../Bolt_Dash_autogen.dir/cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../Bolt_Dash_autogen.dir/compiler_depend.ts | 2 + .../Bolt_Dash_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../Bolt_Dash_qmllint.dir/DependInfo.cmake | 22 + .../Bolt_Dash_qmllint.dir/build.make | 92 + .../Bolt_Dash_qmllint.dir/cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../Bolt_Dash_qmllint.dir/compiler_depend.ts | 2 + .../Bolt_Dash_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../Bolt_Dash_qmllint_json.dir/build.make | 92 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../Bolt_Dash_qmllint_module.dir/build.make | 92 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../DependInfo.cmake | 29 + .../build.make | 129 + .../cmake_clean.cmake | 16 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 6 + .../DependInfo.cmake | 23 + .../Bolt_Dash_resources_1.dir/build.make | 101 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_resources_1.dir/depend.make | 2 + .../Bolt_Dash_resources_1.dir/flags.make | 12 + .../Bolt_Dash_resources_1.dir/progress.make | 2 + .../DependInfo.cmake | 23 + .../Bolt_Dash_resources_2.dir/build.make | 101 + .../cmake_clean.cmake | 9 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dash_resources_2.dir/depend.make | 2 + .../Bolt_Dash_resources_2.dir/flags.make | 12 + .../Bolt_Dash_resources_2.dir/progress.make | 2 + .../Bolt_Dash_tooling.dir/DependInfo.cmake | 22 + .../Bolt_Dash_tooling.dir/build.make | 103 + .../Bolt_Dash_tooling.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../Bolt_Dash_tooling.dir/compiler_depend.ts | 2 + .../Bolt_Dash_tooling.dir/progress.make | 5 + .../Bolt_Dashplugin.dir/DependInfo.cmake | 24 + .../CMakeFiles/Bolt_Dashplugin.dir/build.make | 127 + .../Bolt_Dashplugin.dir/cmake_clean.cmake | 16 + .../cmake_clean_target.cmake | 3 + .../Bolt_Dashplugin.dir/compiler_depend.make | 2 + .../Bolt_Dashplugin.dir/compiler_depend.ts | 2 + .../Bolt_Dashplugin.dir/depend.make | 2 + .../CMakeFiles/Bolt_Dashplugin.dir/flags.make | 12 + .../CMakeFiles/Bolt_Dashplugin.dir/link.txt | 2 + .../Bolt_Dashplugin.dir/progress.make | 4 + .../AutogenInfo.json | 132 + .../DependInfo.cmake | 23 + .../Bolt_Dashplugin_autogen.dir/build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dashplugin_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 86 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../Bolt_Dashplugin_init.dir/DependInfo.cmake | 24 + .../Bolt_Dashplugin_init.dir/build.make | 116 + .../cmake_clean.cmake | 14 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../Bolt_Dashplugin_init.dir/depend.make | 2 + .../Bolt_Dashplugin_init.dir/flags.make | 12 + .../Bolt_Dashplugin_init.dir/progress.make | 3 + .../AutogenInfo.json | 135 + .../DependInfo.cmake | 23 + .../build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 86 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../CMakeDirectoryInformation.cmake | 16 + .../Bolt_Dash/CMakeFiles/progress.marks | 1 + build/imports/Bolt_Dash/Constants.qml | 29 + .../imports/Bolt_Dash/DirectoryFontLoader.qml | 34 + build/imports/Bolt_Dash/EventListModel.qml | 15 + .../imports/Bolt_Dash/EventListSimulator.qml | 25 + build/imports/Bolt_Dash/Makefile | 820 +++ build/imports/Bolt_Dash/cmake_install.cmake | 39 + .../qt6bolt_dash_debug_metatypes.json | 0 build/imports/Bolt_Dash/qmldir | 11 + .../qmltypes/Bolt_Dash_foreign_types.txt | 1 + .../CMakeDirectoryInformation.cmake | 16 + build/imports/CMakeFiles/progress.marks | 1 + build/imports/IO/.rcc/qmake_IO.qrc | 6 + build/imports/IO/.rcc/qmllint/IOPlugin.rsp | 7 + .../imports/IO/.rcc/qmllint/IOPlugin_json.rsp | 9 + .../IO/.rcc/qmllint/IOPlugin_module.rsp | 8 + .../CMakeDirectoryInformation.cmake | 16 + .../IO/CMakeFiles/IO.dir/DependInfo.cmake | 23 + build/imports/IO/CMakeFiles/IO.dir/build.make | 111 + .../IO/CMakeFiles/IO.dir/cmake_clean.cmake | 14 + .../IO.dir/cmake_clean_target.cmake | 3 + .../IO/CMakeFiles/IO.dir/compiler_depend.make | 2 + .../IO/CMakeFiles/IO.dir/compiler_depend.ts | 2 + .../imports/IO/CMakeFiles/IO.dir/depend.make | 2 + build/imports/IO/CMakeFiles/IO.dir/flags.make | 12 + build/imports/IO/CMakeFiles/IO.dir/link.txt | 2 + .../IO/CMakeFiles/IO.dir/progress.make | 3 + .../CMakeFiles/IOPlugin.dir/DependInfo.cmake | 32 + .../IO/CMakeFiles/IOPlugin.dir/build.make | 203 + .../CMakeFiles/IOPlugin.dir/cmake_clean.cmake | 27 + .../IOPlugin.dir/compiler_depend.make | 2 + .../IOPlugin.dir/compiler_depend.ts | 2 + .../IO/CMakeFiles/IOPlugin.dir/depend.make | 2 + .../IO/CMakeFiles/IOPlugin.dir/flags.make | 12 + .../IO/CMakeFiles/IOPlugin.dir/link.txt | 1 + .../IO/CMakeFiles/IOPlugin.dir/progress.make | 11 + .../IOPlugin_autogen.dir/AutogenInfo.json | 126 + .../IOPlugin_autogen.dir/DependInfo.cmake | 23 + .../IOPlugin_autogen.dir/build.make | 93 + .../IOPlugin_autogen.dir/cmake_clean.cmake | 10 + .../IOPlugin_autogen.dir/compiler_depend.make | 2 + .../IOPlugin_autogen.dir/compiler_depend.ts | 2 + .../IOPlugin_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../IOPlugin_qmllint.dir/DependInfo.cmake | 22 + .../IOPlugin_qmllint.dir/build.make | 88 + .../IOPlugin_qmllint.dir/cmake_clean.cmake | 8 + .../IOPlugin_qmllint.dir/compiler_depend.make | 2 + .../IOPlugin_qmllint.dir/compiler_depend.ts | 2 + .../IOPlugin_qmllint.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../IOPlugin_qmllint_json.dir/build.make | 87 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../IOPlugin_qmllint_json.dir/progress.make | 1 + .../DependInfo.cmake | 22 + .../IOPlugin_qmllint_module.dir/build.make | 88 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../IOPlugin_qmllint_module.dir/progress.make | 1 + .../DependInfo.cmake | 29 + .../build.make | 129 + .../cmake_clean.cmake | 16 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 6 + .../IOPluginplugin.dir/DependInfo.cmake | 24 + .../CMakeFiles/IOPluginplugin.dir/build.make | 131 + .../IOPluginplugin.dir/cmake_clean.cmake | 16 + .../IOPluginplugin.dir/compiler_depend.make | 2 + .../IOPluginplugin.dir/compiler_depend.ts | 2 + .../CMakeFiles/IOPluginplugin.dir/depend.make | 2 + .../CMakeFiles/IOPluginplugin.dir/flags.make | 12 + .../IO/CMakeFiles/IOPluginplugin.dir/link.txt | 1 + .../IOPluginplugin.dir/progress.make | 4 + .../AutogenInfo.json | 115 + .../DependInfo.cmake | 23 + .../IOPluginplugin_autogen.dir/build.make | 93 + .../cmake_clean.cmake | 10 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../IOPluginplugin_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../build.make | 86 + .../cmake_clean.cmake | 8 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + .../IO_autogen.dir/AutogenInfo.json | 84 + .../IO_autogen.dir/DependInfo.cmake | 23 + .../IO/CMakeFiles/IO_autogen.dir/build.make | 93 + .../IO_autogen.dir/cmake_clean.cmake | 10 + .../IO_autogen.dir/compiler_depend.make | 2 + .../IO_autogen.dir/compiler_depend.ts | 2 + .../CMakeFiles/IO_autogen.dir/progress.make | 2 + .../DependInfo.cmake | 22 + .../IO_autogen_timestamp_deps.dir/build.make | 83 + .../cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../progress.make | 1 + build/imports/IO/CMakeFiles/progress.marks | 1 + .../qt_internal_plugins.dir/DependInfo.cmake | 22 + .../qt_internal_plugins.dir/build.make | 83 + .../qt_internal_plugins.dir/cmake_clean.cmake | 5 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../qt_internal_plugins.dir/progress.make | 1 + .../IO/IOPlugin_qml_module_dir_map.qrc | 6 + build/imports/IO/IOPluginplugin_IOPlugin.cpp | 26 + .../imports/IO/IOPluginplugin_IOPlugin_in.cpp | 28 + build/imports/IO/Makefile | 588 ++ build/imports/IO/cmake_install.cmake | 39 + .../qt6ioplugin_debug_metatypes.json | 0 build/imports/IO/qmldir | 7 + .../IO/qmltypes/IOPlugin_foreign_types.txt | 1 + build/imports/Makefile | 189 + build/imports/cmake_install.cmake | 49 + .../qt6bolt_dashapp_debug_metatypes.json | 0 build/qmltypes/Bolt_DashApp_foreign_types.txt | 1 + 606 files changed, 47278 insertions(+), 45 deletions(-) create mode 100644 Bolt_Dash/gpsprocessing.h create mode 100644 Bolt_Dash/nmea_decoder.h create mode 100644 build/.cmake/api/v1/query/client-vscode/query.json create mode 100644 build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json create mode 100644 build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json create mode 100644 build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json create mode 100644 build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json create mode 100644 build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json create mode 100644 build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json create mode 100644 build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json create mode 100644 build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json create mode 100644 build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json create mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json create mode 100644 build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json create mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json create mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json create mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json create mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json create mode 100644 build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json create mode 100644 build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json create mode 100644 build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json create mode 100644 build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json create mode 100644 build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json create mode 100644 build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json create mode 100644 build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json create mode 100644 build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json create mode 100644 build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json create mode 100644 build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json create mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json create mode 100644 build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json create mode 100644 build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json create mode 100644 build/.qt/QtDeploySupport.cmake create mode 100644 build/.qt/QtDeployTargets.cmake create mode 100644 build/.qt/deploy_qml_imports/Bolt_DashApp.cmake create mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake create mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp create mode 100644 build/.rcc/Bolt_DashApp_raw_qml_0.qrc create mode 100644 build/.rcc/configuration.qrc create mode 100644 build/.rcc/qmake_Main.qrc create mode 100644 build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp_json.rsp create mode 100644 build/.rcc/qmllint/Bolt_DashApp_module.rsp create mode 100644 build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake create mode 100755 build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin create mode 100644 build/CMakeFiles/3.30.0/CMakeSystem.cmake create mode 100644 build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/flags.make create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/link.txt create mode 100644 build/CMakeFiles/Bolt_DashApp.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make create mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/CMakeFiles/CMakeRuleHashes.txt create mode 100644 build/CMakeFiles/Makefile.cmake create mode 100644 build/CMakeFiles/Makefile2 create mode 100644 build/CMakeFiles/TargetDirectories.txt create mode 100644 build/CMakeFiles/all_qmllint.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/all_qmllint.dir/build.make create mode 100644 build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/all_qmllint.dir/compiler_depend.make create mode 100644 build/CMakeFiles/all_qmllint.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/all_qmllint.dir/progress.make create mode 100644 build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/all_qmllint_json.dir/build.make create mode 100644 build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make create mode 100644 build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/all_qmllint_json.dir/progress.make create mode 100644 build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/all_qmllint_module.dir/build.make create mode 100644 build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make create mode 100644 build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/all_qmllint_module.dir/progress.make create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/build.make create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/progress.make create mode 100644 build/CMakeFiles/cmake.check_cache create mode 100644 build/CMakeFiles/progress.marks create mode 100644 build/Main/Bolt_DashApp_qml_module_dir_map.qrc create mode 100644 build/Main/main.qml create mode 100644 build/Main/qmldir create mode 100644 build/Makefile create mode 100644 build/cmake_install.cmake create mode 100644 build/compile_commands.json create mode 100644 build/content/.rcc/content_raw_qml_0.qrc create mode 100644 build/content/.rcc/qmake_content.qrc create mode 100644 build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp create mode 100644 build/content/.rcc/qmllint/content.rsp create mode 100644 build/content/.rcc/qmllint/content_json.rsp create mode 100644 build/content/.rcc/qmllint/content_module.rsp create mode 100644 build/content/.rcc/qrc_content_raw_qml_0_init.cpp create mode 100644 build/content/.rcc/qrc_qmake_content_init.cpp create mode 100644 build/content/App.qml create mode 100644 build/content/BMSFaultDetails.qml create mode 100644 build/content/BatteryReadout.qml create mode 100644 build/content/BatterySlider.qml create mode 100644 build/content/BikeStatus.qml create mode 100644 build/content/BoltLeanAngle.qml create mode 100644 build/content/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/content/CMakeFiles/content.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content.dir/build.make create mode 100644 build/content/CMakeFiles/content.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content.dir/cmake_clean_target.cmake create mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content.dir/depend.make create mode 100644 build/content/CMakeFiles/content.dir/flags.make create mode 100644 build/content/CMakeFiles/content.dir/link.txt create mode 100644 build/content/CMakeFiles/content.dir/progress.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/progress.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/build.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_resources_1.dir/build.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_resources_1.dir/depend.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/flags.make create mode 100644 build/content/CMakeFiles/content_resources_1.dir/progress.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_resources_2.dir/build.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_resources_2.dir/depend.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/flags.make create mode 100644 build/content/CMakeFiles/content_resources_2.dir/progress.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/content_tooling.dir/build.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/content_tooling.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake create mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin.dir/depend.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/flags.make create mode 100644 build/content/CMakeFiles/contentplugin.dir/link.txt create mode 100644 build/content/CMakeFiles/contentplugin.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/flags.make create mode 100644 build/content/CMakeFiles/contentplugin_init.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make create mode 100644 build/content/CMakeFiles/progress.marks create mode 100644 build/content/Debug1.qml create mode 100644 build/content/DebugBMS.qml create mode 100644 build/content/DebugItem1.ui.qml create mode 100644 build/content/DebugMain.qml create mode 100644 build/content/DebugMotor.qml create mode 100644 build/content/DebugOverview.qml create mode 100644 build/content/DebugPDU.qml create mode 100644 build/content/FaultMotorStatus.qml create mode 100644 build/content/FullBatterySlider.qml create mode 100644 build/content/FullSlider.qml create mode 100644 build/content/Makefile create mode 100644 build/content/Pictures/Virginia_Tech_Hokies_logo.svg create mode 100644 build/content/Pictures/battery-twotone-0-svgrepo-com.svg create mode 100644 build/content/Pictures/battery.svg create mode 100644 build/content/Pictures/battery_temp.svg create mode 100644 build/content/Pictures/controller_temp.svg create mode 100644 build/content/Pictures/leanAngleBack.png create mode 100644 build/content/Pictures/motor_temp.svg create mode 100644 build/content/Pictures/motorcycleIcon.png create mode 100644 build/content/Screen01.ui.qml create mode 100644 build/content/Speedometer.qml create mode 100644 build/content/SpeedometerDecorations.qml create mode 100644 build/content/TempSlider.qml create mode 100644 build/content/TemperatureIsland.qml create mode 100644 build/content/cmake_install.cmake create mode 100644 build/content/content_qml_module_dir_map.qrc create mode 100644 build/content/contentplugin_contentPlugin.cpp create mode 100644 build/content/contentplugin_contentPlugin_in.cpp create mode 100644 build/content/contentplugin_init.cpp create mode 100755 build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf create mode 100644 build/content/fonts/fonts.txt create mode 100644 build/content/fonts/nasalization-rg.otf create mode 100644 build/content/meta_types/qt6content_debug_metatypes.json create mode 100644 build/content/qmldir create mode 100644 build/content/qmltypes/content_foreign_types.txt create mode 100644 build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc create mode 100644 build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc create mode 100644 build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp create mode 100644 build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp create mode 100644 build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp create mode 100644 build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc create mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp create mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp create mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/Bolt_Dash/CMakeFiles/progress.marks create mode 100644 build/imports/Bolt_Dash/Constants.qml create mode 100644 build/imports/Bolt_Dash/DirectoryFontLoader.qml create mode 100644 build/imports/Bolt_Dash/EventListModel.qml create mode 100644 build/imports/Bolt_Dash/EventListSimulator.qml create mode 100644 build/imports/Bolt_Dash/Makefile create mode 100644 build/imports/Bolt_Dash/cmake_install.cmake create mode 100644 build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json create mode 100644 build/imports/Bolt_Dash/qmldir create mode 100644 build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt create mode 100644 build/imports/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/CMakeFiles/progress.marks create mode 100644 build/imports/IO/.rcc/qmake_IO.qrc create mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin.rsp create mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp create mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp create mode 100644 build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IO.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake create mode 100644 build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IO.dir/depend.make create mode 100644 build/imports/IO/CMakeFiles/IO.dir/flags.make create mode 100644 build/imports/IO/CMakeFiles/IO.dir/link.txt create mode 100644 build/imports/IO/CMakeFiles/IO.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt create mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make create mode 100644 build/imports/IO/CMakeFiles/progress.marks create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts create mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make create mode 100644 build/imports/IO/IOPlugin_qml_module_dir_map.qrc create mode 100644 build/imports/IO/IOPluginplugin_IOPlugin.cpp create mode 100644 build/imports/IO/IOPluginplugin_IOPlugin_in.cpp create mode 100644 build/imports/IO/Makefile create mode 100644 build/imports/IO/cmake_install.cmake create mode 100644 build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json create mode 100644 build/imports/IO/qmldir create mode 100644 build/imports/IO/qmltypes/IOPlugin_foreign_types.txt create mode 100644 build/imports/Makefile create mode 100644 build/imports/cmake_install.cmake create mode 100644 build/meta_types/qt6bolt_dashapp_debug_metatypes.json create mode 100644 build/qmltypes/Bolt_DashApp_foreign_types.txt diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 4f14247..24a19fd 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -19,13 +19,13 @@ qt_add_executable(Bolt_DashApp src/main.cpp can.h web.h web.cpp - gpsprocessing.cpp + gpsprocessing.cpp gpsprocessing.h src/includes/source/NMEAParser.cpp src/includes/source/GPSService.cpp src/includes/source/GPSFix.cpp src/includes/source/NMEACommand.cpp src/includes/source/NumberConversion.cpp - nmea_decoder.cpp + nmea_decoder.cpp nmea_decoder.h ) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 3b2f5bf..897e187 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -1,15 +1,15 @@ #include "backend.h" #include "can.h" #include "constants.h" +#include "gpsprocessing.h" #include "web.h" -#include "gpsprocessing.cpp" #include +#include +#include #include #include #include -#include #include -#include // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, @@ -22,7 +22,8 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - parserStuff(); + std::thread run_gps(&parserStuff); + run_gps.detach(); } // Calls the set functions with the values from data @@ -365,7 +366,4 @@ void Backend::setBmsErrorCodesString(const std::vector warnings) { } // } - - - std::thread can_thread(can::run); diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 1efb94c..7bd9847 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,13 +1,7 @@ -#include -#include -#include -#include -#include +#include "gpsprocessing.h" -#include "nmea_decoder.cpp" - -const char* SERIAL_PORT = "/dev/ttyS0"; // Serial port for GPS -const int BAUD_RATE = B9600; // Baud rate for GPS communication +const char *SERIAL_PORT = "/dev/ACM0"; // Serial port for GPS +const int BAUD_RATE = B9600; // Baud rate for GPS communication int initializeGPS() { int fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY); @@ -46,13 +40,13 @@ int parserStuff() { char gps_buffer[256]; int n = read(gps_fd, gps_buffer, sizeof(gps_buffer)); if (n > 0) { - gps_buffer[n] = 0; // Null-terminate the string - std::cout << "GPS Data: " << gps_buffer; + gps_buffer[n] = 0; // Null-terminate the string + // std::cout << "GPS Data: " << gps_buffer; GPSData currentData = decodeNMEA(gps_buffer); printGPSData(currentData); } - usleep(100000); // Sleep for 100ms + usleep(100000); // Sleep for 100ms } close(gps_fd); diff --git a/Bolt_Dash/gpsprocessing.h b/Bolt_Dash/gpsprocessing.h new file mode 100644 index 0000000..02bbdfd --- /dev/null +++ b/Bolt_Dash/gpsprocessing.h @@ -0,0 +1,16 @@ +#ifndef GPSPROCESSING_H +#define GPSPROCESSING_H + +#include +#include +#include +#include +#include + +#include "nmea_decoder.h" + +int initializeGPS(); + +int parserStuff(); + +#endif \ No newline at end of file diff --git a/Bolt_Dash/nmea_decoder.cpp b/Bolt_Dash/nmea_decoder.cpp index 2422a74..0b450f8 100644 --- a/Bolt_Dash/nmea_decoder.cpp +++ b/Bolt_Dash/nmea_decoder.cpp @@ -1,22 +1,6 @@ -#include -#include -#include -#include -#include +#include "nmea_decoder.h" -#pragma once - -struct GPSData { - double latitude = 0.0; - double longitude = 0.0; - std::string time = ""; - std::string date = ""; - double altitude = 0.0; - int satellites = 0; - std::string fix = "Invalid"; -}; - -std::vector split(const std::string& s, char delimiter) { +std::vector split(const std::string &s, char delimiter) { std::vector tokens; std::string token; std::istringstream tokenStream(s); @@ -26,7 +10,7 @@ std::vector split(const std::string& s, char delimiter) { return tokens; } -double convertToDecimalDegrees(const std::string& value, const std::string& direction) { +double convertToDecimalDegrees(const std::string &value, const std::string &direction) { double degree = std::stod(value.substr(0, value.find('.') - 2)); double minutes = std::stod(value.substr(value.find('.') - 2)); double decimalDegrees = degree + (minutes / 60.0); @@ -38,7 +22,7 @@ double convertToDecimalDegrees(const std::string& value, const std::string& dire return decimalDegrees; } -GPSData decodeNMEA(const std::string& nmea) { +GPSData decodeNMEA(const std::string &nmea) { GPSData data; std::vector parts = split(nmea, ','); @@ -53,10 +37,10 @@ GPSData decodeNMEA(const std::string& nmea) { } data.fix = (parts[6] == "1" || parts[6] == "2") ? "Valid" : "Invalid"; data.satellites = std::stoi(parts[7]); - data.altitude = std::stod(parts[9]); + // data.altitude = std::stod(parts[9]); + data.altitude = 0; } - } - else if (parts[0] == "$GPRMC") { + } else if (parts[0] == "$GPRMC") { if (parts.size() >= 12) { data.time = parts[1].substr(0, 2) + ":" + parts[1].substr(2, 2) + ":" + parts[1].substr(4, 2); if (!parts[3].empty() && !parts[4].empty()) { @@ -73,7 +57,7 @@ GPSData decodeNMEA(const std::string& nmea) { return data; } -void printGPSData(const GPSData& data) { +void printGPSData(const GPSData &data) { std::cout << "Time: " << data.time << std::endl; std::cout << "Date: " << data.date << std::endl; std::cout << "Latitude: " << data.latitude << std::endl; diff --git a/Bolt_Dash/nmea_decoder.h b/Bolt_Dash/nmea_decoder.h new file mode 100644 index 0000000..2eb1c33 --- /dev/null +++ b/Bolt_Dash/nmea_decoder.h @@ -0,0 +1,25 @@ +#include +#include +#include +#include +#include + +struct GPSData { + double latitude = 0.0; + double longitude = 0.0; + std::string time = ""; + std::string date = ""; + double altitude = 0.0; + int satellites = 0; + std::string fix = "Invalid"; +}; + +std::vector split(const std::string &s, char delimiter); + +double convertToDecimalDegrees(const std::string &value, const std::string &direction); + +GPSData decodeNMEA(const std::string &nmea); + +void printGPSData(const GPSData &data); + +int nmmeaMain(); \ No newline at end of file diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 0000000..82bb964 --- /dev/null +++ b/build/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json b/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json new file mode 100644 index 0000000..453b46b --- /dev/null +++ b/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json @@ -0,0 +1,5967 @@ +{ + "entries" : + [ + { + "name" : "BUILD_QDS_COMPONENTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build design studio components" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "Bolt_DashApp_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/build" + }, + { + "name" : "Bolt_DashApp_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Bolt_DashApp_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_ADDR2LINE-NOTFOUND" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/Users/mason/Documents/Code/dash-cpp/build" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "30" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_COLOR_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable color output during build." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/c++" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "MACHO" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "BOOL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Unix Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_NAME_TOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Users/mason/anaconda3/bin/install_name_tool" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/usr/local" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/make" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "5" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_OBJCOPY-NOTFOUND" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/objdump" + }, + { + "name" : "CMAKE_OSX_ARCHITECTURES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Build architectures for OSX" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_OSX_DEPLOYMENT_TARGET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_OSX_SYSROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The product will be built against the headers and libraries located inside the indicated SDK." + } + ], + "type" : "PATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Bolt_DashApp" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_READELF-NOTFOUND" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/strip" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/usr/bin/tapi" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenGL" + } + ], + "type" : "INTERNAL", + "value" : "[/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][c ][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapOpenGL" + } + ], + "type" : "INTERNAL", + "value" : "[ON][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "LINK_INSIGHT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Link Qt Insight Tracker library" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "MACDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/opt/homebrew/bin/macdeployqt" + }, + { + "name" : "OPENGL_GLU_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Include for the OpenGL GLU library" + } + ], + "type" : "PATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "OPENGL_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Include for OpenGL" + } + ], + "type" : "PATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "OPENGL_gl_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "OpenGL GL library" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "OPENGL_glu_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "OpenGL GLU library" + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_brotli", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: brotli (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dnslookup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dnslookup (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dtls", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dtls (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getifaddrs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getifaddrs (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gssapi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gssapi (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_http", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: http (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ipv6ifname", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ipv6ifname (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libproxy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libproxy (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libresolv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libresolv (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linux_netlink", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linux_netlink (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localserver", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localserver (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networkdiskcache", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkdiskcache (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networkinterface", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkinterface (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_networklistmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networklistmanager (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_networkproxy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: networkproxy (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ocsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ocsp (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_publicsuffix_qt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: publicsuffix_qt (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_publicsuffix_system", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: publicsuffix_system (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qml_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_animation (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_debug (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_delegate_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_delegate_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_itemmodel (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_jit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_jit (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qml_list_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_list_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_locale (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_network (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_object_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_object_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_preview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_preview (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_profiler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_profiler (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_python", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_python (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_ssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_ssl (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_table_model", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_table_model (from target Qt6::QmlModels)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_worker_script", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_worker_script (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_xml_http_request", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_xml_http_request (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qml_xmllistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qml_xmllistmodel (from target Qt6::Qml)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qt_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qt_framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_animatedimage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_animatedimage (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_canvas", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_canvas (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_designer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_designer (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_draganddrop (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_flipable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_flipable (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_gridview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_gridview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_itemview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_itemview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_listview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_particles", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_particles (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_path", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_path (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_pathview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_pathview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_pixmap_cache_threaded_download", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_pixmap_cache_threaded_download (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_positioners", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_positioners (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_repeater", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_repeater (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_shadereffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_shadereffect (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_sprite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_sprite (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_tableview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_treeview (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_quick_viewtransitions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: quick_viewtransitions (from target Qt6::Quick)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_res_setservers", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: res_setservers (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_schannel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: schannel (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sctp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sctp (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_securetransport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: securetransport (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_socks5", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: socks5 (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssl (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sspi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sspi (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stack_protector_strong", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector_strong (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_proxies", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_proxies (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_topleveldomain", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: topleveldomain (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_udpsocket", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: udpsocket (from target Qt6::Network)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6DBusTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6DBusTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6DBusTools" + }, + { + "name" : "Qt6DBus_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6DBus." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6DBus" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6Network_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Network." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Network" + }, + { + "name" : "Qt6OpenGL_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6OpenGL." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6OpenGL" + }, + { + "name" : "Qt6QmlBuiltins_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlBuiltins." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins" + }, + { + "name" : "Qt6QmlCompilerPlusPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivate." + } + ], + "type" : "PATH", + "value" : "Qt6QmlCompilerPlusPrivate_DIR-NOTFOUND" + }, + { + "name" : "Qt6QmlIntegration_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlIntegration." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration" + }, + { + "name" : "Qt6QmlModels_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlModels." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlModels" + }, + { + "name" : "Qt6QmlTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QmlTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QmlTools" + }, + { + "name" : "Qt6Qml_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Qml." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Qml" + }, + { + "name" : "Qt6QuickTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6QuickTools." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6QuickTools" + }, + { + "name" : "Qt6Quick_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Quick." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6Quick" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "/opt/homebrew/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WrapOpenGL_AGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/AGL.framework" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "/usr/local" + }, + { + "name" : "__qt_qml_macros_module_base_dir", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "/opt/homebrew/lib/cmake/Qt6Qml" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json new file mode 100644 index 0000000..84865a0 --- /dev/null +++ b/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json @@ -0,0 +1,5038 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeUnixFindMake.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "path" : "qmlmodules" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "path" : "insight" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + }, + { + "path" : "content/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" + }, + { + "path" : "imports/CMakeLists.txt" + }, + { + "path" : "imports/Bolt_Dash/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + }, + { + "path" : "imports/IO/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + }, + { + "isExternal" : true, + "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + }, + { + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/Users/mason/Documents/Code/dash-cpp/build", + "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + "version" : + { + "major" : 1, + "minor" : 1 + } +} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json b/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json new file mode 100644 index 0000000..8ef1498 --- /dev/null +++ b/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json @@ -0,0 +1,650 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-c763ad29e698621ff67d.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 38, + 39, + 40, + 41 + ] + }, + { + "build" : "content", + "jsonFile" : "directory-content-Debug-61a361743d88a3b42c45.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "content", + "targetIndexes" : + [ + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "build" : "imports", + "childIndexes" : + [ + 3, + 4 + ], + "jsonFile" : "directory-imports-Debug-615074570c3908afab44.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "imports" + }, + { + "build" : "imports/Bolt_Dash", + "jsonFile" : "directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 2, + "projectIndex" : 0, + "source" : "imports/Bolt_Dash", + "targetIndexes" : + [ + 0, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "build" : "imports/IO", + "jsonFile" : "directory-imports.IO-Debug-292cee666d28555cd386.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 2, + "projectIndex" : 0, + "source" : "imports/IO", + "targetIndexes" : + [ + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 58 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3, + 4 + ], + "name" : "Bolt_DashApp", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "Bolt_Dash::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json", + "name" : "Bolt_Dash", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json", + "name" : "Bolt_DashApp", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json", + "name" : "Bolt_DashApp_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json", + "name" : "Bolt_DashApp_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json", + "name" : "Bolt_DashApp_qmlimportscan", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json", + "name" : "Bolt_DashApp_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json", + "name" : "Bolt_DashApp_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json", + "name" : "Bolt_DashApp_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json", + "name" : "Bolt_DashApp_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json", + "name" : "Bolt_DashApp_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json", + "name" : "Bolt_Dash_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json", + "name" : "Bolt_Dash_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json", + "name" : "Bolt_Dash_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json", + "name" : "Bolt_Dash_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json", + "name" : "Bolt_Dash_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json", + "name" : "Bolt_Dash_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json", + "name" : "Bolt_Dash_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json", + "name" : "Bolt_Dash_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json", + "name" : "Bolt_Dash_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json", + "name" : "Bolt_Dashplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json", + "name" : "Bolt_Dashplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json", + "name" : "Bolt_Dashplugin_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json", + "name" : "Bolt_Dashplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json", + "name" : "Bolt_Dashplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929", + "jsonFile" : "target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json", + "name" : "Bolt_Dashplugin_init_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IO::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IO-Debug-e29c6efea1915d85c9e6.json", + "name" : "IO", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin-Debug-e858e202624a3206316e.json", + "name" : "IOPlugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json", + "name" : "IOPlugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json", + "name" : "IOPlugin_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json", + "name" : "IOPlugin_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json", + "name" : "IOPlugin_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json", + "name" : "IOPlugin_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json", + "name" : "IOPlugin_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPluginplugin::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json", + "name" : "IOPluginplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json", + "name" : "IOPluginplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json", + "name" : "IOPluginplugin_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IO_autogen::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IO_autogen-Debug-708994b234752366cd0d.json", + "name" : "IO_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "jsonFile" : "target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json", + "name" : "IO_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "all_qmllint::@6890427a1f51a3e7e1df", + "jsonFile" : "target-all_qmllint-Debug-c143a655f3229854e7a1.json", + "name" : "all_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "all_qmllint_json::@6890427a1f51a3e7e1df", + "jsonFile" : "target-all_qmllint_json-Debug-02e8fac95724d14079aa.json", + "name" : "all_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "all_qmllint_module::@6890427a1f51a3e7e1df", + "jsonFile" : "target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json", + "name" : "all_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", + "jsonFile" : "target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json", + "name" : "all_qmltyperegistrations", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content-Debug-84c13ddb4d05224351df.json", + "name" : "content", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json", + "name" : "content_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json", + "name" : "content_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_qmllint::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint-Debug-8142ca0703017c202a06.json", + "name" : "content_qmllint", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json", + "name" : "content_qmllint_json", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json", + "name" : "content_qmllint_module", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json", + "name" : "content_qmltyperegistration", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_resources_1::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_resources_1-Debug-3dfee9aca78a1157a591.json", + "name" : "content_resources_1", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_resources_2::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_resources_2-Debug-4e21ea579599e366b50a.json", + "name" : "content_resources_2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "content_tooling::@73a38b9e525c9c2ae262", + "jsonFile" : "target-content_tooling-Debug-31cbc5df92c7478ca653.json", + "name" : "content_tooling", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin-Debug-2c9a48946c97ef59f438.json", + "name" : "contentplugin", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json", + "name" : "contentplugin_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json", + "name" : "contentplugin_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin_init::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_init-Debug-202e8c1956da63ca4598.json", + "name" : "contentplugin_init", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json", + "name" : "contentplugin_init_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "jsonFile" : "target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json", + "name" : "contentplugin_init_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "qt_internal_plugins::@6adf3e82e1b4a763410e", + "jsonFile" : "target-qt_internal_plugins-Debug-73d78de408bb540280e3.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "/Users/mason/Documents/Code/dash-cpp/build", + "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json b/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json new file mode 100644 index 0000000..48285fd --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 59, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "Bolt_DashApp" + ], + "targetId" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "targetIndex" : 1, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json new file mode 100644 index 0000000..4437fd9 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "content", + "source" : "content" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json new file mode 100644 index 0000000..6572549 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports", + "source" : "imports" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json new file mode 100644 index 0000000..9c2180d --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + } +} diff --git a/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json b/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json new file mode 100644 index 0000000..c1a5c66 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + } +} diff --git a/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json b/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json new file mode 100644 index 0000000..15c8c45 --- /dev/null +++ b/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json @@ -0,0 +1,132 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Unix Makefiles" + }, + "paths" : + { + "cmake" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "cpack" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cpack", + "ctest" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ctest", + "root" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 30, + "patch" : 0, + "string" : "3.30.0", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-9e1aa1876566bda061f7.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-4f2284380e850db36450.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-81ec662148f00936beea.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 1 + } + }, + { + "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-vscode" : + { + "query.json" : + { + "requests" : + [ + { + "kind" : "cache", + "version" : 2 + }, + { + "kind" : "codemodel", + "version" : 2 + }, + { + "kind" : "toolchains", + "version" : 1 + }, + { + "kind" : "cmakeFiles", + "version" : 1 + } + ], + "responses" : + [ + { + "jsonFile" : "cache-v2-4f2284380e850db36450.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "codemodel-v2-9e1aa1876566bda061f7.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-81ec662148f00936beea.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 1 + } + } + ] + } + } + } +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json new file mode 100644 index 0000000..0101f00 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json @@ -0,0 +1,703 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/libBolt_Dash.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "_qt_internal_target_enable_qmlcachegen", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2682, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 647, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2730, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 541, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 3057, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 3082, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2882, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1415, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 3048, + "parent" : 9 + }, + { + "command" : 14, + "file" : 2, + "line" : 590, + "parent" : 5 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 15 + }, + { + "command" : 12, + "file" : 0, + "line" : 2390, + "parent" : 16 + }, + { + "command" : 10, + "file" : 0, + "line" : 2004, + "parent" : 17 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 15, + "file" : 2, + "line" : 2618, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 1239, + "parent" : 20 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 14, + "file" : 2, + "line" : 2749, + "parent" : 6 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 29 + }, + { + "command" : 12, + "file" : 0, + "line" : 2390, + "parent" : 30 + }, + { + "command" : 10, + "file" : 0, + "line" : 2004, + "parent" : 31 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 17, + "file" : 3, + "line" : 1, + "parent" : 33 + }, + { + "command" : 16, + "file" : 0, + "line" : 768, + "parent" : 34 + }, + { + "command" : 10, + "file" : 0, + "line" : 2117, + "parent" : 35 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 3, + 5, + 6, + 8, + 10, + 12, + 13 + ] + } + ], + "dependencies" : + [ + { + "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" + }, + { + "backtrace" : 7, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dash::@4896ae50d004c4a48929", + "name" : "Bolt_Dash", + "nameOnDisk" : "libBolt_Dash.a", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 17 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 4, + 7, + 9, + 11, + 14, + 15, + 16, + 30, + 31, + 32, + 33 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 2, + 3, + 5, + 6, + 8, + 10, + 12, + 13 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 19, + "path" : "imports/Bolt_Dash/Constants.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 21, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 23, + "path" : "imports/Bolt_Dash/DirectoryFontLoader.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 25, + "path" : "imports/Bolt_Dash/EventListModel.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 27, + "path" : "imports/Bolt_Dash/EventListSimulator.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 32, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 36, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json new file mode 100644 index 0000000..1d4eefd --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json @@ -0,0 +1,1600 @@ +{ + "artifacts" : + [ + { + "path" : "Bolt_DashApp" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "__qt_internal_propagate_object_files", + "__qt_internal_propagate_object_library", + "qt6_add_qml_module", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "include", + "set_target_properties", + "find_package", + "find_dependency", + "_qt_internal_find_third_party_dependencies", + "qt6_add_qml_plugin", + "add_dependencies", + "_qt_internal_scan_qml_imports", + "_qt_internal_generate_deploy_qml_imports_script", + "cmake_language", + "_qt_internal_finalize_executable", + "qt6_finalize_target", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt_add_resources", + "qt6_extract_metatypes", + "_qt_internal_target_enable_qmlcachegen", + "_qt_internal_expose_deferred_files_to_ide" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "qmlmodules", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 869, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 575, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 629, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 59, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 40, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 8, + "file" : 3, + "line" : 5, + "parent" : 7 + }, + { + "command" : 7, + "file" : 2, + "line" : 668, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 9 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 10 + }, + { + "file" : 4 + }, + { + "command" : 8, + "file" : 4, + "line" : 10, + "parent" : 12 + }, + { + "command" : 7, + "file" : 2, + "line" : 668, + "parent" : 13 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 14 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 15 + }, + { + "command" : 11, + "file" : 2, + "line" : 590, + "parent" : 8 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 17 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 18 + }, + { + "command" : 7, + "file" : 0, + "line" : 1995, + "parent" : 19 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 20 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 21 + }, + { + "command" : 12, + "file" : 2, + "line" : 647, + "parent" : 8 + }, + { + "command" : 11, + "file" : 2, + "line" : 2749, + "parent" : 23 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 24 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 25 + }, + { + "command" : 7, + "file" : 0, + "line" : 1995, + "parent" : 26 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 27 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 28 + }, + { + "command" : 11, + "file" : 2, + "line" : 590, + "parent" : 13 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 30 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 31 + }, + { + "command" : 7, + "file" : 0, + "line" : 1995, + "parent" : 32 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 33 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 34 + }, + { + "command" : 12, + "file" : 2, + "line" : 647, + "parent" : 13 + }, + { + "command" : 11, + "file" : 2, + "line" : 2749, + "parent" : 36 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 37 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 38 + }, + { + "command" : 7, + "file" : 0, + "line" : 1995, + "parent" : 39 + }, + { + "command" : 6, + "file" : 0, + "line" : 1922, + "parent" : 40 + }, + { + "command" : 5, + "file" : 0, + "line" : 1870, + "parent" : 41 + }, + { + "command" : 13, + "file" : 1, + "line" : 52, + "parent" : 0 + }, + { + "file" : 5, + "parent" : 43 + }, + { + "command" : 5, + "file" : 5, + "line" : 14, + "parent" : 44 + }, + { + "command" : 15, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "file" : 8, + "parent" : 46 + }, + { + "command" : 15, + "file" : 8, + "line" : 167, + "parent" : 47 + }, + { + "file" : 7, + "parent" : 48 + }, + { + "command" : 13, + "file" : 7, + "line" : 55, + "parent" : 49 + }, + { + "file" : 6, + "parent" : 50 + }, + { + "command" : 14, + "file" : 6, + "line" : 62, + "parent" : 51 + }, + { + "command" : 15, + "file" : 8, + "line" : 167, + "parent" : 47 + }, + { + "file" : 13, + "parent" : 53 + }, + { + "command" : 13, + "file" : 13, + "line" : 43, + "parent" : 54 + }, + { + "file" : 12, + "parent" : 55 + }, + { + "command" : 17, + "file" : 12, + "line" : 33, + "parent" : 56 + }, + { + "command" : 16, + "file" : 11, + "line" : 36, + "parent" : 57 + }, + { + "command" : 15, + "file" : 10, + "line" : 76, + "parent" : 58 + }, + { + "file" : 9, + "parent" : 59 + }, + { + "command" : 5, + "file" : 9, + "line" : 48, + "parent" : 60 + }, + { + "command" : 13, + "file" : 13, + "line" : 55, + "parent" : 54 + }, + { + "file" : 14, + "parent" : 62 + }, + { + "command" : 14, + "file" : 14, + "line" : 62, + "parent" : 63 + }, + { + "command" : 18, + "file" : 2, + "line" : 625, + "parent" : 8 + }, + { + "command" : 5, + "file" : 2, + "line" : 2227, + "parent" : 65 + }, + { + "command" : 18, + "file" : 2, + "line" : 625, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 2227, + "parent" : 67 + }, + { + "command" : 15, + "file" : 8, + "line" : 167, + "parent" : 47 + }, + { + "file" : 16, + "parent" : 69 + }, + { + "command" : 13, + "file" : 16, + "line" : 56, + "parent" : 70 + }, + { + "file" : 15, + "parent" : 71 + }, + { + "command" : 14, + "file" : 15, + "line" : 62, + "parent" : 72 + }, + { + "command" : 5, + "file" : 0, + "line" : 576, + "parent" : 2 + }, + { + "command" : 15, + "file" : 8, + "line" : 167, + "parent" : 47 + }, + { + "file" : 18, + "parent" : 75 + }, + { + "command" : 13, + "file" : 18, + "line" : 57, + "parent" : 76 + }, + { + "file" : 17, + "parent" : 77 + }, + { + "command" : 14, + "file" : 17, + "line" : 62, + "parent" : 78 + }, + { + "command" : 8, + "file" : 5, + "line" : 4, + "parent" : 44 + }, + { + "command" : 12, + "file" : 2, + "line" : 647, + "parent" : 80 + }, + { + "command" : 19, + "file" : 2, + "line" : 2730, + "parent" : 81 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 24, + "file" : 19, + "line" : 1, + "parent" : 83 + }, + { + "command" : 23, + "file" : 0, + "line" : 774, + "parent" : 84 + }, + { + "command" : 22, + "file" : 0, + "line" : 678, + "parent" : 85 + }, + { + "command" : 21, + "file" : 0, + "line" : 678, + "parent" : 86 + }, + { + "command" : 20, + "file" : 2, + "line" : 3468, + "parent" : 87 + }, + { + "command" : 19, + "file" : 2, + "line" : 3284, + "parent" : 88 + }, + { + "command" : 25, + "file" : 1, + "line" : 38, + "parent" : 0 + }, + { + "command" : 26, + "file" : 2, + "line" : 541, + "parent" : 80 + }, + { + "command" : 25, + "file" : 2, + "line" : 3057, + "parent" : 91 + }, + { + "command" : 25, + "file" : 2, + "line" : 3082, + "parent" : 91 + }, + { + "command" : 28, + "file" : 1, + "line" : 32, + "parent" : 0 + }, + { + "command" : 11, + "file" : 0, + "line" : 389, + "parent" : 94 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 95 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 96 + }, + { + "command" : 27, + "file" : 0, + "line" : 2004, + "parent" : 97 + }, + { + "command" : 29, + "file" : 2, + "line" : 2882, + "parent" : 91 + }, + { + "command" : 27, + "file" : 0, + "line" : 1415, + "parent" : 99 + }, + { + "command" : 27, + "file" : 2, + "line" : 3048, + "parent" : 91 + }, + { + "command" : 11, + "file" : 2, + "line" : 590, + "parent" : 80 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 102 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 103 + }, + { + "command" : 27, + "file" : 0, + "line" : 2004, + "parent" : 104 + }, + { + "command" : 27, + "file" : 2, + "line" : 2514, + "parent" : 81 + }, + { + "command" : 30, + "file" : 2, + "line" : 2618, + "parent" : 81 + }, + { + "command" : 27, + "file" : 2, + "line" : 1239, + "parent" : 107 + }, + { + "command" : 27, + "file" : 2, + "line" : 2666, + "parent" : 81 + }, + { + "command" : 11, + "file" : 2, + "line" : 2749, + "parent" : 81 + }, + { + "command" : 10, + "file" : 0, + "line" : 337, + "parent" : 110 + }, + { + "command" : 9, + "file" : 0, + "line" : 2390, + "parent" : 111 + }, + { + "command" : 27, + "file" : 0, + "line" : 2004, + "parent" : 112 + }, + { + "command" : 31, + "file" : 0, + "line" : 768, + "parent" : 84 + }, + { + "command" : 27, + "file" : 0, + "line" : 2117, + "parent" : 114 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 74, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QMLMODELS_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QUICK_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQuick.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQmlModels.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtOpenGL.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include" + }, + { + "backtrace" : 90, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers" + }, + { + "backtrace" : 92, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 93, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtGui.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQuick.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQmlModels.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtOpenGL.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 74 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 3, + 4, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 17, + 18, + 20, + 21, + 22 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 82, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 89, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 45, + "id" : "content::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 45, + "id" : "content_resources_1::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 45, + "id" : "contentplugin::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 45, + "id" : "content_resources_2::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 45, + "id" : "contentplugin_init::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 45, + "id" : "Bolt_Dash::@4896ae50d004c4a48929" + }, + { + "backtrace" : 45, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" + }, + { + "backtrace" : 45, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" + }, + { + "backtrace" : 45, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" + }, + { + "backtrace" : 45, + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929" + }, + { + "backtrace" : 45, + "id" : "IOPlugin::@6adf3e82e1b4a763410e" + }, + { + "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" + } + ], + "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "/usr/local" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-g", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "-Xlinker", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "-no_warn_duplicate_libraries", + "role" : "flags" + }, + { + "fragment" : "-F/opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 22, + "fragment" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 42, + "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "/opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "-lpigpio", + "role" : "libraries" + }, + { + "backtrace" : 45, + "fragment" : "content/libcontentplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 45, + "fragment" : "imports/Bolt_Dash/libBolt_Dashplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 45, + "fragment" : "imports/IO/libIOPlugin.dylib", + "role" : "libraries" + }, + { + "backtrace" : 45, + "fragment" : "content/libcontentplugin.a", + "role" : "libraries" + }, + { + "backtrace" : 52, + "fragment" : "/opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels", + "role" : "libraries" + }, + { + "backtrace" : 52, + "fragment" : "/opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "/opt/homebrew/lib/QtGui.framework/Versions/A/QtGui", + "role" : "libraries" + }, + { + "backtrace" : 61, + "fragment" : "-framework OpenGL", + "role" : "libraries" + }, + { + "fragment" : "-framework AGL", + "role" : "libraries" + }, + { + "backtrace" : 64, + "fragment" : "-framework AppKit", + "role" : "libraries" + }, + { + "backtrace" : 64, + "fragment" : "-framework ImageIO", + "role" : "libraries" + }, + { + "backtrace" : 64, + "fragment" : "-framework Metal", + "role" : "libraries" + }, + { + "backtrace" : 66, + "fragment" : "content/libcontent.a", + "role" : "libraries" + }, + { + "backtrace" : 68, + "fragment" : "imports/Bolt_Dash/libBolt_Dash.a", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 73, + "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", + "role" : "libraries" + }, + { + "backtrace" : 73, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 74, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 79, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 79, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Bolt_DashApp", + "nameOnDisk" : "Bolt_DashApp", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 28, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1, + 3, + 4, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 17, + 18, + 20, + 21, + 22 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2, + 5, + 6 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 16, + 19, + 23, + 24, + 25, + 26, + 27 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "backend.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "backend.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "can.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "can.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "web.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "web.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "gpsprocessing.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/includes/source/NMEAParser.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/includes/source/GPSService.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/includes/source/GPSFix.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/includes/source/NMEACommand.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "src/includes/source/NumberConversion.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "nmea_decoder.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 98, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 100, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 101, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 105, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 106, + "path" : "main.qml", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 108, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 109, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 113, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 115, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 115, + "path" : "qtquickcontrols2.conf", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 115, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 115, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/qmldir", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 115, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 74, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 45, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 45, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 45, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json", + "sourceGroupIndex" : 0 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json new file mode 100644 index 0000000..0892ca5 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "Bolt_DashApp_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json new file mode 100644 index 0000000..5de4a32 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json @@ -0,0 +1,50 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "IOPlugin::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "Bolt_DashApp_autogen_timestamp_deps", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json new file mode 100644 index 0000000..ca06261 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json @@ -0,0 +1,120 @@ +{ + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_scan_qml_imports", + "_qt_internal_generate_deploy_qml_imports_script", + "cmake_language", + "_qt_internal_finalize_executable", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "file" : 3, + "line" : -1, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 1, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 774, + "parent" : 2 + }, + { + "command" : 3, + "file" : 1, + "line" : 678, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 678, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 3468, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 3282, + "parent" : 6 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmlimportscan", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 7, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json new file mode 100644 index 0000000..37c7ba3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 962, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json new file mode 100644 index 0000000..96c817a --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 989, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint_json", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json new file mode 100644 index 0000000..cdd575f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json @@ -0,0 +1,110 @@ +{ + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1027, + "parent" : 5 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmllint_module", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json new file mode 100644 index 0000000..632fc3d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json @@ -0,0 +1,138 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "include" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 3018, + "parent" : 4 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_qmltyperegistration", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json new file mode 100644 index 0000000..a465d89 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json @@ -0,0 +1,104 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2729, + "parent" : 4 + }, + { + "command" : 4, + "file" : 0, + "line" : 2732, + "parent" : 4 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", + "name" : "Bolt_DashApp_tooling", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/main.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/main.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json new file mode 100644 index 0000000..b756b50 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dash_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json new file mode 100644 index 0000000..452eb3b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json @@ -0,0 +1,38 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dash_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json new file mode 100644 index 0000000..a1f284e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 962, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json new file mode 100644 index 0000000..e65e1a7 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 989, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint_json", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json new file mode 100644 index 0000000..a102fae --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1027, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmllint_module", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json new file mode 100644 index 0000000..64e0b4b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json @@ -0,0 +1,126 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 3018, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_qmltyperegistration", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json new file mode 100644 index 0000000..30f90c0 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json @@ -0,0 +1,263 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library", + "target_include_directories" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 590, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2390, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1951, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1964, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1995, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1893, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + }, + { + "command" : 9, + "file" : 0, + "line" : 1967, + "parent" : 4 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_resources_1", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json new file mode 100644 index 0000000..b142d31 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json @@ -0,0 +1,270 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library", + "target_include_directories" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 647, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2749, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2390, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1951, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1964, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1995, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1893, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1967, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 12, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" + }, + { + "backtrace" : 12, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 13 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_resources_2", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json new file mode 100644 index 0000000..8d6896c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json @@ -0,0 +1,134 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 10, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2729, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2732, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", + "name" : "Bolt_Dash_tooling", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 4, + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json new file mode 100644 index 0000000..5709301 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json @@ -0,0 +1,301 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/libBolt_Dashplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 625, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2022, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2451, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 2227, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 2223, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2518, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2456, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 2216, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929" + }, + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" + }, + { + "backtrace" : 6, + "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", + "name" : "Bolt_Dashplugin", + "nameOnDisk" : "libBolt_Dashplugin.a", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json new file mode 100644 index 0000000..26d6bf1 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json new file mode 100644 index 0000000..69b0cc2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json new file mode 100644 index 0000000..728fb7c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json @@ -0,0 +1,289 @@ +{ + "artifacts" : + [ + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 664, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 668, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1893, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929" + }, + { + "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929" + } + ], + "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", + "name" : "Bolt_Dashplugin_init", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json new file mode 100644 index 0000000..b72ee81 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_init_autogen", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json new file mode 100644 index 0000000..fdc4f7d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/Bolt_Dash/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929", + "isGeneratorProvided" : true, + "name" : "Bolt_Dashplugin_init_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/Bolt_Dash", + "source" : "imports/Bolt_Dash" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json b/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json new file mode 100644 index 0000000..3126841 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json @@ -0,0 +1,137 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "imports/IO/libIO.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2682, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + }, + { + "backtrace" : 0, + "id" : "IO_autogen::@6adf3e82e1b4a763410e" + } + ], + "id" : "IO::@6adf3e82e1b4a763410e", + "name" : "IO", + "nameOnDisk" : "libIO.a", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json b/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json new file mode 100644 index 0000000..9e4aa8d --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json @@ -0,0 +1,621 @@ +{ + "artifacts" : + [ + { + "path" : "imports/IO/libIOPlugin.dylib" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt6_add_qml_module", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 387, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 392, + "parent" : 1 + }, + { + "file" : 6 + }, + { + "command" : 7, + "file" : 6, + "line" : 10, + "parent" : 6 + }, + { + "file" : 5, + "parent" : 7 + }, + { + "command" : 7, + "file" : 5, + "line" : 167, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 6, + "file" : 4, + "line" : 56, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 5, + "file" : 3, + "line" : 62, + "parent" : 12 + }, + { + "command" : 7, + "file" : 5, + "line" : 167, + "parent" : 8 + }, + { + "file" : 8, + "parent" : 14 + }, + { + "command" : 6, + "file" : 8, + "line" : 57, + "parent" : 15 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 5, + "file" : 7, + "line" : 62, + "parent" : 17 + }, + { + "command" : 9, + "file" : 1, + "line" : 541, + "parent" : 1 + }, + { + "command" : 8, + "file" : 1, + "line" : 3057, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 3082, + "parent" : 19 + }, + { + "command" : 11, + "file" : 1, + "line" : 2882, + "parent" : 19 + }, + { + "command" : 10, + "file" : 0, + "line" : 1415, + "parent" : 22 + }, + { + "command" : 10, + "file" : 1, + "line" : 3048, + "parent" : 19 + }, + { + "command" : 14, + "file" : 1, + "line" : 590, + "parent" : 1 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 25 + }, + { + "command" : 12, + "file" : 0, + "line" : 2390, + "parent" : 26 + }, + { + "command" : 10, + "file" : 0, + "line" : 2004, + "parent" : 27 + }, + { + "command" : 10, + "file" : 1, + "line" : 637, + "parent" : 1 + }, + { + "file" : 2, + "line" : -1, + "parent" : 0 + }, + { + "command" : 16, + "file" : 9, + "line" : 1, + "parent" : 30 + }, + { + "command" : 15, + "file" : 0, + "line" : 768, + "parent" : 31 + }, + { + "command" : 10, + "file" : 0, + "line" : 2117, + "parent" : 32 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" + } + ], + "defines" : + [ + { + "define" : "IOPlugin_EXPORTS" + }, + { + "backtrace" : 5, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 5, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include" + }, + { + "backtrace" : 20, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 21, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 21, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 5 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 3, + 5 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e" + }, + { + "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + } + ], + "id" : "IOPlugin::@6adf3e82e1b4a763410e", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 5, + "fragment" : "-Xlinker", + "role" : "flags" + }, + { + "backtrace" : 5, + "fragment" : "-no_warn_duplicate_libraries", + "role" : "flags" + }, + { + "fragment" : "-F/opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/opt/homebrew/lib", + "role" : "libraries" + }, + { + "backtrace" : 5, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 18, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 18, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "IOPlugin", + "nameOnDisk" : "libIOPlugin.dylib", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 8 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 6, + 7, + 15, + 16, + 17, + 18 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 2, + 3, + 5 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 9, + 10, + 11, + 12, + 13, + 14 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 23, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 29, + "path" : "imports/IO/io.h", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 29, + "compileGroupIndex" : 0, + "path" : "imports/IO/io.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 33, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 33, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 5, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json b/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json new file mode 100644 index 0000000..3031198 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IOPlugin_autogen", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json b/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json new file mode 100644 index 0000000..ed8654f --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IOPlugin_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json new file mode 100644 index 0000000..83f3789 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2285, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 962, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e", + "name" : "IOPlugin_qmllint", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json new file mode 100644 index 0000000..a7fe40c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2285, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 989, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e", + "name" : "IOPlugin_qmllint_json", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json new file mode 100644 index 0000000..42dbf60 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2285, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1027, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e", + "name" : "IOPlugin_qmllint_module", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json new file mode 100644 index 0000000..00f5f02 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json @@ -0,0 +1,126 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 3018, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e", + "name" : "IOPlugin_qmltyperegistration", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json b/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json new file mode 100644 index 0000000..f50a1ed --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json @@ -0,0 +1,423 @@ +{ + "artifacts" : + [ + { + "path" : "imports/IO/libIOPluginplugin.dylib" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 625, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2022, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2451, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 2223, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 2227, + "parent" : 2 + }, + { + "file" : 6 + }, + { + "command" : 8, + "file" : 6, + "line" : 10, + "parent" : 8 + }, + { + "file" : 5, + "parent" : 9 + }, + { + "command" : 8, + "file" : 5, + "line" : 167, + "parent" : 10 + }, + { + "file" : 4, + "parent" : 11 + }, + { + "command" : 7, + "file" : 4, + "line" : 56, + "parent" : 12 + }, + { + "file" : 3, + "parent" : 13 + }, + { + "command" : 6, + "file" : 3, + "line" : 62, + "parent" : 14 + }, + { + "command" : 8, + "file" : 5, + "line" : 167, + "parent" : 10 + }, + { + "file" : 8, + "parent" : 16 + }, + { + "command" : 7, + "file" : 8, + "line" : 57, + "parent" : 17 + }, + { + "file" : 7, + "parent" : 18 + }, + { + "command" : 6, + "file" : 7, + "line" : 62, + "parent" : 19 + }, + { + "command" : 9, + "file" : 0, + "line" : 2518, + "parent" : 3 + }, + { + "command" : 10, + "file" : 1, + "line" : 2216, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" + } + ], + "defines" : + [ + { + "define" : "IOPluginplugin_EXPORTS" + }, + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 21, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 6, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 21, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 6, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 6 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + }, + { + "backtrace" : 0, + "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e" + }, + { + "backtrace" : 7, + "id" : "IOPlugin::@6adf3e82e1b4a763410e" + } + ], + "id" : "IOPluginplugin::@6adf3e82e1b4a763410e", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "-Xlinker", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "-no_warn_duplicate_libraries", + "role" : "flags" + }, + { + "fragment" : "-F/opt/homebrew/lib", + "role" : "frameworkPath" + }, + { + "fragment" : "-Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO -Wl,-rpath,/opt/homebrew/lib", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "libIOPlugin.dylib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-framework IOKit", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-framework DiskArbitration", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "IOPluginplugin", + "nameOnDisk" : "libIOPluginplugin.dylib", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json new file mode 100644 index 0000000..18d00c2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IOPluginplugin_autogen", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json new file mode 100644 index 0000000..937320e --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IOPluginplugin_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json b/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json new file mode 100644 index 0000000..d75cc3b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IO_autogen::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IO_autogen", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json b/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json new file mode 100644 index 0000000..1d86b14 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e", + "isGeneratorProvided" : true, + "name" : "IO_autogen_timestamp_deps", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json new file mode 100644 index 0000000..eccef36 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json @@ -0,0 +1,208 @@ +{ + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 1043, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 1136, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 6 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 5, + "parent" : 9 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 10 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 11 + }, + { + "command" : 1, + "file" : 0, + "line" : 1043, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 13 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 10, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 1043, + "parent" : 18 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2285, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 1043, + "parent" : 24 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 25 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 8, + "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "content_qmllint::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 20, + "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929" + }, + { + "backtrace" : 26, + "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "all_qmllint::@6890427a1f51a3e7e1df", + "name" : "all_qmllint", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json new file mode 100644 index 0000000..dc7ef5c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json @@ -0,0 +1,208 @@ +{ + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 1045, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 1136, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 6 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 5, + "parent" : 9 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 10 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 11 + }, + { + "command" : 1, + "file" : 0, + "line" : 1045, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 13 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 10, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 1045, + "parent" : 18 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2285, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 1045, + "parent" : 24 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 25 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 8, + "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 20, + "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929" + }, + { + "backtrace" : 26, + "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "all_qmllint_json::@6890427a1f51a3e7e1df", + "name" : "all_qmllint_json", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json new file mode 100644 index 0000000..3872032 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json @@ -0,0 +1,208 @@ +{ + "backtrace" : 7, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_add_all_qmllint_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "include", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 4, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 3 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 4 + }, + { + "command" : 1, + "file" : 0, + "line" : 1047, + "parent" : 5 + }, + { + "command" : 0, + "file" : 0, + "line" : 1136, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 6 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 5, + "parent" : 9 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 10 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 11 + }, + { + "command" : 1, + "file" : 0, + "line" : 1047, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 13 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 10, + "parent" : 15 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 16 + }, + { + "command" : 2, + "file" : 0, + "line" : 2532, + "parent" : 17 + }, + { + "command" : 1, + "file" : 0, + "line" : 1047, + "parent" : 18 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 19 + }, + { + "file" : 5 + }, + { + "command" : 4, + "file" : 5, + "line" : 6, + "parent" : 21 + }, + { + "command" : 3, + "file" : 0, + "line" : 647, + "parent" : 22 + }, + { + "command" : 2, + "file" : 0, + "line" : 2285, + "parent" : 23 + }, + { + "command" : 1, + "file" : 0, + "line" : 1047, + "parent" : 24 + }, + { + "command" : 6, + "file" : 0, + "line" : 1139, + "parent" : 25 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 8, + "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 14, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 20, + "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929" + }, + { + "backtrace" : 26, + "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "all_qmllint_module::@6890427a1f51a3e7e1df", + "name" : "all_qmllint_module", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json new file mode 100644 index 0000000..dbe4d95 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json @@ -0,0 +1,158 @@ +{ + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module", + "include", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "qmlmodules", + "CMakeLists.txt", + "content/CMakeLists.txt", + "imports/Bolt_Dash/CMakeLists.txt", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 52, + "parent" : 0 + }, + { + "file" : 1, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 3025, + "parent" : 4 + }, + { + "command" : 4, + "file" : 0, + "line" : 3028, + "parent" : 4 + }, + { + "file" : 3 + }, + { + "command" : 2, + "file" : 3, + "line" : 5, + "parent" : 7 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 8 + }, + { + "command" : 4, + "file" : 0, + "line" : 3028, + "parent" : 9 + }, + { + "file" : 4 + }, + { + "command" : 2, + "file" : 4, + "line" : 10, + "parent" : 11 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 12 + }, + { + "command" : 4, + "file" : 0, + "line" : 3028, + "parent" : 13 + }, + { + "file" : 5 + }, + { + "command" : 2, + "file" : 5, + "line" : 6, + "parent" : 15 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 16 + }, + { + "command" : 4, + "file" : 0, + "line" : 3028, + "parent" : 17 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 10, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 14, + "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929" + }, + { + "backtrace" : 18, + "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", + "name" : "all_qmltyperegistrations", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json b/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json new file mode 100644 index 0000000..3d3e160 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json @@ -0,0 +1,1353 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "content/libcontent.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "qt_add_library", + "add_dependencies", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_link_libraries", + "target_include_directories", + "_qt_internal_qml_type_registration", + "target_sources", + "qt6_extract_metatypes", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "_qt_internal_target_enable_qmlcachegen", + "_qt_internal_expose_deferred_files_to_ide", + "qt6_finalize_target" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2682, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 3 + }, + { + "command" : 6, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 647, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 2730, + "parent" : 6 + }, + { + "command" : 7, + "file" : 2, + "line" : 392, + "parent" : 5 + }, + { + "command" : 9, + "file" : 2, + "line" : 541, + "parent" : 5 + }, + { + "command" : 8, + "file" : 2, + "line" : 3057, + "parent" : 9 + }, + { + "command" : 8, + "file" : 2, + "line" : 3082, + "parent" : 9 + }, + { + "command" : 11, + "file" : 2, + "line" : 2882, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1415, + "parent" : 12 + }, + { + "command" : 10, + "file" : 2, + "line" : 3048, + "parent" : 9 + }, + { + "command" : 14, + "file" : 2, + "line" : 590, + "parent" : 5 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 15 + }, + { + "command" : 12, + "file" : 0, + "line" : 2390, + "parent" : 16 + }, + { + "command" : 10, + "file" : 0, + "line" : 2004, + "parent" : 17 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 15, + "file" : 2, + "line" : 2618, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 1239, + "parent" : 20 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2514, + "parent" : 6 + }, + { + "command" : 10, + "file" : 2, + "line" : 2666, + "parent" : 6 + }, + { + "command" : 14, + "file" : 2, + "line" : 2749, + "parent" : 6 + }, + { + "command" : 13, + "file" : 0, + "line" : 337, + "parent" : 63 + }, + { + "command" : 12, + "file" : 0, + "line" : 2390, + "parent" : 64 + }, + { + "command" : 10, + "file" : 0, + "line" : 2004, + "parent" : 65 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 17, + "file" : 3, + "line" : 1, + "parent" : 67 + }, + { + "command" : 16, + "file" : 0, + "line" : 768, + "parent" : 68 + }, + { + "command" : 10, + "file" : 0, + "line" : 2117, + "parent" : 69 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 10, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 8 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 2, + 3, + 5, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 47 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "content_tooling::@73a38b9e525c9c2ae262" + }, + { + "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "content_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "content::@73a38b9e525c9c2ae262", + "name" : "content", + "nameOnDisk" : "libcontent.a", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 62 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 1, + 4, + 7, + 9, + 11, + 13, + 15, + 17, + 19, + 21, + 23, + 25, + 27, + 29, + 31, + 33, + 35, + 37, + 39, + 41, + 43, + 45, + 48, + 49, + 50, + 51, + 52, + 53, + 56, + 57, + 58, + 59, + 60, + 61, + 92, + 93, + 94, + 95 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 2, + 3, + 5, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26, + 28, + 30, + 32, + 34, + 36, + 38, + 40, + 42, + 44, + 46, + 47 + ] + }, + { + "name" : "Resources", + "sourceIndexes" : + [ + 54, + 55 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 13, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 14, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 18, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 19, + "path" : "content/App.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 21, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 22, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 23, + "path" : "content/Screen01.ui.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 24, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 25, + "path" : "content/Speedometer.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 26, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 27, + "path" : "content/BatterySlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 28, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 29, + "path" : "content/TempSlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 30, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 31, + "path" : "content/Debug1.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 32, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 33, + "path" : "content/BoltLeanAngle.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 34, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 35, + "path" : "content/BikeStatus.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 36, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 37, + "path" : "content/BatteryReadout.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 38, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 39, + "path" : "content/FullBatterySlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 40, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 41, + "path" : "content/TemperatureIsland.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 42, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 43, + "path" : "content/FullSlider.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 44, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 45, + "path" : "content/BMSFaultDetails.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 46, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 47, + "path" : "content/DebugItem1.ui.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 48, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 49, + "path" : "content/FaultMotorStatus.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 50, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 51, + "path" : "content/SpeedometerDecorations.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 52, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 53, + "path" : "content/DebugMain.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 54, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 55, + "path" : "content/DebugMotor.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 56, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 57, + "path" : "content/DebugOverview.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 58, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 59, + "path" : "content/DebugBMS.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 60, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 61, + "path" : "content/DebugPDU.qml", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 62, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 66, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 70, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/qmldir", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/fonts/fonts.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/fonts/nasalization-rg.otf", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/fonts/MesloLGSDZNerdFontMono-Regular.ttf", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/leanAngleBack.png", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/motorcycleIcon.png", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/battery-twotone-0-svgrepo-com.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/battery.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/battery_temp.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/controller_temp.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/motor_temp.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 70, + "path" : "content/Pictures/Virginia_Tech_Hokies_logo.svg", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json b/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json new file mode 100644 index 0000000..a0b555c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "content_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json b/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json new file mode 100644 index 0000000..40f13d3 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json @@ -0,0 +1,38 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "content_tooling::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "content_autogen_timestamp_deps", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json new file mode 100644 index 0000000..ebc8061 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 962, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "content_qmllint::@73a38b9e525c9c2ae262", + "name" : "content_qmllint", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json new file mode 100644 index 0000000..f311d8b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 989, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", + "name" : "content_qmllint_json", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json new file mode 100644 index 0000000..d6d91ac --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json @@ -0,0 +1,98 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_target_enable_qmllint", + "qt6_target_qml_sources", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2532, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 1027, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" + } + ], + "folder" : + { + "name" : "QtInternalTargets/QmlLinter" + }, + "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", + "name" : "content_qmllint_module", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json new file mode 100644 index 0000000..e094576 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json @@ -0,0 +1,126 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "_qt_internal_qml_type_registration", + "qt6_add_qml_module" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 541, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 3018, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", + "name" : "content_qmltyperegistration", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "sources" : + [ + { + "backtrace" : 3, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json new file mode 100644 index 0000000..d4af599 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json @@ -0,0 +1,263 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library", + "target_include_directories" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 590, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2390, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 1951, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 1964, + "parent" : 4 + }, + { + "command" : 8, + "file" : 0, + "line" : 1995, + "parent" : 4 + }, + { + "command" : 7, + "file" : 0, + "line" : 1893, + "parent" : 7 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + }, + { + "command" : 9, + "file" : 0, + "line" : 1967, + "parent" : 4 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 2765, + "parent" : 8 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 11, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 10, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "content_resources_1::@73a38b9e525c9c2ae262", + "name" : "content_resources_1", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json new file mode 100644 index 0000000..156d351 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json @@ -0,0 +1,270 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "__qt_propagate_generated_resource", + "_qt_internal_process_resource", + "qt6_add_resources", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_compile_definitions", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library", + "target_include_directories" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 5, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 647, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 2749, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 337, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 2390, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 1951, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 1964, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 1995, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 1893, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + }, + { + "command" : 10, + "file" : 0, + "line" : 1967, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + }, + { + "command" : 7, + "file" : 0, + "line" : 2765, + "parent" : 9 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 10, + "define" : "QT_QML_LIB" + } + ], + "frameworks" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 12, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" + }, + { + "backtrace" : 12, + "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 12, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 13 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "content_resources_2::@73a38b9e525c9c2ae262", + "name" : "content_resources_2", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json b/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json new file mode 100644 index 0000000..d412e1c --- /dev/null +++ b/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json @@ -0,0 +1,532 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "qt6_target_qml_sources", + "qt6_add_qml_module", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 647, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2729, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2732, + "parent" : 2 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "content_tooling::@73a38b9e525c9c2ae262", + "name" : "content_tooling", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 26, + 27, + 28, + 29, + 30, + 31 + ] + }, + { + "name" : "Resources", + "sourceIndexes" : + [ + 24, + 25 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/App.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/App.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg.rule", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "INTERFACE_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json b/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json new file mode 100644 index 0000000..822bcda --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json @@ -0,0 +1,301 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "content/libcontentplugin.a" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "target_link_libraries", + "target_compile_definitions", + "target_sources" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 625, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 2022, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2451, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 4 + }, + { + "command" : 5, + "file" : 1, + "line" : 2227, + "parent" : 2 + }, + { + "command" : 5, + "file" : 1, + "line" : 2223, + "parent" : 2 + }, + { + "command" : 6, + "file" : 0, + "line" : 2518, + "parent" : 3 + }, + { + "command" : 6, + "file" : 0, + "line" : 2456, + "parent" : 3 + }, + { + "command" : 7, + "file" : 1, + "line" : 2216, + "parent" : 2 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 9, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 7 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 6, + "id" : "content::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 6, + "id" : "content_resources_1::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 6, + "id" : "content_resources_2::@73a38b9e525c9c2ae262" + }, + { + "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "contentplugin::@73a38b9e525c9c2ae262", + "name" : "contentplugin", + "nameOnDisk" : "libcontentplugin.a", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 10, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json new file mode 100644 index 0000000..f1f5236 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json new file mode 100644 index 0000000..56bb592 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_autogen_timestamp_deps", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json new file mode 100644 index 0000000..c14b1f2 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json @@ -0,0 +1,289 @@ +{ + "artifacts" : + [ + { + "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + }, + { + "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + } + ], + "backtrace" : 5, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_library", + "__qt_internal_add_static_plugin_init_object_library", + "qt6_add_qml_module", + "set_property", + "_qt_internal_copy_dependency_properties", + "__qt_internal_propagate_object_library" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 5, + "parent" : 0 + }, + { + "command" : 3, + "file" : 2, + "line" : 664, + "parent" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 258, + "parent" : 2 + }, + { + "command" : 1, + "file" : 0, + "line" : 2564, + "parent" : 3 + }, + { + "command" : 0, + "file" : 0, + "line" : 2659, + "parent" : 4 + }, + { + "command" : 7, + "file" : 2, + "line" : 668, + "parent" : 1 + }, + { + "command" : 6, + "file" : 0, + "line" : 1893, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 2765, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 8, + "define" : "QT_NETWORK_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 8, + "define" : "QT_QMLBUILTINS_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QMLINTEGRATION_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_QML_LIB" + }, + { + "backtrace" : 8, + "define" : "QT_STATICPLUGIN" + } + ], + "frameworks" : + [ + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtQml.framework/Headers" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlIntegration" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/include/QtQmlBuiltins" + }, + { + "backtrace" : 9, + "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/lib/QtCore.framework/Headers" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" + }, + { + "backtrace" : 9, + "isSystem" : true, + "path" : "/opt/homebrew/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 10 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + }, + { + "backtrace" : 0, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262" + } + ], + "id" : "contentplugin_init::@73a38b9e525c9c2ae262", + "name" : "contentplugin_init", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 5, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "OBJECT_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json new file mode 100644 index 0000000..b5551c7 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_init_autogen", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json new file mode 100644 index 0000000..73e92fd --- /dev/null +++ b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "content/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262", + "isGeneratorProvided" : true, + "name" : "contentplugin_init_autogen_timestamp_deps", + "paths" : + { + "build" : "content", + "source" : "content" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json new file mode 100644 index 0000000..dc3ae94 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json @@ -0,0 +1,76 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt6_add_qml_plugin", + "qt6_add_qml_module", + "add_dependencies" + ], + "files" : + [ + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "imports/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 6, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 625, + "parent" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 2022, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2525, + "parent" : 3 + }, + { + "command" : 4, + "file" : 0, + "line" : 2528, + "parent" : 3 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "IOPluginplugin::@6adf3e82e1b4a763410e" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@6adf3e82e1b4a763410e", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "imports/IO", + "source" : "imports/IO" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json new file mode 100644 index 0000000..936965d --- /dev/null +++ b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json @@ -0,0 +1,61 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "AppleClang", + "implicit" : + { + "includeDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "linkDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift" + ], + "linkFrameworkDirectories" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks" + ], + "linkLibraries" : + [ + "c++" + ] + }, + "path" : "/Library/Developer/CommandLineTools/usr/bin/c++", + "version" : "15.0.0.15000309" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/.qt/QtDeploySupport.cmake b/build/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..6f84f13 --- /dev/null +++ b/build/.qt/QtDeploySupport.cmake @@ -0,0 +1,70 @@ +cmake_minimum_required(VERSION 3.16...3.21) + +# These are part of the public API. Projects should use them to provide a +# consistent set of prefix-relative destinations. +if(NOT QT_DEPLOY_BIN_DIR) + set(QT_DEPLOY_BIN_DIR "bin") +endif() +if(NOT QT_DEPLOY_LIBEXEC_DIR) + set(QT_DEPLOY_LIBEXEC_DIR "libexec") +endif() +if(NOT QT_DEPLOY_LIB_DIR) + set(QT_DEPLOY_LIB_DIR "lib") +endif() +if(NOT QT_DEPLOY_PLUGINS_DIR) + set(QT_DEPLOY_PLUGINS_DIR "plugins") +endif() +if(NOT QT_DEPLOY_QML_DIR) + set(QT_DEPLOY_QML_DIR "qml") +endif() +if(NOT QT_DEPLOY_TRANSLATIONS_DIR) + set(QT_DEPLOY_TRANSLATIONS_DIR "translations") +endif() +if(NOT QT_DEPLOY_PREFIX) + set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") +endif() +if(QT_DEPLOY_PREFIX STREQUAL "") + set(QT_DEPLOY_PREFIX .) +endif() +if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) + set(QT_DEPLOY_IGNORED_LIB_DIRS "") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Darwin") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "/opt/homebrew/bin/macdeployqt") +set(__QT_DEPLOY_IMPL_DIR "/Users/mason/Documents/Code/dash-cpp/build/.qt") +set(__QT_DEPLOY_VERBOSE "") +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") +set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") +set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") +set(__QT_DEFAULT_MAJOR_VERSION "6") +set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") +set(__QT_DEPLOY_QT_INSTALL_PREFIX "/opt/homebrew") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "share/qt/libexec") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "share/qt/plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt/translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/opt/homebrew/bin/qtpaths") +set(__QT_DEPLOY_PLUGINS "") +set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "") +set(__QT_DEPLOY_USE_PATCHELF "") +set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") +set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") +set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") + +# Define the CMake commands to be made available during deployment. +set(__qt_deploy_support_files + "/Users/mason/Documents/Code/dash-cpp/build/.qt/QtDeployTargets.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/build/.qt/QtDeployTargets.cmake b/build/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..b19310a --- /dev/null +++ b/build/.qt/QtDeployTargets.cmake @@ -0,0 +1,3 @@ +set(__QT_DEPLOY_TARGET_IOPlugin_FILE /Users/mason/Documents/Code/dash-cpp/build/imports/IO/libIOPlugin.dylib) +set(__QT_DEPLOY_TARGET_IOPluginplugin_FILE /Users/mason/Documents/Code/dash-cpp/build/imports/IO/libIOPluginplugin.dylib) +set(__QT_DEPLOY_TARGET_Bolt_DashApp_FILE /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp) diff --git a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake new file mode 100644 index 0000000..5fe0583 --- /dev/null +++ b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake @@ -0,0 +1,20 @@ +# Auto-generated deploy QML imports script for target "Bolt_DashApp". +# Do not edit, all changes will be lost. +# This file should only be included by qt_deploy_qml_imports(). + +set(__qt_opts ) +if(arg_NO_QT_IMPORTS) + list(APPEND __qt_opts NO_QT_IMPORTS) +endif() + +_qt_internal_deploy_qml_imports_for_target( + ${__qt_opts} + IMPORTS_FILE "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + PLUGINS_FOUND __qt_internal_plugins_found + QML_DIR "${arg_QML_DIR}" + PLUGINS_DIR "${arg_PLUGINS_DIR}" +) + +if(arg_PLUGINS_FOUND) + set(${arg_PLUGINS_FOUND} "${__qt_internal_plugins_found}" PARENT_SCOPE) +endif() diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake new file mode 100644 index 0000000..aad0cde --- /dev/null +++ b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake @@ -0,0 +1,38 @@ +set(qml_import_scanner_imports_count 36) +set(qml_import_scanner_import_0 "CLASSNAME;QtQuick2Plugin;LINKTARGET;Qt6::qtquick2plugin;NAME;QtQuick;PATH;/opt/homebrew/share/qt/qml/QtQuick;PLUGIN;qtquick2plugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/;RELATIVEPATH;QtQuick;TYPE;module;") +set(qml_import_scanner_import_1 "CLASSNAME;QtQmlMetaPlugin;LINKTARGET;Qt6::QmlMeta;NAME;QtQml;PATH;/opt/homebrew/share/qt/qml/QtQml;PLUGIN;qmlmetaplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/;RELATIVEPATH;QtQml;TYPE;module;") +set(qml_import_scanner_import_2 "CLASSNAME;QtQmlPlugin;LINKTARGET;Qt6::qmlplugin;NAME;QtQml.Base;PATH;/opt/homebrew/share/qt/qml/QtQml/Base;PLUGIN;qmlplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/Base/;RELATIVEPATH;QtQml/Base;TYPE;module;") +set(qml_import_scanner_import_3 "CLASSNAME;QtQmlModelsPlugin;LINKTARGET;Qt6::modelsplugin;NAME;QtQml.Models;PATH;/opt/homebrew/share/qt/qml/QtQml/Models;PLUGIN;modelsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/Models/;RELATIVEPATH;QtQml/Models;TYPE;module;") +set(qml_import_scanner_import_4 "CLASSNAME;QtQmlWorkerScriptPlugin;LINKTARGET;Qt6::workerscriptplugin;NAME;QtQml.WorkerScript;PATH;/opt/homebrew/share/qt/qml/QtQml/WorkerScript;PLUGIN;workerscriptplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/WorkerScript/;RELATIVEPATH;QtQml/WorkerScript;TYPE;module;") +set(qml_import_scanner_import_5 "NAME;QML;TYPE;module;") +set(qml_import_scanner_import_6 "CLASSNAME;contentPlugin;COMPONENTS;/Users/mason/Documents/Code/dash-cpp/build/content/App.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml;/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml;/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml;LINKTARGET;contentplugin;NAME;content;PATH;/Users/mason/Documents/Code/dash-cpp/build/content;PLUGIN;contentplugin;PLUGINISOPTIONAL;;PREFER;:/content/;RELATIVEPATH;content;TYPE;module;") +set(qml_import_scanner_import_7 "CLASSNAME;QtQuickControls2Plugin;LINKTARGET;Qt6::qtquickcontrols2plugin;NAME;QtQuick.Controls;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls;PLUGIN;qtquickcontrols2plugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/;RELATIVEPATH;QtQuick/Controls;TYPE;module;") +set(qml_import_scanner_import_8 "CLASSNAME;QtQuickLayoutsPlugin;LINKTARGET;Qt6::qquicklayoutsplugin;NAME;QtQuick.Layouts;PATH;/opt/homebrew/share/qt/qml/QtQuick/Layouts;PLUGIN;qquicklayoutsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Layouts/;RELATIVEPATH;QtQuick/Layouts;TYPE;module;") +set(qml_import_scanner_import_9 "NAME;Bolt_Dash;TYPE;module;") +set(qml_import_scanner_import_10 "NAME;IO;TYPE;module;") +set(qml_import_scanner_import_11 "CLASSNAME;QmlShapesPlugin;LINKTARGET;Qt6::qmlshapesplugin;NAME;QtQuick.Shapes;PATH;/opt/homebrew/share/qt/qml/QtQuick/Shapes;PLUGIN;qmlshapesplugin;PREFER;:/qt-project.org/imports/QtQuick/Shapes/;RELATIVEPATH;QtQuick/Shapes;TYPE;module;") +set(qml_import_scanner_import_12 "CLASSNAME;QtChartsQml2Plugin;LINKTARGET;Qt6::qtchartsqml2;NAME;QtCharts;PATH;/opt/homebrew/share/qt/qml/QtCharts;PLUGIN;qtchartsqml2plugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtCharts/;RELATIVEPATH;QtCharts;TYPE;module;") +set(qml_import_scanner_import_13 "CLASSNAME;QtQuickControls2FusionStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleplugin;NAME;QtQuick.Controls.Fusion;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion;PLUGIN;qtquickcontrols2fusionstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/;RELATIVEPATH;QtQuick/Controls/Fusion;TYPE;module;") +set(qml_import_scanner_import_14 "CLASSNAME;QtQuickControls2MaterialStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleplugin;NAME;QtQuick.Controls.Material;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material;PLUGIN;qtquickcontrols2materialstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/;RELATIVEPATH;QtQuick/Controls/Material;TYPE;module;") +set(qml_import_scanner_import_15 "CLASSNAME;QtQuickControls2ImagineStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleplugin;NAME;QtQuick.Controls.Imagine;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine;PLUGIN;qtquickcontrols2imaginestyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/;RELATIVEPATH;QtQuick/Controls/Imagine;TYPE;module;") +set(qml_import_scanner_import_16 "CLASSNAME;QtQuickControls2UniversalStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleplugin;NAME;QtQuick.Controls.Universal;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal;PLUGIN;qtquickcontrols2universalstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/;RELATIVEPATH;QtQuick/Controls/Universal;TYPE;module;") +set(qml_import_scanner_import_17 "NAME;QtQuick.Controls.Windows;TYPE;module;") +set(qml_import_scanner_import_18 "CLASSNAME;QtQuickControls2MacOSStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TreeViewDelegate.qml;LINKTARGET;Qt6::qtquickcontrols2macosstyleplugin;NAME;QtQuick.Controls.macOS;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS;PLUGIN;qtquickcontrols2macosstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/macOS/;RELATIVEPATH;QtQuick/Controls/macOS;TYPE;module;") +set(qml_import_scanner_import_19 "CLASSNAME;QtQuickControls2IOSStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2iosstyleplugin;NAME;QtQuick.Controls.iOS;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS;PLUGIN;qtquickcontrols2iosstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/iOS/;RELATIVEPATH;QtQuick/Controls/iOS;TYPE;module;") +set(qml_import_scanner_import_20 "CLASSNAME;QtQuickControls2BasicStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/AbstractButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Action.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ActionGroup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ButtonGroup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Calendar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CalendarModel.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Container.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Control.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DayOfWeekRow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MonthGrid.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/VerticalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/WeekNumberColumn.qml;LINKTARGET;Qt6::qtquickcontrols2basicstyleplugin;NAME;QtQuick.Controls.Basic;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic;PLUGIN;qtquickcontrols2basicstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/;RELATIVEPATH;QtQuick/Controls/Basic;TYPE;module;") +set(qml_import_scanner_import_21 "CLASSNAME;QtQuickTemplates2Plugin;LINKTARGET;Qt6::qtquicktemplates2plugin;NAME;QtQuick.Templates;PATH;/opt/homebrew/share/qt/qml/QtQuick/Templates;PLUGIN;qtquicktemplates2plugin;PREFER;:/qt-project.org/imports/QtQuick/Templates/;RELATIVEPATH;QtQuick/Templates;TYPE;module;") +set(qml_import_scanner_import_22 "CLASSNAME;QtQuickControls2ImplPlugin;LINKTARGET;Qt6::qtquickcontrols2implplugin;NAME;QtQuick.Controls.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/impl;PLUGIN;qtquickcontrols2implplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/impl/;RELATIVEPATH;QtQuick/Controls/impl;TYPE;module;") +set(qml_import_scanner_import_23 "CLASSNAME;QtQuickControls2FusionStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/ButtonPanel.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SliderGroove.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SliderHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleimplplugin;NAME;QtQuick.Controls.Fusion.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl;PLUGIN;qtquickcontrols2fusionstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/impl/;RELATIVEPATH;QtQuick/Controls/Fusion/impl;TYPE;module;") +set(qml_import_scanner_import_24 "CLASSNAME;QtQuick_WindowPlugin;LINKTARGET;Qt6::quickwindow;NAME;QtQuick.Window;PATH;/opt/homebrew/share/qt/qml/QtQuick/Window;PLUGIN;quickwindowplugin;PREFER;:/qt-project.org/imports/QtQuick/Window/;RELATIVEPATH;QtQuick/Window;TYPE;module;") +set(qml_import_scanner_import_25 "CLASSNAME;QtQuickControls2MaterialStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/BoxShadow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/CursorDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/ElevationEffect.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RectangularGlow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/SliderHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleimplplugin;NAME;QtQuick.Controls.Material.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl;PLUGIN;qtquickcontrols2materialstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/impl/;RELATIVEPATH;QtQuick/Controls/Material/impl;TYPE;module;") +set(qml_import_scanner_import_26 "CLASSNAME;QtQuickControls2ImagineStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/impl/OpacityMask.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleimplplugin;NAME;QtQuick.Controls.Imagine.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/impl;PLUGIN;qtquickcontrols2imaginestyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/impl/;RELATIVEPATH;QtQuick/Controls/Imagine/impl;TYPE;module;") +set(qml_import_scanner_import_27 "CLASSNAME;QtQuickControls2UniversalStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleimplplugin;NAME;QtQuick.Controls.Universal.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl;PLUGIN;qtquickcontrols2universalstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/impl/;RELATIVEPATH;QtQuick/Controls/Universal/impl;TYPE;module;") +set(qml_import_scanner_import_28 "CLASSNAME;QtQuickControls2NativeStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultButton.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultCheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultDial.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultFrame.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultGroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultItemDelegateIconLabel.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultRadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultRadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultSpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTextField.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/util/MacFocusFrame.qml;LINKTARGET;Qt6::qtquickcontrols2nativestyleplugin;NAME;QtQuick.NativeStyle;PATH;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle;PLUGIN;qtquickcontrols2nativestyleplugin;PREFER;:/qt-project.org/imports/QtQuick/NativeStyle/;RELATIVEPATH;QtQuick/NativeStyle;TYPE;module;") +set(qml_import_scanner_import_29 "CLASSNAME;QtQuickControls2macOSStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl/SwitchHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2macosstyleimplplugin;NAME;QtQuick.Controls.macOS.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl;PLUGIN;qtquickcontrols2macosstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/macOS/impl/;RELATIVEPATH;QtQuick/Controls/macOS/impl;TYPE;module;") +set(qml_import_scanner_import_30 "CLASSNAME;QtQuick_Controls_iOS_implPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl/CursorDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl/DialogButtonBoxDelegate.qml;LINKTARGET;Qt6::qtquickcontrols2iosstyleimplplugin;NAME;QtQuick.Controls.iOS.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl;PLUGIN;qtquickcontrols2iosstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/iOS/impl/;RELATIVEPATH;QtQuick/Controls/iOS/impl;TYPE;module;") +set(qml_import_scanner_import_31 "CLASSNAME;QtQuickControls2BasicStyleImplPlugin;LINKTARGET;Qt6::qtquickcontrols2basicstyleimplplugin;NAME;QtQuick.Controls.Basic.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/impl;PLUGIN;qtquickcontrols2basicstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/impl/;RELATIVEPATH;QtQuick/Controls/Basic/impl;TYPE;module;") +set(qml_import_scanner_import_32 "CLASSNAME;QtQuickEffectsPlugin;LINKTARGET;Qt6::effectsplugin;NAME;QtQuick.Effects;PATH;/opt/homebrew/share/qt/qml/QtQuick/Effects;PLUGIN;effectsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Effects/;RELATIVEPATH;QtQuick/Effects;TYPE;module;") +set(qml_import_scanner_import_33 "CLASSNAME;QmlFolderListModelPlugin;LINKTARGET;Qt6::qmlfolderlistmodelplugin;NAME;Qt.labs.folderlistmodel;PATH;/opt/homebrew/share/qt/qml/Qt/labs/folderlistmodel;PLUGIN;qmlfolderlistmodelplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/Qt/labs/folderlistmodel/;RELATIVEPATH;Qt/labs/folderlistmodel;TYPE;module;") +set(qml_import_scanner_import_34 "NAME;QtQuick.Studio.EventSimulator;TYPE;module;") +set(qml_import_scanner_import_35 "NAME;QtQuick.Studio.EventSystem;TYPE;module;") + diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp new file mode 100644 index 0000000..caa9b9d --- /dev/null +++ b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp @@ -0,0 +1,15 @@ +-rootPath +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash +-cmake-output +-output-file +/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +-importPath +/Users/mason/Documents/Code/dash-cpp/build/Main +-importPath +/Users/mason/Documents/Code/dash-cpp/build +-importPath +/opt/homebrew/share/qt/qml +-qrcFiles +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc \ No newline at end of file diff --git a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc new file mode 100644 index 0000000..e717427 --- /dev/null +++ b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + + + diff --git a/build/.rcc/configuration.qrc b/build/.rcc/configuration.qrc new file mode 100644 index 0000000..1245a55 --- /dev/null +++ b/build/.rcc/configuration.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf + + + diff --git a/build/.rcc/qmake_Main.qrc b/build/.rcc/qmake_Main.qrc new file mode 100644 index 0000000..f2061fd --- /dev/null +++ b/build/.rcc/qmake_Main.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/Main/qmldir + + + diff --git a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp new file mode 100644 index 0000000..516af40 --- /dev/null +++ b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp @@ -0,0 +1,7 @@ +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +/Main/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp.rsp b/build/.rcc/qmllint/Bolt_DashApp.rsp new file mode 100644 index 0000000..c71bcc9 --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp.rsp @@ -0,0 +1,12 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp_json.rsp b/build/.rcc/qmllint/Bolt_DashApp_json.rsp new file mode 100644 index 0000000..8243fa0 --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp_json.rsp @@ -0,0 +1,14 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_qmllint.json diff --git a/build/.rcc/qmllint/Bolt_DashApp_module.rsp b/build/.rcc/qmllint/Bolt_DashApp_module.rsp new file mode 100644 index 0000000..68800ee --- /dev/null +++ b/build/.rcc/qmllint/Bolt_DashApp_module.rsp @@ -0,0 +1,12 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +--module +Main diff --git a/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..55edbf3 --- /dev/null +++ b/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake @@ -0,0 +1,101 @@ +set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000309") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 1053.12) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + diff --git a/build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..eb805c69db3a876b24d6a692eafc7771fd4e56ce GIT binary patch literal 16984 zcmeI4U1%It6vyv=L=qB{v`DSQ;tEo<(WDai z2x|9)EWu{ASHFv6lWlMB*w%rf z%#5lt?1}g5QM6tg|6I9b8M%%g=L%&No1s+CNJNNwtdBW1@g>;=C4VG}TI{Cin1u;2 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC>Ds2~=Mbi`9ojWvNY6 zergoAsx6|j+%{RkOz!deXP%sHFqgyETOyTuUqj<{uWtsvvN`d$zK8d$@hu?--ZecR zkXK@fzU1zbdDtinOMT2L4sHz}6e1Bz_GNZkWoZ-(hCWz~^~k*mE!LZe3V79>OxZGI zp{N_h!FVi{ifd9!^v0qI_-RD=LFY?(SDIm_8RrOAQkqXEiKyr5gXW~0kfl{+f)NsQ zRY?d>nu#VQ@s1;_`D**P_UV&iJ)KaNfLMA3JDD4i#)Od_M;9Z;5ZVw8xgj$z?nR9V zAfeiuamSsb#~iw{4|(S7$$!kTDSeBNCZ+AVHYnTfnd%H-f`9F6rFyND1MzL$G>9)f zUjr8g;@j=xRp2sXJ}-^DZVu(`fL-dICt%dHtWm>_p?XMe|Ijp#%I?S3#daUgP_{21 z{6XSFEo7l-C<*4rqmhtbjh5Rd|NM0SoWPgOrJj~udUj~1IIo@k{Dg7v=BEq0x^KO7 zrL^Ij%8T#Ko!od?JHK%5ot{U|ygK_yx^QWEcs}_3;^GVbWV)_;*PfxXeJ$GkTzW;mm#I@lY$Nso!&g{JSV=?n{`O?K~-B*42g?FzW`1pz0 aYkgntpZd1iHP`TZ+b>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..e061c08c6ce69105ac2b6f4739914165fe59258c GIT binary patch literal 1712 zcmb_cJ#5oZ5PqShqzWV;F@P#TBo?M9Nn5D}MM~6w09kE^41uV6Sc#Kba-7Id!K&&_d2>lvl19;@o<=hs%1JU>teA1H?gh=UITfXuYF5D;H#6H#|AtCilC}FZCwo8|_6t^{Y3{vM<~2L))!LY2-(1-f+J-2jiHF zT6SSMHMZq6au=W~7v;CqH>da>-a7}|!{+v2BhYmy3HhWmP^$SG=|2{q`US&%>eY;lbQ?XVyMg+K**B;m~Yk{~vPHOZ62y|Ep&Yb7B6Sk5lr??bVxW z*XY;Sj^&kd&8B0mIHp_M5J9Htn0~e4)k}HP!*AoL>6JH2?6-W=t(aa#R;;SocKp)v z5@&E;EVpHYMuXhi>c%lY_Sk&#f#p%dQZkU#VnR8|(Y2Px0VLj!p0y z=!_7?uCke@uwaw%MA=Le792AiWi!MfaK|u|%`CvifRoB*hzB;LJCJFaMf~|raCU9dqyf9G-p-`SvPH$>ooBh f661yA*P9F6E&&H{UPCy5X$|23rZj{DNF4bCQt1(% literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake new file mode 100644 index 0000000..1907c0e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp.dir/build.make b/build/CMakeFiles/Bolt_DashApp.dir/build.make new file mode 100644 index 0000000..9b92d89 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/build.make @@ -0,0 +1,132 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include CMakeFiles/Bolt_DashApp.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/Bolt_DashApp.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/Bolt_DashApp.dir/flags.make + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: Bolt_DashApp_autogen/mocs_compilation.cpp +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i + +CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s + +# Object files for target Bolt_DashApp +Bolt_DashApp_OBJECTS = \ +"CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" + +# External object files for target Bolt_DashApp +Bolt_DashApp_EXTERNAL_OBJECTS = + +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/build.make +Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o +Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +Bolt_DashApp: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o +Bolt_DashApp: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o +Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o +Bolt_DashApp: /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick +Bolt_DashApp: content/libcontentplugin.a +Bolt_DashApp: imports/Bolt_Dash/libBolt_Dashplugin.a +Bolt_DashApp: imports/IO/libIOPlugin.dylib +Bolt_DashApp: content/libcontentplugin.a +Bolt_DashApp: /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels +Bolt_DashApp: /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL +Bolt_DashApp: /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui +Bolt_DashApp: content/libcontent.a +Bolt_DashApp: imports/Bolt_Dash/libBolt_Dash.a +Bolt_DashApp: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +Bolt_DashApp: /opt/homebrew/lib/libQt6QmlBuiltins.a +Bolt_DashApp: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +Bolt_DashApp: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable Bolt_DashApp" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_DashApp.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp.dir/build: Bolt_DashApp +.PHONY : CMakeFiles/Bolt_DashApp.dir/build + +CMakeFiles/Bolt_DashApp.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp.dir/clean + +CMakeFiles/Bolt_DashApp.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake new file mode 100644 index 0000000..7904d33 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "Bolt_DashApp_autogen" + "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt" + "Bolt_DashApp" + "Bolt_DashApp.pdb" + "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_DashApp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make new file mode 100644 index 0000000..f282e55 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_DashApp. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts new file mode 100644 index 0000000..0057db6 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_DashApp. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/depend.make b/build/CMakeFiles/Bolt_DashApp.dir/depend.make new file mode 100644 index 0000000..5ef48a7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_DashApp. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/flags.make b/build/CMakeFiles/Bolt_DashApp.dir/flags.make new file mode 100644 index 0000000..3c66242 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/CMakeFiles/Bolt_DashApp.dir/link.txt b/build/CMakeFiles/Bolt_DashApp.dir/link.txt new file mode 100644 index 0000000..0ba117d --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -o Bolt_DashApp -F/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick -lpigpio content/libcontentplugin.a imports/Bolt_Dash/libBolt_Dashplugin.a imports/IO/libIOPlugin.dylib content/libcontentplugin.a /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -framework OpenGL -framework AGL -framework AppKit -framework ImageIO -framework Metal content/libcontent.a imports/Bolt_Dash/libBolt_Dash.a /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/CMakeFiles/Bolt_DashApp.dir/progress.make b/build/CMakeFiles/Bolt_DashApp.dir/progress.make new file mode 100644 index 0000000..e869fc5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 13 + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..86cbbe9 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json @@ -0,0 +1,1169 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt", + "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeSystem.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake", + "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake", + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake", + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/deps", + "DEP_FILE_RULE_NAME" : "Bolt_DashApp_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NETWORK_LIB", + "QT_OPENGL_LIB", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QMLMODELS_LIB", + "QT_QML_LIB", + "QT_QUICK_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers", + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtGui.framework/Headers", + "/opt/homebrew/lib/QtGui.framework", + "/opt/homebrew/lib/QtQuick.framework/Headers", + "/opt/homebrew/lib/QtQuick.framework", + "/opt/homebrew/lib/QtQmlModels.framework/Headers", + "/opt/homebrew/lib/QtQmlModels.framework", + "/opt/homebrew/lib/QtOpenGL.framework/Headers", + "/opt/homebrew/lib/QtOpenGL.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..07d9f7d --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "Bolt_DashApp_autogen/timestamp" "custom" "Bolt_DashApp_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make new file mode 100644 index 0000000..8dac47c --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_autogen. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_autogen.dir/progress.make + +CMakeFiles/Bolt_DashApp_autogen: Bolt_DashApp_autogen/timestamp + +Bolt_DashApp_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +Bolt_DashApp_autogen/timestamp: CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_DashApp" + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp + +Bolt_DashApp_autogen: Bolt_DashApp_autogen/timestamp +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/build.make +.PHONY : Bolt_DashApp_autogen + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_autogen.dir/build: Bolt_DashApp_autogen +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/build + +CMakeFiles/Bolt_DashApp_autogen.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean + +CMakeFiles/Bolt_DashApp_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..d1f993a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "Bolt_DashApp_autogen/mocs_compilation.cpp" + "Bolt_DashApp_autogen/timestamp" + "CMakeFiles/Bolt_DashApp_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..97ffaae --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_autogen. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..2e4b7d7 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..ffb5742 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make + +Bolt_DashApp_autogen_timestamp_deps: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make +.PHONY : Bolt_DashApp_autogen_timestamp_deps + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build: Bolt_DashApp_autogen_timestamp_deps +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build + +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean + +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..053cef3 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..3b87a9b --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..0bae455 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen_timestamp_deps. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make new file mode 100644 index 0000000..d0ae7ae --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make @@ -0,0 +1,95 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmlimportscan. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake + +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /opt/homebrew/share/qt/libexec/qmlimportscanner +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/configuration.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/qmake_Main.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/Bolt_DashApp_raw_qml_0.qrc +.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running qmlimportscanner for Bolt_DashApp" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlimportscanner @/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp + +Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make +.PHONY : Bolt_DashApp_qmlimportscan + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build: Bolt_DashApp_qmlimportscan +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build + +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean + +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake new file mode 100644 index 0000000..a20954a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + "CMakeFiles/Bolt_DashApp_qmlimportscan" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make new file mode 100644 index 0000000..b4c062d --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmlimportscan. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts new file mode 100644 index 0000000..501af74 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmlimportscan. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make new file mode 100644 index 0000000..db9f2e4 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 14 + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make new file mode 100644 index 0000000..4e6b923 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint: .rcc/qmllint/Bolt_DashApp.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp.rsp + +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/build.make +.PHONY : Bolt_DashApp_qmllint + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint.dir/build: Bolt_DashApp_qmllint +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/build + +CMakeFiles/Bolt_DashApp_qmllint.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..cb56b10 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..ad45339 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..d1f1a16 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make new file mode 100644 index 0000000..f4dd621 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint_json. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint_json: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint_json: .rcc/qmllint/Bolt_DashApp_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_json.rsp + +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make +.PHONY : Bolt_DashApp_qmllint_json + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/build: Bolt_DashApp_qmllint_json +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/build + +CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..0d5b73e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..50770eb --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..3e2382e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_json. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make new file mode 100644 index 0000000..890f83f --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make @@ -0,0 +1,89 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmllint_module. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmllint_module: /opt/homebrew/bin/qmllint +CMakeFiles/Bolt_DashApp_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml +CMakeFiles/Bolt_DashApp_qmllint_module: .rcc/qmllint/Bolt_DashApp_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_module.rsp + +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make +.PHONY : Bolt_DashApp_qmllint_module + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/build: Bolt_DashApp_qmllint_module +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/build + +CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean + +CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b81100e --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_DashApp_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..ef9a392 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..0f85f5b --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_module. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..4d411ca --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "Bolt_DashApp_autogen/timestamp" "custom" "Bolt_DashApp_autogen/deps" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..e89aba1 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make @@ -0,0 +1,136 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make + +CMakeFiles/Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp +CMakeFiles/Bolt_DashApp_qmltyperegistration: Main/Bolt_DashApp.qmltypes + +bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt +bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +bolt_dashapp_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes + +Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate Main/Bolt_DashApp.qmltypes + +meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json + +meta_types/Bolt_DashApp_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +meta_types/Bolt_DashApp_json_file_list.txt: Bolt_DashApp_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target Bolt_DashApp" + /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include + +Bolt_DashApp_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +Bolt_DashApp_autogen/timestamp: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target Bolt_DashApp" + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp + +Bolt_DashApp_qmltyperegistration: Bolt_DashApp_autogen/timestamp +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration +Bolt_DashApp_qmltyperegistration: Main/Bolt_DashApp.qmltypes +Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp +Bolt_DashApp_qmltyperegistration: meta_types/Bolt_DashApp_json_file_list.txt +Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json +Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make +.PHONY : Bolt_DashApp_qmltyperegistration + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build: Bolt_DashApp_qmltyperegistration +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build + +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean + +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..feb8e0a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "Bolt_DashApp_autogen/mocs_compilation.cpp" + "Bolt_DashApp_autogen/timestamp" + "CMakeFiles/Bolt_DashApp_qmltyperegistration" + "Main/Bolt_DashApp.qmltypes" + "bolt_dashapp_qmltyperegistrations.cpp" + "meta_types/Bolt_DashApp_json_file_list.txt" + "meta_types/Bolt_DashApp_json_file_list.txt.timestamp" + "meta_types/qt6bolt_dashapp_debug_metatypes.json" + "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..a2fdb08 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..898276b --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmltyperegistration. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..26c4583 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 15 +CMAKE_PROGRESS_3 = 16 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = 17 + diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make new file mode 100644 index 0000000..1cb7170 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_DashApp_tooling. + +# Include any custom commands dependencies for this target. +include CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/Bolt_DashApp_tooling.dir/progress.make + +Main/main.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying main.qml to /Users/mason/Documents/Code/dash-cpp/build/Main/main.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml /Users/mason/Documents/Code/dash-cpp/build/Main/main.qml + +Bolt_DashApp_tooling: Main/main.qml +Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/build.make +.PHONY : Bolt_DashApp_tooling + +# Rule to build all files generated by this target. +CMakeFiles/Bolt_DashApp_tooling.dir/build: Bolt_DashApp_tooling +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/build + +CMakeFiles/Bolt_DashApp_tooling.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean + +CMakeFiles/Bolt_DashApp_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/depend + diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..f7c9511 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "Main/main.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..e6b0af0 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_DashApp_tooling. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..259884a --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_DashApp_tooling. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..0a6bd81 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,322 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:6 (project)" + message: | + The system is: Darwin - 23.6.0 - arm64 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: + + The output was: + 1 + ld: library 'c++' not found + clang: error: linker command failed with exit code 1 (use -v to see invocation) + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:6 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is AppleClang, found in: + /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4dca7/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4dca7.dir/build.make CMakeFiles/cmTC_4dca7.dir/build + Building CXX object CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl,-v -MD -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Apple clang version 15.0.0 (clang-1500.3.9.4) + Target: arm64-apple-darwin23.6.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.6.0 + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory) + End of search list. + Linking CXX executable cmTC_4dca7 + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4dca7.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4dca7 + Apple clang version 15.0.0 (clang-1500.3.9.4) + Target: arm64-apple-darwin23.6.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_4dca7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1053.12 + BUILD 15:45:29 Feb 3 2024 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) + Library search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:113 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Effective list of requested architectures (possibly empty) : "" + Effective list of architectures found in the ABI info binary: "arm64" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4dca7/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4dca7.dir/build.make CMakeFiles/cmTC_4dca7.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl -v -MD -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] + ignore line: [Target: arm64-apple-darwin23.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.6.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_4dca7] + ignore line: [/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4dca7.dir/link.txt --verbose=1] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4dca7] + ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] + ignore line: [Target: arm64-apple-darwin23.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_4dca7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [14.0.0] ==> ignore + arg [14.4] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk] ==> ignore + arg [-o] ==> ignore + arg [cmTC_4dca7] ==> ignore + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:6 (project)" + message: | + Running the CXX compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" + @(#)PROGRAM:ld PROJECT:ld-1053.12 + BUILD 15:45:29 Feb 3 2024 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake:27 (_qt_internal_find_third_party_dependencies)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:122 (include)" + - "CMakeLists.txt:10 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/kwin" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_23e26/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_23e26.dir/build.make CMakeFiles/cmTC_23e26.dir/build + Building CXX object CMakeFiles/cmTC_23e26.dir/src.cxx.o + /Library/Developer/CommandLineTools/usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_23e26.dir/src.cxx.o -MF CMakeFiles/cmTC_23e26.dir/src.cxx.o.d -o CMakeFiles/cmTC_23e26.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz/src.cxx + Linking CXX executable cmTC_23e26 + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23e26.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_23e26.dir/src.cxx.o -o cmTC_23e26 + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:33 (_qt_internal_find_third_party_dependencies)" + - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" + - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:167 (find_package)" + - "CMakeLists.txt:10 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ" + binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/kwin" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ' + + Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_47d81/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_47d81.dir/build.make CMakeFiles/cmTC_47d81.dir/build + Building CXX object CMakeFiles/cmTC_47d81.dir/src.cxx.o + /Library/Developer/CommandLineTools/usr/bin/c++ -DHAVE_STDATOMIC -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_47d81.dir/src.cxx.o -MF CMakeFiles/cmTC_47d81.dir/src.cxx.o.d -o CMakeFiles/cmTC_47d81.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ/src.cxx + Linking CXX executable cmTC_47d81 + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47d81.dir/link.txt --verbose=1 + /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_47d81.dir/src.cxx.o -o cmTC_47d81 + + exitCode: 0 +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..05e27f5 --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..62072e0 --- /dev/null +++ b/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,129 @@ +# Hashes of file build rules. +704fe75316b31e8832e2a1ae46edf113 .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +9c87ad4ad6a7dfee621dbcd800388019 Bolt_DashApp_autogen/timestamp +1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_autogen +1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmlimportscan +3653f848231646653d797c90daf6e861 CMakeFiles/Bolt_DashApp_qmllint +530f209369bf8951464fc5ba15e07c38 CMakeFiles/Bolt_DashApp_qmllint_json +c5bcb51a79f362b4dca117214c8c8283 CMakeFiles/Bolt_DashApp_qmllint_module +1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmltyperegistration +8487762ca65be0f7bf90ab127f834a93 Main/main.qml +47263914e10fc6e3aed5181b992c1989 bolt_dashapp_qmltyperegistrations.cpp +b862f700333ba98158414d865d82f247 content/.rcc/qmlcache/content_App_qml.cpp +9ca7890edd817a1bc494230512919c13 content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp +0020b559df1c0ea3b12f9806b2c05e79 content/.rcc/qmlcache/content_BatteryReadout_qml.cpp +a8a0845457b7a5e23716d25af2592f31 content/.rcc/qmlcache/content_BatterySlider_qml.cpp +5e0b1aaa93ae6b6abcb0f7015a53e517 content/.rcc/qmlcache/content_BikeStatus_qml.cpp +1dae36ace5f6eaee864cf6d449570104 content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp +999201d32a145ab0bdda55ebc7013128 content/.rcc/qmlcache/content_Debug1_qml.cpp +845bad67b3a709f5be618e2f6a6b0d2b content/.rcc/qmlcache/content_DebugBMS_qml.cpp +91369be73d7b51b761b1d05cb608dc76 content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp +87eeda970336d3520a2f4ed52aa0617e content/.rcc/qmlcache/content_DebugMain_qml.cpp +4a6bab32df1440f3c7a7160b4d95d7c9 content/.rcc/qmlcache/content_DebugMotor_qml.cpp +0dcb07f54997f2509f9a26be4416a952 content/.rcc/qmlcache/content_DebugOverview_qml.cpp +e884892fc762bd598002e342bd147653 content/.rcc/qmlcache/content_DebugPDU_qml.cpp +e67c773c20a2baee44fc5428352f4d02 content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp +dc54deeed1589373138e0429e483a562 content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp +4daf90a8dcceaff150519f9569528a7d content/.rcc/qmlcache/content_FullSlider_qml.cpp +40fecabe524ea287ebe72331a2e7a4ec content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +c51d8cfc38bab83fa1284d0db6ab3458 content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp +eafa5657c801230db38f007f7aeb9b8c content/.rcc/qmlcache/content_Speedometer_qml.cpp +f48d8896119c3e3ec88cbf531c4dd5b6 content/.rcc/qmlcache/content_TempSlider_qml.cpp +35980a40b28cb693ca95aa2087555f9e content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp +a2dfda2fde36ae348be63fd54f7c6ca1 content/.rcc/qmlcache/content_qmlcache_loader.cpp +d0615d8a132e74f7d67dc3af3a3509ec content/.rcc/qrc_content_raw_qml_0.cpp +2130f002b849a41f58fe7e1dead40cba content/.rcc/qrc_qmake_content.cpp +7165e007e8bc52b59131f9ec2686e2d7 content/App.qml +416aaf68d7230de25da0d523962113ed content/BMSFaultDetails.qml +6e69351f6d3333a0a3b73bc22d0a054d content/BatteryReadout.qml +856aae9e76409e8089aad40f5a93f70a content/BatterySlider.qml +4170b4b9a84ebf9e07429f128f41142e content/BikeStatus.qml +f62a7ecba293af8d7fd16d51663f01c3 content/BoltLeanAngle.qml +6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_autogen +850b411bbd6f11304211bd065349ac4e content/CMakeFiles/content_qmllint +ccab716c0cb6327a73e949c98a1ec4b4 content/CMakeFiles/content_qmllint_json +831e4ec481c5698f2fa4ef3ecb438d03 content/CMakeFiles/content_qmllint_module +6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_qmltyperegistration +6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_autogen +6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_autogen_timestamp_deps +6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_init_autogen +6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_init_autogen_timestamp_deps +8dd84c515b570e9328a34e2e1f90b70a content/Debug1.qml +ef1507fc1edf4df40281bb706ef9c0a4 content/DebugBMS.qml +6391ed2e78928a22ae7cf07371f65575 content/DebugItem1.ui.qml +debc98e7129c522733163c04ff4bdd22 content/DebugMain.qml +7b33e447e6fa9d492e29b2ab2b6931fa content/DebugMotor.qml +b22949e52a5323932c5ca97c7eb49221 content/DebugOverview.qml +cce5a991a442693d83c16efe1f1f33f2 content/DebugPDU.qml +7e25cd328d4f34e89f1fc8ec3fa2b06d content/FaultMotorStatus.qml +91afbe6159d26850cdc80dfd18ca7f62 content/FullBatterySlider.qml +85fc9838b4db2b21de841bd75c091bf8 content/FullSlider.qml +d45eb6b0a41860bda7317d4624eaed31 content/Pictures/Virginia_Tech_Hokies_logo.svg +7f998076178e90dd57328a90c73dc1e7 content/Pictures/battery-twotone-0-svgrepo-com.svg +21310d767b4a9d09fb484b9154972da1 content/Pictures/battery.svg +dc883fc98993347201ad3ea1114c8df7 content/Pictures/battery_temp.svg +0ad3a38d006213728e8a1ea79a50db03 content/Pictures/controller_temp.svg +ceb767a901829c7a2387549ab19534e1 content/Pictures/leanAngleBack.png +3328149e5cc5737327b2848735d441cf content/Pictures/motor_temp.svg +d9e93aca0f313fcd74a1390052fb8df6 content/Pictures/motorcycleIcon.png +1e42b24935f295ab625324b4085502bc content/Screen01.ui.qml +4816856bdc4a4a26315047f66217e035 content/Speedometer.qml +4047e0e395a219744ecf7dc7986b2662 content/SpeedometerDecorations.qml +875f3edc9c7db84a9fad5332bd27edaf content/TempSlider.qml +151875fd6e57577fff017390b1b51500 content/TemperatureIsland.qml +6a8df2176e6f7a6552a8169d09a59b3c content/content_autogen/timestamp +fba069025f2098b1faac854f1c8cace1 content/content_qmltyperegistrations.cpp +0d86d882175bf35fb8bff991f8fb6618 content/contentplugin_autogen/timestamp +9098ce3a3cea6a7b9083bdf3bced6b08 content/contentplugin_init_autogen/timestamp +853c0add551bf1a7157f6ba17b621927 content/fonts/MesloLGSDZNerdFontMono-Regular.ttf +47e63d1de74d7a16fc1a2041fcc91822 content/fonts/fonts.txt +7d930cd1b0c0ae4fd2ac59bdd3d6f991 content/fonts/nasalization-rg.otf +470e775060afaf0d3f0d4fea58897772 content/meta_types/content_json_file_list.txt +a57efff904f9df659941e033ea3d7a6a content/meta_types/qt6content_debug_metatypes.json +ead16443c68549f47a39e41bc6290228 content/meta_types/qt6content_debug_metatypes.json.gen +842f112bf1dbc54f6a739d1f2a355206 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +4498ff884312e979b350c6c233d8ea6a imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +61683091f39957d00ccb0e0e253a921d imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +5a210f5c57cae6776c337ceb7f48438e imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +ec8d88fb6b922a94c8753c64df24e975 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +adbb375648730d47bb1ba5b91b8158e0 imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp +e13326feff4b181fa0f6f811aa2af1e9 imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp +e7cb1ded6ab7784da4c4cec8333c139d imports/Bolt_Dash/Bolt_Dash_autogen/timestamp +5242d4559227098b1a94ac451d8e9b15 imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp +b0b41acd42faf989798eb63851049543 imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen +589b4d6dcf10118dc596cbafe032e759 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint +1817681b06f59c78b1dc8f2ebefa90f0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json +870c838975dd4644c9eb992ec0d92ed9 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen +1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps +69cfde95dc7ec8b9f3de71e54a8abe8a imports/Bolt_Dash/Constants.qml +b185ce8b3d4d9a61e95ac8fcdcd2ffe8 imports/Bolt_Dash/DirectoryFontLoader.qml +ba1f9013c629f4d3b9b67b29cb369f2e imports/Bolt_Dash/EventListModel.qml +59ae07c0f0183f8fbf5b66671ec762c7 imports/Bolt_Dash/EventListSimulator.qml +36b2f16f17fdf21a2f5b2135355c5f28 imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +b55179fdf2d49ef82e2837c92bee5ae0 imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt +1eb7e03e9fc61892123a122f250bafd6 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +1d09b3cea3b663762fdb0170e51f09a2 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen +291a630f8c97fb9a43349136d13d01ed imports/IO/.rcc/qrc_qmake_IO.cpp +3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPlugin_autogen +f045b0aaea8c9ab6930eca7411e8976a imports/IO/CMakeFiles/IOPlugin_qmllint +7f95e641647af9b355b534538d6cf0ed imports/IO/CMakeFiles/IOPlugin_qmllint_json +de6dfe41cfd8fe8e740591e14c3628f4 imports/IO/CMakeFiles/IOPlugin_qmllint_module +3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPlugin_qmltyperegistration +3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPluginplugin_autogen +3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps +3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IO_autogen +6472148bac2051d1f36cb8c3dab14c29 imports/IO/IOPlugin_autogen/timestamp +de74a8d3a925e9b20e0087e0e42e953e imports/IO/IOPluginplugin_autogen/timestamp +137becfa272ba80f51fb29364e61d398 imports/IO/IO_autogen/timestamp +d4c6faf7c1727a5578bbda1133727724 imports/IO/ioplugin_qmltyperegistrations.cpp +47bc739b2ef08bbec3ae77efa98f0980 imports/IO/meta_types/IOPlugin_json_file_list.txt +cac07eb70e94a5d29be6c82b2bc8e4a5 imports/IO/meta_types/qt6ioplugin_debug_metatypes.json +56510a84b97f41338d8466abdb379460 imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen +f94c5a4b6b0d9e1f39badebfd5cd2b4d meta_types/Bolt_DashApp_json_file_list.txt +7cb1e8c0ddaedf4397130f74bb52e256 meta_types/qt6bolt_dashapp_debug_metatypes.json +a4f64cb6ee902549217cfcec862746dc meta_types/qt6bolt_dashapp_debug_metatypes.json.gen diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..94f45b9 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,923 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules" + ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" + "CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" + "CMakeFiles/3.30.0/CMakeSystem.cmake" + "content/contentplugin_contentPlugin_in.cpp" + "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + "imports/IO/IOPluginplugin_IOPlugin_in.cpp" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake" + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" + "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake" + "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + ".rcc/configuration.qrc" + ".rcc/qmake_Main.qrc" + "Main/Bolt_DashApp_qml_module_dir_map.qrc" + ".rcc/Bolt_DashApp_raw_qml_0.qrc" + "Main/qmldir" + "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json" + ".qt/QtDeploySupport.cmake" + "qmltypes/Bolt_DashApp_foreign_types.txt" + ".rcc/qmllint/Bolt_DashApp.rsp" + ".rcc/qmllint/Bolt_DashApp_json.rsp" + ".rcc/qmllint/Bolt_DashApp_module.rsp" + ".rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp" + ".qt/QtDeployTargets.cmake" + ".qt/deploy_qml_imports/Bolt_DashApp.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "content/.rcc/qmake_content.qrc" + "content/.rcc/qrc_qmake_content_init.cpp" + "content/contentplugin_contentPlugin_in.cpp" + "content/content_qml_module_dir_map.qrc" + "content/.rcc/content_raw_qml_0.qrc" + "content/.rcc/qrc_content_raw_qml_0_init.cpp" + "content/qmldir" + "content/CMakeFiles/content_autogen.dir/AutogenInfo.json" + "content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json" + "content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json" + "content/qmltypes/content_foreign_types.txt" + "content/contentplugin_contentPlugin.cpp" + "content/.rcc/qmllint/content.rsp" + "content/.rcc/qmllint/content_json.rsp" + "content/.rcc/qmllint/content_module.rsp" + "content/.rcc/qmlcache/content_qml_loader_file_list.rsp" + "content/contentplugin_init.cpp" + "content/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc" + "imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp" + "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + "imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc" + "imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc" + "imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp" + "imports/Bolt_Dash/qmldir" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json" + "imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt" + "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp" + "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp" + "imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp" + "imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" + "imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake" + "imports/IO/.rcc/qmake_IO.qrc" + "imports/IO/IOPluginplugin_IOPlugin_in.cpp" + "imports/IO/IOPlugin_qml_module_dir_map.qrc" + "imports/IO/qmldir" + "imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json" + "imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json" + "imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json" + "imports/IO/qmltypes/IOPlugin_foreign_types.txt" + "imports/IO/IOPluginplugin_IOPlugin.cpp" + "imports/IO/.rcc/qmllint/IOPlugin.rsp" + "imports/IO/.rcc/qmllint/IOPlugin_json.rsp" + "imports/IO/.rcc/qmllint/IOPlugin_module.rsp" + "imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake" + "CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake" + "CMakeFiles/all_qmllint.dir/DependInfo.cmake" + "CMakeFiles/all_qmllint_json.dir/DependInfo.cmake" + "CMakeFiles/all_qmllint_module.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake" + "CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/content.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake" + "content/CMakeFiles/content_resources_1.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake" + "content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake" + "content/CMakeFiles/content_tooling.dir/DependInfo.cmake" + "content/CMakeFiles/content_resources_2.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake" + "content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake" + "content/CMakeFiles/content_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake" + "content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IO.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake" + "imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..da36f73 --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,1802 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/Bolt_DashApp.dir/all +all: CMakeFiles/Bolt_DashApp_tooling.dir/all +all: content/all +all: imports/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: content/preinstall +preinstall: imports/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/Bolt_DashApp.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean +clean: CMakeFiles/all_qmltyperegistrations.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean +clean: CMakeFiles/all_qmllint.dir/clean +clean: CMakeFiles/all_qmllint_json.dir/clean +clean: CMakeFiles/all_qmllint_module.dir/clean +clean: CMakeFiles/Bolt_DashApp_tooling.dir/clean +clean: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean +clean: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean +clean: CMakeFiles/Bolt_DashApp_autogen.dir/clean +clean: content/clean +clean: imports/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory content + +# Recursive "all" directory target. +content/all: content/CMakeFiles/content.dir/all +content/all: content/CMakeFiles/content_resources_1.dir/all +content/all: content/CMakeFiles/contentplugin.dir/all +content/all: content/CMakeFiles/content_tooling.dir/all +content/all: content/CMakeFiles/content_resources_2.dir/all +content/all: content/CMakeFiles/contentplugin_init.dir/all +.PHONY : content/all + +# Recursive "preinstall" directory target. +content/preinstall: +.PHONY : content/preinstall + +# Recursive "clean" directory target. +content/clean: content/CMakeFiles/content.dir/clean +content/clean: content/CMakeFiles/content_qmltyperegistration.dir/clean +content/clean: content/CMakeFiles/content_resources_1.dir/clean +content/clean: content/CMakeFiles/contentplugin.dir/clean +content/clean: content/CMakeFiles/content_qmllint.dir/clean +content/clean: content/CMakeFiles/content_qmllint_json.dir/clean +content/clean: content/CMakeFiles/content_qmllint_module.dir/clean +content/clean: content/CMakeFiles/content_tooling.dir/clean +content/clean: content/CMakeFiles/content_resources_2.dir/clean +content/clean: content/CMakeFiles/contentplugin_init.dir/clean +content/clean: content/CMakeFiles/content_autogen_timestamp_deps.dir/clean +content/clean: content/CMakeFiles/content_autogen.dir/clean +content/clean: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean +content/clean: content/CMakeFiles/contentplugin_autogen.dir/clean +content/clean: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean +content/clean: content/CMakeFiles/contentplugin_init_autogen.dir/clean +.PHONY : content/clean + +#============================================================================= +# Directory level rules for directory imports + +# Recursive "all" directory target. +imports/all: imports/Bolt_Dash/all +imports/all: imports/IO/all +.PHONY : imports/all + +# Recursive "preinstall" directory target. +imports/preinstall: imports/Bolt_Dash/preinstall +imports/preinstall: imports/IO/preinstall +.PHONY : imports/preinstall + +# Recursive "clean" directory target. +imports/clean: imports/Bolt_Dash/clean +imports/clean: imports/IO/clean +.PHONY : imports/clean + +#============================================================================= +# Directory level rules for directory imports/Bolt_Dash + +# Recursive "all" directory target. +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all +.PHONY : imports/Bolt_Dash/all + +# Recursive "preinstall" directory target. +imports/Bolt_Dash/preinstall: +.PHONY : imports/Bolt_Dash/preinstall + +# Recursive "clean" directory target. +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean +imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean +.PHONY : imports/Bolt_Dash/clean + +#============================================================================= +# Directory level rules for directory imports/IO + +# Recursive "all" directory target. +imports/IO/all: imports/IO/CMakeFiles/IO.dir/all +imports/IO/all: imports/IO/CMakeFiles/IOPlugin.dir/all +imports/IO/all: imports/IO/CMakeFiles/IOPluginplugin.dir/all +.PHONY : imports/IO/all + +# Recursive "preinstall" directory target. +imports/IO/preinstall: +.PHONY : imports/IO/preinstall + +# Recursive "clean" directory target. +imports/IO/clean: imports/IO/CMakeFiles/IO.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/qt_internal_plugins.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IO_autogen.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean +imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean +.PHONY : imports/IO/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all +CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all +CMakeFiles/Bolt_DashApp.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=13 "Built target Bolt_DashApp" +.PHONY : CMakeFiles/Bolt_DashApp.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp.dir/rule + +# Convenience name for target. +Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/rule +.PHONY : Bolt_DashApp + +# clean rule for target. +CMakeFiles/Bolt_DashApp.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmltyperegistration.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=15,16,17 "Built target Bolt_DashApp_qmltyperegistration" +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 29 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule +.PHONY : Bolt_DashApp_qmltyperegistration + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/all_qmltyperegistrations.dir + +# All Build rule for target. +CMakeFiles/all_qmltyperegistrations.dir/all: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all +CMakeFiles/all_qmltyperegistrations.dir/all: content/CMakeFiles/content_qmltyperegistration.dir/all +CMakeFiles/all_qmltyperegistrations.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all +CMakeFiles/all_qmltyperegistrations.dir/all: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmltyperegistrations" +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/all_qmltyperegistrations.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmltyperegistrations.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/rule + +# Convenience name for target. +all_qmltyperegistrations: CMakeFiles/all_qmltyperegistrations.dir/rule +.PHONY : all_qmltyperegistrations + +# clean rule for target. +CMakeFiles/all_qmltyperegistrations.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/clean +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/rule +.PHONY : Bolt_DashApp_qmllint + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_json.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_json" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule +.PHONY : Bolt_DashApp_qmllint_json + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_module.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_module" +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule +.PHONY : Bolt_DashApp_qmllint_module + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/all_qmllint.dir + +# All Build rule for target. +CMakeFiles/all_qmllint.dir/all: CMakeFiles/Bolt_DashApp_qmllint.dir/all +CMakeFiles/all_qmllint.dir/all: content/CMakeFiles/content_qmllint.dir/all +CMakeFiles/all_qmllint.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all +CMakeFiles/all_qmllint.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint" +.PHONY : CMakeFiles/all_qmllint.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/all_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/all_qmllint.dir/rule + +# Convenience name for target. +all_qmllint: CMakeFiles/all_qmllint.dir/rule +.PHONY : all_qmllint + +# clean rule for target. +CMakeFiles/all_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/clean +.PHONY : CMakeFiles/all_qmllint.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/all_qmllint_json.dir + +# All Build rule for target. +CMakeFiles/all_qmllint_json.dir/all: CMakeFiles/Bolt_DashApp_qmllint_json.dir/all +CMakeFiles/all_qmllint_json.dir/all: content/CMakeFiles/content_qmllint_json.dir/all +CMakeFiles/all_qmllint_json.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all +CMakeFiles/all_qmllint_json.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_json" +.PHONY : CMakeFiles/all_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/all_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/all_qmllint_json.dir/rule + +# Convenience name for target. +all_qmllint_json: CMakeFiles/all_qmllint_json.dir/rule +.PHONY : all_qmllint_json + +# clean rule for target. +CMakeFiles/all_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/clean +.PHONY : CMakeFiles/all_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/all_qmllint_module.dir + +# All Build rule for target. +CMakeFiles/all_qmllint_module.dir/all: CMakeFiles/Bolt_DashApp_qmllint_module.dir/all +CMakeFiles/all_qmllint_module.dir/all: content/CMakeFiles/content_qmllint_module.dir/all +CMakeFiles/all_qmllint_module.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all +CMakeFiles/all_qmllint_module.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_module" +.PHONY : CMakeFiles/all_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/all_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/all_qmllint_module.dir/rule + +# Convenience name for target. +all_qmllint_module: CMakeFiles/all_qmllint_module.dir/rule +.PHONY : all_qmllint_module + +# clean rule for target. +CMakeFiles/all_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/clean +.PHONY : CMakeFiles/all_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_tooling.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_tooling" +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/rule + +# Convenience name for target. +Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/rule +.PHONY : Bolt_DashApp_tooling + +# clean rule for target. +CMakeFiles/Bolt_DashApp_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_qmlimportscan.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=14 "Built target Bolt_DashApp_qmlimportscan" +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule + +# Convenience name for target. +Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule +.PHONY : Bolt_DashApp_qmlimportscan + +# clean rule for target. +CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen_timestamp_deps" +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_DashApp_autogen_timestamp_deps: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_DashApp_autogen_timestamp_deps + +# clean rule for target. +CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Bolt_DashApp_autogen.dir + +# All Build rule for target. +CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen" +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Bolt_DashApp_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/rule + +# Convenience name for target. +Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/rule +.PHONY : Bolt_DashApp_autogen + +# clean rule for target. +CMakeFiles/Bolt_DashApp_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/clean +.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content.dir + +# All Build rule for target. +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen.dir/all +content/CMakeFiles/content.dir/all: content/CMakeFiles/content_tooling.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Built target content" +.PHONY : content/CMakeFiles/content.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 51 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content.dir/rule + +# Convenience name for target. +content: content/CMakeFiles/content.dir/rule +.PHONY : content + +# clean rule for target. +content/CMakeFiles/content.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/clean +.PHONY : content/CMakeFiles/content.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmltyperegistration.dir + +# All Build rule for target. +content/CMakeFiles/content_qmltyperegistration.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=74,75,76 "Built target content_qmltyperegistration" +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 22 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule + +# Convenience name for target. +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content_qmltyperegistration + +# clean rule for target. +content/CMakeFiles/content_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/clean +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_resources_1.dir + +# All Build rule for target. +content/CMakeFiles/content_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=77 "Built target content_resources_1" +.PHONY : content/CMakeFiles/content_resources_1.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_resources_1.dir/rule + +# Convenience name for target. +content_resources_1: content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content_resources_1 + +# clean rule for target. +content/CMakeFiles/content_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/clean +.PHONY : content/CMakeFiles/content_resources_1.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_1.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_2.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all +content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=97 "Built target contentplugin" +.PHONY : content/CMakeFiles/contentplugin.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 54 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin.dir/rule + +# Convenience name for target. +contentplugin: content/CMakeFiles/contentplugin.dir/rule +.PHONY : contentplugin + +# clean rule for target. +content/CMakeFiles/contentplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/clean +.PHONY : content/CMakeFiles/contentplugin.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint" +.PHONY : content/CMakeFiles/content_qmllint.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint.dir/rule + +# Convenience name for target. +content_qmllint: content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content_qmllint + +# clean rule for target. +content/CMakeFiles/content_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/clean +.PHONY : content/CMakeFiles/content_qmllint.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint_json.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_json" +.PHONY : content/CMakeFiles/content_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule + +# Convenience name for target. +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content_qmllint_json + +# clean rule for target. +content/CMakeFiles/content_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/clean +.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_qmllint_module.dir + +# All Build rule for target. +content/CMakeFiles/content_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_module" +.PHONY : content/CMakeFiles/content_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule + +# Convenience name for target. +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content_qmllint_module + +# clean rule for target. +content/CMakeFiles/content_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/clean +.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_tooling.dir + +# All Build rule for target. +content/CMakeFiles/content_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96 "Built target content_tooling" +.PHONY : content/CMakeFiles/content_tooling.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_tooling.dir/rule + +# Convenience name for target. +content_tooling: content/CMakeFiles/content_tooling.dir/rule +.PHONY : content_tooling + +# clean rule for target. +content/CMakeFiles/content_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/clean +.PHONY : content/CMakeFiles/content_tooling.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_resources_2.dir + +# All Build rule for target. +content/CMakeFiles/content_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_resources_2" +.PHONY : content/CMakeFiles/content_resources_2.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_resources_2.dir/rule + +# Convenience name for target. +content_resources_2: content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content_resources_2 + +# clean rule for target. +content/CMakeFiles/content_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/clean +.PHONY : content/CMakeFiles/content_resources_2.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_init.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all +content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=99 "Built target contentplugin_init" +.PHONY : content/CMakeFiles/contentplugin_init.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_init.dir/rule + +# Convenience name for target. +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : contentplugin_init + +# clean rule for target. +content/CMakeFiles/contentplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/clean +.PHONY : content/CMakeFiles/contentplugin_init.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_autogen_timestamp_deps.dir + +# All Build rule for target. +content/CMakeFiles/content_autogen_timestamp_deps.dir/all: content/CMakeFiles/content_tooling.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen_timestamp_deps" +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/rule +.PHONY : content_autogen_timestamp_deps + +# clean rule for target. +content/CMakeFiles/content_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/clean +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/content_autogen.dir + +# All Build rule for target. +content/CMakeFiles/content_autogen.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen" +.PHONY : content/CMakeFiles/content_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/content_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/content_autogen.dir/rule + +# Convenience name for target. +content_autogen: content/CMakeFiles/content_autogen.dir/rule +.PHONY : content_autogen + +# clean rule for target. +content/CMakeFiles/content_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/clean +.PHONY : content/CMakeFiles/content_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_autogen_timestamp_deps" +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule +.PHONY : contentplugin_autogen_timestamp_deps + +# clean rule for target. +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_autogen.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_autogen.dir/all: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=98 "Built target contentplugin_autogen" +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule + +# Convenience name for target. +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : contentplugin_autogen + +# clean rule for target. +content/CMakeFiles/contentplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/clean +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_init_autogen_timestamp_deps" +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : contentplugin_init_autogen_timestamp_deps + +# clean rule for target. +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target content/CMakeFiles/contentplugin_init_autogen.dir + +# All Build rule for target. +content/CMakeFiles/contentplugin_init_autogen.dir/all: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=100 "Built target contentplugin_init_autogen" +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +content/CMakeFiles/contentplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule + +# Convenience name for target. +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : contentplugin_init_autogen + +# clean rule for target. +content/CMakeFiles/contentplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/clean +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12 "Built target Bolt_Dash" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 15 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule + +# Convenience name for target. +Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : Bolt_Dash + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=19,20,21 "Built target Bolt_Dash_qmltyperegistration" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : Bolt_Dash_qmltyperegistration + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_1" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : Bolt_Dash_resources_1 + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=25,26 "Built target Bolt_Dashplugin" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 18 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule + +# Convenience name for target. +Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : Bolt_Dashplugin + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : Bolt_Dash_qmllint + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_json" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : Bolt_Dash_qmllint_json + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_module" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : Bolt_Dash_qmllint_module + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=23,24 "Built target Bolt_Dash_tooling" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule + +# Convenience name for target. +Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule +.PHONY : Bolt_Dash_tooling + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=22 "Built target Bolt_Dash_resources_2" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : Bolt_Dash_resources_2 + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=27,28 "Built target Bolt_Dashplugin_init" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : Bolt_Dashplugin_init + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_autogen_timestamp_deps" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dash_autogen_timestamp_deps + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=18 "Built target Bolt_Dash_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : Bolt_Dash_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen_timestamp_deps" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : Bolt_Dashplugin_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen_timestamp_deps" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir + +# All Build rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen + +# clean rule for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IO.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IO.dir/all: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all +imports/IO/CMakeFiles/IO.dir/all: imports/IO/CMakeFiles/IO_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=29 "Built target IO" +.PHONY : imports/IO/CMakeFiles/IO.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IO.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IO.dir/rule + +# Convenience name for target. +IO: imports/IO/CMakeFiles/IO.dir/rule +.PHONY : IO + +# clean rule for target. +imports/IO/CMakeFiles/IO.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/clean +.PHONY : imports/IO/CMakeFiles/IO.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all +imports/IO/CMakeFiles/IOPlugin.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=30,31,32,33,34,35 "Built target IOPlugin" +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/rule + +# Convenience name for target. +IOPlugin: imports/IO/CMakeFiles/IOPlugin.dir/rule +.PHONY : IOPlugin + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=37,38 "Built target IOPlugin_qmltyperegistration" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule + +# Convenience name for target. +IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule +.PHONY : IOPlugin_qmltyperegistration + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPluginplugin.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all +imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all +imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=39,40 "Built target IOPluginplugin" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPluginplugin.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/rule + +# Convenience name for target. +IOPluginplugin: imports/IO/CMakeFiles/IOPluginplugin.dir/rule +.PHONY : IOPluginplugin + +# clean rule for target. +imports/IO/CMakeFiles/IOPluginplugin.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/qt_internal_plugins.dir + +# All Build rule for target. +imports/IO/CMakeFiles/qt_internal_plugins.dir/all: imports/IO/CMakeFiles/IOPluginplugin.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target qt_internal_plugins" +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/qt_internal_plugins.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/qt_internal_plugins.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/rule + +# Convenience name for target. +qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : qt_internal_plugins + +# clean rule for target. +imports/IO/CMakeFiles/qt_internal_plugins.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/clean +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule + +# Convenience name for target. +IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule +.PHONY : IOPlugin_qmllint + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint_json" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule + +# Convenience name for target. +IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule +.PHONY : IOPlugin_qmllint_json + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint_module" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule + +# Convenience name for target. +IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule +.PHONY : IOPlugin_qmllint_module + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IO_autogen_timestamp_deps" +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule +.PHONY : IO_autogen_timestamp_deps + +# clean rule for target. +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IO_autogen.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IO_autogen.dir/all: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IO_autogen" +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IO_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/rule + +# Convenience name for target. +IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/rule +.PHONY : IO_autogen + +# clean rule for target. +imports/IO/CMakeFiles/IO_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/clean +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_autogen_timestamp_deps" +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule +.PHONY : IOPlugin_autogen_timestamp_deps + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPlugin_autogen.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPlugin_autogen.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=36 "Built target IOPlugin_autogen" +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule + +# Convenience name for target. +IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule +.PHONY : IOPlugin_autogen + +# clean rule for target. +imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPluginplugin_autogen_timestamp_deps" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule +.PHONY : IOPluginplugin_autogen_timestamp_deps + +# clean rule for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target imports/IO/CMakeFiles/IOPluginplugin_autogen.dir + +# All Build rule for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=41 "Built target IOPluginplugin_autogen" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all + +# Build rule for subdir invocation for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule + +# Convenience name for target. +IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule +.PHONY : IOPluginplugin_autogen + +# clean rule for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..8c94936 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,89 @@ +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmltyperegistrations.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/qt_internal_plugins.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/edit_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/rebuild_cache.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/list_install_components.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install/local.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install/strip.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir diff --git a/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint.dir/build.make b/build/CMakeFiles/all_qmllint.dir/build.make new file mode 100644 index 0000000..1d859c8 --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint. + +# Include any custom commands dependencies for this target. +include CMakeFiles/all_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/all_qmllint.dir/progress.make + +all_qmllint: CMakeFiles/all_qmllint.dir/build.make +.PHONY : all_qmllint + +# Rule to build all files generated by this target. +CMakeFiles/all_qmllint.dir/build: all_qmllint +.PHONY : CMakeFiles/all_qmllint.dir/build + +CMakeFiles/all_qmllint.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint.dir/cmake_clean.cmake +.PHONY : CMakeFiles/all_qmllint.dir/clean + +CMakeFiles/all_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/all_qmllint.dir/depend + diff --git a/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..f57148b --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/all_qmllint.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..4237b7f --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..bbf6441 --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint. diff --git a/build/CMakeFiles/all_qmllint.dir/progress.make b/build/CMakeFiles/all_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/all_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint_json.dir/build.make b/build/CMakeFiles/all_qmllint_json.dir/build.make new file mode 100644 index 0000000..783a83c --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint_json. + +# Include any custom commands dependencies for this target. +include CMakeFiles/all_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/all_qmllint_json.dir/progress.make + +all_qmllint_json: CMakeFiles/all_qmllint_json.dir/build.make +.PHONY : all_qmllint_json + +# Rule to build all files generated by this target. +CMakeFiles/all_qmllint_json.dir/build: all_qmllint_json +.PHONY : CMakeFiles/all_qmllint_json.dir/build + +CMakeFiles/all_qmllint_json.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake +.PHONY : CMakeFiles/all_qmllint_json.dir/clean + +CMakeFiles/all_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/all_qmllint_json.dir/depend + diff --git a/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..8cb0a83 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..3dec026 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..d95f9ec --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint_json. diff --git a/build/CMakeFiles/all_qmllint_json.dir/progress.make b/build/CMakeFiles/all_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint_module.dir/build.make b/build/CMakeFiles/all_qmllint_module.dir/build.make new file mode 100644 index 0000000..830a063 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmllint_module. + +# Include any custom commands dependencies for this target. +include CMakeFiles/all_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/all_qmllint_module.dir/progress.make + +all_qmllint_module: CMakeFiles/all_qmllint_module.dir/build.make +.PHONY : all_qmllint_module + +# Rule to build all files generated by this target. +CMakeFiles/all_qmllint_module.dir/build: all_qmllint_module +.PHONY : CMakeFiles/all_qmllint_module.dir/build + +CMakeFiles/all_qmllint_module.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake +.PHONY : CMakeFiles/all_qmllint_module.dir/clean + +CMakeFiles/all_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/all_qmllint_module.dir/depend + diff --git a/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..b170335 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..5e6138d --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..17f8c78 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmllint_module. diff --git a/build/CMakeFiles/all_qmllint_module.dir/progress.make b/build/CMakeFiles/all_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/all_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake b/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/build.make b/build/CMakeFiles/all_qmltyperegistrations.dir/build.make new file mode 100644 index 0000000..f9234ca --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for all_qmltyperegistrations. + +# Include any custom commands dependencies for this target. +include CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/all_qmltyperegistrations.dir/progress.make + +all_qmltyperegistrations: CMakeFiles/all_qmltyperegistrations.dir/build.make +.PHONY : all_qmltyperegistrations + +# Rule to build all files generated by this target. +CMakeFiles/all_qmltyperegistrations.dir/build: all_qmltyperegistrations +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/build + +CMakeFiles/all_qmltyperegistrations.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/clean + +CMakeFiles/all_qmltyperegistrations.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/all_qmltyperegistrations.dir/depend + diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake new file mode 100644 index 0000000..83cfb80 --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/all_qmltyperegistrations.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make new file mode 100644 index 0000000..529926e --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for all_qmltyperegistrations. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts new file mode 100644 index 0000000..02603d9 --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for all_qmltyperegistrations. diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make b/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..8643cf6 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +89 diff --git a/build/Main/Bolt_DashApp_qml_module_dir_map.qrc b/build/Main/Bolt_DashApp_qml_module_dir_map.qrc new file mode 100644 index 0000000..3542844 --- /dev/null +++ b/build/Main/Bolt_DashApp_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/Main + + + diff --git a/build/Main/main.qml b/build/Main/main.qml new file mode 100644 index 0000000..14ce61a --- /dev/null +++ b/build/Main/main.qml @@ -0,0 +1,9 @@ +/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based +C++ project. */ + +import QtQuick +import content + +App { + visibility: "FullScreen" +} diff --git a/build/Main/qmldir b/build/Main/qmldir new file mode 100644 index 0000000..ecfe06b --- /dev/null +++ b/build/Main/qmldir @@ -0,0 +1,4 @@ +module Main +typeinfo Bolt_DashApp.qmltypes +prefer :/Main/ + diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..e1d085f --- /dev/null +++ b/build/Makefile @@ -0,0 +1,1042 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named Bolt_DashApp + +# Build rule for target. +Bolt_DashApp: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp +.PHONY : Bolt_DashApp + +# fast build rule for target. +Bolt_DashApp/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build +.PHONY : Bolt_DashApp/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmltyperegistration + +# Build rule for target. +Bolt_DashApp_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmltyperegistration +.PHONY : Bolt_DashApp_qmltyperegistration + +# fast build rule for target. +Bolt_DashApp_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build +.PHONY : Bolt_DashApp_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named all_qmltyperegistrations + +# Build rule for target. +all_qmltyperegistrations: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmltyperegistrations +.PHONY : all_qmltyperegistrations + +# fast build rule for target. +all_qmltyperegistrations/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/build +.PHONY : all_qmltyperegistrations/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint + +# Build rule for target. +Bolt_DashApp_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint +.PHONY : Bolt_DashApp_qmllint + +# fast build rule for target. +Bolt_DashApp_qmllint/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build +.PHONY : Bolt_DashApp_qmllint/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint_json + +# Build rule for target. +Bolt_DashApp_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_json +.PHONY : Bolt_DashApp_qmllint_json + +# fast build rule for target. +Bolt_DashApp_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build +.PHONY : Bolt_DashApp_qmllint_json/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmllint_module + +# Build rule for target. +Bolt_DashApp_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_module +.PHONY : Bolt_DashApp_qmllint_module + +# fast build rule for target. +Bolt_DashApp_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build +.PHONY : Bolt_DashApp_qmllint_module/fast + +#============================================================================= +# Target rules for targets named all_qmllint + +# Build rule for target. +all_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint +.PHONY : all_qmllint + +# fast build rule for target. +all_qmllint/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/build +.PHONY : all_qmllint/fast + +#============================================================================= +# Target rules for targets named all_qmllint_json + +# Build rule for target. +all_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_json +.PHONY : all_qmllint_json + +# fast build rule for target. +all_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/build +.PHONY : all_qmllint_json/fast + +#============================================================================= +# Target rules for targets named all_qmllint_module + +# Build rule for target. +all_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_module +.PHONY : all_qmllint_module + +# fast build rule for target. +all_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/build +.PHONY : all_qmllint_module/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_tooling + +# Build rule for target. +Bolt_DashApp_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_tooling +.PHONY : Bolt_DashApp_tooling + +# fast build rule for target. +Bolt_DashApp_tooling/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build +.PHONY : Bolt_DashApp_tooling/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_qmlimportscan + +# Build rule for target. +Bolt_DashApp_qmlimportscan: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmlimportscan +.PHONY : Bolt_DashApp_qmlimportscan + +# fast build rule for target. +Bolt_DashApp_qmlimportscan/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build +.PHONY : Bolt_DashApp_qmlimportscan/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_autogen_timestamp_deps + +# Build rule for target. +Bolt_DashApp_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen_timestamp_deps +.PHONY : Bolt_DashApp_autogen_timestamp_deps + +# fast build rule for target. +Bolt_DashApp_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build +.PHONY : Bolt_DashApp_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named Bolt_DashApp_autogen + +# Build rule for target. +Bolt_DashApp_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen +.PHONY : Bolt_DashApp_autogen + +# fast build rule for target. +Bolt_DashApp_autogen/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build +.PHONY : Bolt_DashApp_autogen/fast + +#============================================================================= +# Target rules for targets named content + +# Build rule for target. +content: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content +.PHONY : content + +# fast build rule for target. +content/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build +.PHONY : content/fast + +#============================================================================= +# Target rules for targets named content_qmltyperegistration + +# Build rule for target. +content_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmltyperegistration +.PHONY : content_qmltyperegistration + +# fast build rule for target. +content_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build +.PHONY : content_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named content_resources_1 + +# Build rule for target. +content_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_1 +.PHONY : content_resources_1 + +# fast build rule for target. +content_resources_1/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build +.PHONY : content_resources_1/fast + +#============================================================================= +# Target rules for targets named contentplugin + +# Build rule for target. +contentplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin +.PHONY : contentplugin + +# fast build rule for target. +contentplugin/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build +.PHONY : contentplugin/fast + +#============================================================================= +# Target rules for targets named content_qmllint + +# Build rule for target. +content_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint +.PHONY : content_qmllint + +# fast build rule for target. +content_qmllint/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build +.PHONY : content_qmllint/fast + +#============================================================================= +# Target rules for targets named content_qmllint_json + +# Build rule for target. +content_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_json +.PHONY : content_qmllint_json + +# fast build rule for target. +content_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build +.PHONY : content_qmllint_json/fast + +#============================================================================= +# Target rules for targets named content_qmllint_module + +# Build rule for target. +content_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_module +.PHONY : content_qmllint_module + +# fast build rule for target. +content_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build +.PHONY : content_qmllint_module/fast + +#============================================================================= +# Target rules for targets named content_tooling + +# Build rule for target. +content_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_tooling +.PHONY : content_tooling + +# fast build rule for target. +content_tooling/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build +.PHONY : content_tooling/fast + +#============================================================================= +# Target rules for targets named content_resources_2 + +# Build rule for target. +content_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_2 +.PHONY : content_resources_2 + +# fast build rule for target. +content_resources_2/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build +.PHONY : content_resources_2/fast + +#============================================================================= +# Target rules for targets named contentplugin_init + +# Build rule for target. +contentplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init +.PHONY : contentplugin_init + +# fast build rule for target. +contentplugin_init/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build +.PHONY : contentplugin_init/fast + +#============================================================================= +# Target rules for targets named content_autogen_timestamp_deps + +# Build rule for target. +content_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen_timestamp_deps +.PHONY : content_autogen_timestamp_deps + +# fast build rule for target. +content_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build +.PHONY : content_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named content_autogen + +# Build rule for target. +content_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen +.PHONY : content_autogen + +# fast build rule for target. +content_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build +.PHONY : content_autogen/fast + +#============================================================================= +# Target rules for targets named contentplugin_autogen_timestamp_deps + +# Build rule for target. +contentplugin_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen_timestamp_deps +.PHONY : contentplugin_autogen_timestamp_deps + +# fast build rule for target. +contentplugin_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build +.PHONY : contentplugin_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named contentplugin_autogen + +# Build rule for target. +contentplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen +.PHONY : contentplugin_autogen + +# fast build rule for target. +contentplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build +.PHONY : contentplugin_autogen/fast + +#============================================================================= +# Target rules for targets named contentplugin_init_autogen_timestamp_deps + +# Build rule for target. +contentplugin_init_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen_timestamp_deps +.PHONY : contentplugin_init_autogen_timestamp_deps + +# fast build rule for target. +contentplugin_init_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build +.PHONY : contentplugin_init_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named contentplugin_init_autogen + +# Build rule for target. +contentplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen +.PHONY : contentplugin_init_autogen + +# fast build rule for target. +contentplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build +.PHONY : contentplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash + +# Build rule for target. +Bolt_Dash: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash +.PHONY : Bolt_Dash + +# fast build rule for target. +Bolt_Dash/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build +.PHONY : Bolt_Dash/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmltyperegistration + +# Build rule for target. +Bolt_Dash_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmltyperegistration +.PHONY : Bolt_Dash_qmltyperegistration + +# fast build rule for target. +Bolt_Dash_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build +.PHONY : Bolt_Dash_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_resources_1 + +# Build rule for target. +Bolt_Dash_resources_1: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_1 +.PHONY : Bolt_Dash_resources_1 + +# fast build rule for target. +Bolt_Dash_resources_1/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build +.PHONY : Bolt_Dash_resources_1/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin + +# Build rule for target. +Bolt_Dashplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin +.PHONY : Bolt_Dashplugin + +# fast build rule for target. +Bolt_Dashplugin/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build +.PHONY : Bolt_Dashplugin/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint + +# Build rule for target. +Bolt_Dash_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint +.PHONY : Bolt_Dash_qmllint + +# fast build rule for target. +Bolt_Dash_qmllint/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build +.PHONY : Bolt_Dash_qmllint/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint_json + +# Build rule for target. +Bolt_Dash_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_json +.PHONY : Bolt_Dash_qmllint_json + +# fast build rule for target. +Bolt_Dash_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build +.PHONY : Bolt_Dash_qmllint_json/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_qmllint_module + +# Build rule for target. +Bolt_Dash_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_module +.PHONY : Bolt_Dash_qmllint_module + +# fast build rule for target. +Bolt_Dash_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build +.PHONY : Bolt_Dash_qmllint_module/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_tooling + +# Build rule for target. +Bolt_Dash_tooling: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_tooling +.PHONY : Bolt_Dash_tooling + +# fast build rule for target. +Bolt_Dash_tooling/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build +.PHONY : Bolt_Dash_tooling/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_resources_2 + +# Build rule for target. +Bolt_Dash_resources_2: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_2 +.PHONY : Bolt_Dash_resources_2 + +# fast build rule for target. +Bolt_Dash_resources_2/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build +.PHONY : Bolt_Dash_resources_2/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_init + +# Build rule for target. +Bolt_Dashplugin_init: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init +.PHONY : Bolt_Dashplugin_init + +# fast build rule for target. +Bolt_Dashplugin_init/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build +.PHONY : Bolt_Dashplugin_init/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_autogen_timestamp_deps + +# Build rule for target. +Bolt_Dash_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen_timestamp_deps +.PHONY : Bolt_Dash_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dash_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dash_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named Bolt_Dash_autogen + +# Build rule for target. +Bolt_Dash_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen +.PHONY : Bolt_Dash_autogen + +# fast build rule for target. +Bolt_Dash_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build +.PHONY : Bolt_Dash_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_autogen_timestamp_deps + +# Build rule for target. +Bolt_Dashplugin_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen_timestamp_deps +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dashplugin_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_autogen + +# Build rule for target. +Bolt_Dashplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen +.PHONY : Bolt_Dashplugin_autogen + +# fast build rule for target. +Bolt_Dashplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build +.PHONY : Bolt_Dashplugin_autogen/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_init_autogen_timestamp_deps + +# Build rule for target. +Bolt_Dashplugin_init_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen_timestamp_deps +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dashplugin_init_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named Bolt_Dashplugin_init_autogen + +# Build rule for target. +Bolt_Dashplugin_init_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen +.PHONY : Bolt_Dashplugin_init_autogen + +# fast build rule for target. +Bolt_Dashplugin_init_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build +.PHONY : Bolt_Dashplugin_init_autogen/fast + +#============================================================================= +# Target rules for targets named IO + +# Build rule for target. +IO: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO +.PHONY : IO + +# fast build rule for target. +IO/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build +.PHONY : IO/fast + +#============================================================================= +# Target rules for targets named IOPlugin + +# Build rule for target. +IOPlugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin +.PHONY : IOPlugin + +# fast build rule for target. +IOPlugin/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build +.PHONY : IOPlugin/fast + +#============================================================================= +# Target rules for targets named IOPlugin_qmltyperegistration + +# Build rule for target. +IOPlugin_qmltyperegistration: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmltyperegistration +.PHONY : IOPlugin_qmltyperegistration + +# fast build rule for target. +IOPlugin_qmltyperegistration/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build +.PHONY : IOPlugin_qmltyperegistration/fast + +#============================================================================= +# Target rules for targets named IOPluginplugin + +# Build rule for target. +IOPluginplugin: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin +.PHONY : IOPluginplugin + +# fast build rule for target. +IOPluginplugin/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build +.PHONY : IOPluginplugin/fast + +#============================================================================= +# Target rules for targets named qt_internal_plugins + +# Build rule for target. +qt_internal_plugins: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qt_internal_plugins +.PHONY : qt_internal_plugins + +# fast build rule for target. +qt_internal_plugins/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build +.PHONY : qt_internal_plugins/fast + +#============================================================================= +# Target rules for targets named IOPlugin_qmllint + +# Build rule for target. +IOPlugin_qmllint: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint +.PHONY : IOPlugin_qmllint + +# fast build rule for target. +IOPlugin_qmllint/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build +.PHONY : IOPlugin_qmllint/fast + +#============================================================================= +# Target rules for targets named IOPlugin_qmllint_json + +# Build rule for target. +IOPlugin_qmllint_json: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint_json +.PHONY : IOPlugin_qmllint_json + +# fast build rule for target. +IOPlugin_qmllint_json/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build +.PHONY : IOPlugin_qmllint_json/fast + +#============================================================================= +# Target rules for targets named IOPlugin_qmllint_module + +# Build rule for target. +IOPlugin_qmllint_module: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint_module +.PHONY : IOPlugin_qmllint_module + +# fast build rule for target. +IOPlugin_qmllint_module/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build +.PHONY : IOPlugin_qmllint_module/fast + +#============================================================================= +# Target rules for targets named IO_autogen_timestamp_deps + +# Build rule for target. +IO_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO_autogen_timestamp_deps +.PHONY : IO_autogen_timestamp_deps + +# fast build rule for target. +IO_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build +.PHONY : IO_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named IO_autogen + +# Build rule for target. +IO_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO_autogen +.PHONY : IO_autogen + +# fast build rule for target. +IO_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build +.PHONY : IO_autogen/fast + +#============================================================================= +# Target rules for targets named IOPlugin_autogen_timestamp_deps + +# Build rule for target. +IOPlugin_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_autogen_timestamp_deps +.PHONY : IOPlugin_autogen_timestamp_deps + +# fast build rule for target. +IOPlugin_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build +.PHONY : IOPlugin_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named IOPlugin_autogen + +# Build rule for target. +IOPlugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_autogen +.PHONY : IOPlugin_autogen + +# fast build rule for target. +IOPlugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build +.PHONY : IOPlugin_autogen/fast + +#============================================================================= +# Target rules for targets named IOPluginplugin_autogen_timestamp_deps + +# Build rule for target. +IOPluginplugin_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin_autogen_timestamp_deps +.PHONY : IOPluginplugin_autogen_timestamp_deps + +# fast build rule for target. +IOPluginplugin_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build +.PHONY : IOPluginplugin_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named IOPluginplugin_autogen + +# Build rule for target. +IOPluginplugin_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin_autogen +.PHONY : IOPluginplugin_autogen + +# fast build rule for target. +IOPluginplugin_autogen/fast: + $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build +.PHONY : IOPluginplugin_autogen/fast + +Bolt_DashApp_autogen/mocs_compilation.o: Bolt_DashApp_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_DashApp_autogen/mocs_compilation.o + +# target to build an object file +Bolt_DashApp_autogen/mocs_compilation.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.o + +Bolt_DashApp_autogen/mocs_compilation.i: Bolt_DashApp_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_DashApp_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_DashApp_autogen/mocs_compilation.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.i + +Bolt_DashApp_autogen/mocs_compilation.s: Bolt_DashApp_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_DashApp_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_DashApp_autogen/mocs_compilation.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... Bolt_DashApp_autogen" + @echo "... Bolt_DashApp_autogen_timestamp_deps" + @echo "... Bolt_DashApp_qmlimportscan" + @echo "... Bolt_DashApp_qmllint" + @echo "... Bolt_DashApp_qmllint_json" + @echo "... Bolt_DashApp_qmllint_module" + @echo "... Bolt_DashApp_qmltyperegistration" + @echo "... Bolt_Dash_autogen" + @echo "... Bolt_Dash_autogen_timestamp_deps" + @echo "... Bolt_Dash_qmllint" + @echo "... Bolt_Dash_qmllint_json" + @echo "... Bolt_Dash_qmllint_module" + @echo "... Bolt_Dash_qmltyperegistration" + @echo "... Bolt_Dashplugin_autogen" + @echo "... Bolt_Dashplugin_autogen_timestamp_deps" + @echo "... Bolt_Dashplugin_init_autogen" + @echo "... Bolt_Dashplugin_init_autogen_timestamp_deps" + @echo "... IOPlugin_autogen" + @echo "... IOPlugin_autogen_timestamp_deps" + @echo "... IOPlugin_qmllint" + @echo "... IOPlugin_qmllint_json" + @echo "... IOPlugin_qmllint_module" + @echo "... IOPlugin_qmltyperegistration" + @echo "... IOPluginplugin_autogen" + @echo "... IOPluginplugin_autogen_timestamp_deps" + @echo "... IO_autogen" + @echo "... IO_autogen_timestamp_deps" + @echo "... all_qmllint" + @echo "... all_qmllint_json" + @echo "... all_qmllint_module" + @echo "... all_qmltyperegistrations" + @echo "... content_autogen" + @echo "... content_autogen_timestamp_deps" + @echo "... content_qmllint" + @echo "... content_qmllint_json" + @echo "... content_qmllint_module" + @echo "... content_qmltyperegistration" + @echo "... contentplugin_autogen" + @echo "... contentplugin_autogen_timestamp_deps" + @echo "... contentplugin_init_autogen" + @echo "... contentplugin_init_autogen_timestamp_deps" + @echo "... qt_internal_plugins" + @echo "... Bolt_Dash" + @echo "... Bolt_DashApp" + @echo "... Bolt_DashApp_tooling" + @echo "... Bolt_Dash_resources_1" + @echo "... Bolt_Dash_resources_2" + @echo "... Bolt_Dash_tooling" + @echo "... Bolt_Dashplugin" + @echo "... Bolt_Dashplugin_init" + @echo "... IO" + @echo "... IOPlugin" + @echo "... IOPluginplugin" + @echo "... content" + @echo "... content_resources_1" + @echo "... content_resources_2" + @echo "... content_tooling" + @echo "... contentplugin" + @echo "... contentplugin_init" + @echo "... Bolt_DashApp_autogen/mocs_compilation.o" + @echo "... Bolt_DashApp_autogen/mocs_compilation.i" + @echo "... Bolt_DashApp_autogen/mocs_compilation.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..91da968 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/content/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + execute_process(COMMAND /Users/mason/anaconda3/bin/install_name_tool + -delete_rpath "/opt/homebrew/lib" + -delete_rpath "/Users/mason/Documents/Code/dash-cpp/build/imports/IO" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/strip" -u -r "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..7a8f925 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,332 @@ +[ +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", + "output": "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "output": "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "output": "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "output": "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "output": "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "output": "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "output": "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", + "output": "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "output": "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/io.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", + "output": "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "output": "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", + "output": "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" +}, +{ + "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", + "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", + "output": "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" +} +] \ No newline at end of file diff --git a/build/content/.rcc/content_raw_qml_0.qrc b/build/content/.rcc/content_raw_qml_0.qrc new file mode 100644 index 0000000..61ed5c8 --- /dev/null +++ b/build/content/.rcc/content_raw_qml_0.qrc @@ -0,0 +1,37 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg + + + diff --git a/build/content/.rcc/qmake_content.qrc b/build/content/.rcc/qmake_content.qrc new file mode 100644 index 0000000..76ab287 --- /dev/null +++ b/build/content/.rcc/qmake_content.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/content/qmldir + + + diff --git a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp new file mode 100644 index 0000000..dc9405e --- /dev/null +++ b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp @@ -0,0 +1,25 @@ +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +/content/App.qml +/content/Screen01.ui.qml +/content/Speedometer.qml +/content/BatterySlider.qml +/content/TempSlider.qml +/content/Debug1.qml +/content/BoltLeanAngle.qml +/content/BikeStatus.qml +/content/BatteryReadout.qml +/content/FullBatterySlider.qml +/content/TemperatureIsland.qml +/content/FullSlider.qml +/content/BMSFaultDetails.qml +/content/DebugItem1.ui.qml +/content/FaultMotorStatus.qml +/content/SpeedometerDecorations.qml +/content/DebugMain.qml +/content/DebugMotor.qml +/content/DebugOverview.qml +/content/DebugBMS.qml +/content/DebugPDU.qml diff --git a/build/content/.rcc/qmllint/content.rsp b/build/content/.rcc/qmllint/content.rsp new file mode 100644 index 0000000..c9fd69f --- /dev/null +++ b/build/content/.rcc/qmllint/content.rsp @@ -0,0 +1,30 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml diff --git a/build/content/.rcc/qmllint/content_json.rsp b/build/content/.rcc/qmllint/content_json.rsp new file mode 100644 index 0000000..2dd1bda --- /dev/null +++ b/build/content/.rcc/qmllint/content_json.rsp @@ -0,0 +1,32 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/content_qmllint.json diff --git a/build/content/.rcc/qmllint/content_module.rsp b/build/content/.rcc/qmllint/content_module.rsp new file mode 100644 index 0000000..98780e9 --- /dev/null +++ b/build/content/.rcc/qmllint/content_module.rsp @@ -0,0 +1,10 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc +--module +content diff --git a/build/content/.rcc/qrc_content_raw_qml_0_init.cpp b/build/content/.rcc/qrc_content_raw_qml_0_init.cpp new file mode 100644 index 0000000..1158b1d --- /dev/null +++ b/build/content/.rcc/qrc_content_raw_qml_0_init.cpp @@ -0,0 +1,14 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: BSD-3-Clause + +// This file was generated by the qt_add_resources command. + +#include + +QT_DECLARE_EXTERN_RESOURCE(content_raw_qml_0) + +namespace { + struct resourceReferenceKeeper { + resourceReferenceKeeper() { QT_KEEP_RESOURCE(content_raw_qml_0); } + } resourceReferenceKeeperInstance; +} diff --git a/build/content/.rcc/qrc_qmake_content_init.cpp b/build/content/.rcc/qrc_qmake_content_init.cpp new file mode 100644 index 0000000..01316a4 --- /dev/null +++ b/build/content/.rcc/qrc_qmake_content_init.cpp @@ -0,0 +1,14 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: BSD-3-Clause + +// This file was generated by the qt_add_resources command. + +#include + +QT_DECLARE_EXTERN_RESOURCE(qmake_content) + +namespace { + struct resourceReferenceKeeper { + resourceReferenceKeeper() { QT_KEEP_RESOURCE(qmake_content); } + } resourceReferenceKeeperInstance; +} diff --git a/build/content/App.qml b/build/content/App.qml new file mode 100644 index 0000000..29035cc --- /dev/null +++ b/build/content/App.qml @@ -0,0 +1,44 @@ +// Copyright (C) 2021 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import Bolt_Dash +import IO + +Window { + width: mainScreen.width + height: mainScreen.height + property bool debugMode: true + + + visible: true + title: "Bolt_Dash" + + Screen01 { + id: mainScreen + visible: !debugMode + } + + Debug1 { + id: debug + visible: debugMode + } + + IO { + id: io + + onButtonTapped: { + debugMode = !debugMode + } + } + + Rectangle { + visible: true + color: "transparent" + border.color: "red" + border.width: 1 + height: Constants.height + width: Constants.width + } +} + diff --git a/build/content/BMSFaultDetails.qml b/build/content/BMSFaultDetails.qml new file mode 100644 index 0000000..0a72595 --- /dev/null +++ b/build/content/BMSFaultDetails.qml @@ -0,0 +1,93 @@ +import QtQuick 2.15 +import QtQuick.Controls +import QtQuick.Shapes + +Window{ + x: 0 + y: 0 + width: 400 + height: 400 + + Rectangle { + border.color: "black" + border.width: 2 + width: 350 + height: 300 + x: 20 + y: 5 + ScrollView { + x: 5 + y: 5 + width: parent.width - 10 + height: parent.height - 10 + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + ScrollBar.vertical.policy: ScrollBar.AlwaysOn + ScrollBar.horizontal.interactive: false + ScrollBar.vertical.interactive: true + Column { + Repeater { + model: getBMSWarnings() + Text { + required property string modelData + text: modelData + } + } + } + } + } + + Rectangle { + border.color: "black" + border.width: 2 + width: 350 + height: 85 + x: 20 + y: 310 + + Text { + x: 5 + y: 5 + width: parent.width - 10 + text: "Clear BMS Fault Codes?" + horizontalAlignment: Text.AlignHCenter + font.bold: true + font.italic: true + } + + Row { + x: 10 + y: 25 + width: parent.width - 20 + spacing: 10 + Button { + width: parent.width / 2 - 5 + text: "Yes" + + Rectangle { + width: parent.width + height: parent.height + color: "grey" + } + } + + Button { + width: parent.width / 2 - 5 + text: "No" + + Rectangle { + width: parent.width + height: parent.height + color: "grey" + } + } + } + } + + function getBMSWarnings() { + var myText = [] + for (var i = 0; i < backend.bmsErrorCodesString.length; i++) { + myText.push(backend.bmsErrorCodesString[i]) + } + return myText + } +} \ No newline at end of file diff --git a/build/content/BatteryReadout.qml b/build/content/BatteryReadout.qml new file mode 100644 index 0000000..13b8910 --- /dev/null +++ b/build/content/BatteryReadout.qml @@ -0,0 +1,87 @@ +import QtQuick +import QtQuick.Shapes + +Item { + readonly property int batteryBorder: 5 + readonly property string red: "#e80c0c" + readonly property string green: "#54c45e" + property int soc + property double voltage + + Rectangle { + radius: 15 + width: 175 + height: 125 + color: "black" + + Image { + x: 15 + y: 15 + id: batterySVG + source: "Pictures/battery.svg" + sourceSize.width: 150 + sourceSize.height: 75 + rotation: 270 + transformOrigin: Item.Center + + Rectangle { + x: batteryBorder + y: batteryBorder + color: "transparent" + width: parent.sourceSize.width - batteryBorder * 2 - 16 + height: parent.sourceSize.height - batteryBorder * 2 + + Rectangle { + radius: 8 + width: parent.width + height: parent.height + color: "black" + } + + Rectangle { + radius: 8 + width: soc/100 * parent.width + height: parent.height + color: soc < 20 ? red : green + } + } + } + + Text { + id: percentLabel + x: batterySVG.x + batterySVG.width - 37 + y: parent.height/2 - 2*height/3 + horizontalAlignment: Text.AlignHLeft + verticalAlignment: Text.AlignBottom + color: "white" + text: qsTr("%1\%").arg(soc) + font.pixelSize: 60 + } + + Shape { + ShapePath { + id: coolLine + strokeColor: "white" + strokeWidth: 4 + fillColor: "transparent" + // strokeStyle: ShapePath.DashLine + dashPattern: [ 1, 4 ] + startX: percentLabel.x + startY: percentLabel.y+percentLabel.height - 10 + PathLine { x: coolLine.startX + 140; y: coolLine.startY } + } + } + + // Voltage Text + Text { + id: voltageText + x: percentLabel.x + batteryBorder + y: batterySVG.y + batterySVG.height - height/2 + batteryBorder + text: qsTr("%1V").arg(voltage) + color: "white" + font.pixelSize: 20 + font.italic: true + } + } + +} diff --git a/build/content/BatterySlider.qml b/build/content/BatterySlider.qml new file mode 100644 index 0000000..458af7e --- /dev/null +++ b/build/content/BatterySlider.qml @@ -0,0 +1,41 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import Bolt_Dash + +Item { + width: 60 + height: 350 + readonly property string red: "#e80c0c" + readonly property string green: "#09bd0f" + property double fullness: 0.5; + + function integerToHex(num){ + let hexString = Math.floor(num).toString(16); + if (hexString.length === 1){ + hexString = "0" + hexString; + } + return hexString; + } + + Rectangle { + id: enclosing + radius: 15 + x: 0 + y: 0 + width: 60 + height: 350 + border.width: 3 + color: `#${integerToHex(254 - (fullness * 245))}${integerToHex(12+(fullness*177))}${integerToHex(13+(fullness*-2))}`; + } + + Rectangle { + id: level + radius: 15 + x: 0 + y: 0 + width: 60 + height: 350-(350*fullness) + color: "white" + border.width: 3 + } +} diff --git a/build/content/BikeStatus.qml b/build/content/BikeStatus.qml new file mode 100644 index 0000000..21a9d4d --- /dev/null +++ b/build/content/BikeStatus.qml @@ -0,0 +1,102 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Shapes +import QtQuick.Layouts + +Item { + readonly property color staticBG: "#5F5F5F" + readonly property string green: "#54c45e" + property list texts: ["STDBY", "ACC", "PREP", "IDLE", "DRIVE"] + property int status: BikeStatus.Status.STANDBY + + width: 800 + height: 40 + id: root + + enum Status { + STANDBY, + ACCESSORY, + CHECKING, + READY, + DRIVE, + FAULT + } + + Rectangle { + visible: false + id: rect + anchors.centerIn: parent + width: parent.width + height: parent.height + radius: 15 + color: { + switch(status) { + case BikeStatus.Status.STANDBY: + case BikeStatus.Status.ACCESSORY: + case BikeStatus.Status.CHECKING: + case BikeStatus.Status.READY: + return staticBG + case BikeStatus.Status.FAULT: + return "red" + case BikeStatus.Status.DRIVE: + return green + } + } + + Text { + anchors.centerIn: parent + text: { + switch (status) { + case BikeStatus.Status.STANDBY: + return "STANDBY" + case BikeStatus.Status.ACCESSORY: + return "ACC" + case BikeStatus.Status.CHECKING: + return "WAITING" + case BikeStatus.Status.FAULT: + return "FAULT" + case BikeStatus.Status.READY: + return "READY" + case BikeStatus.Status.DRIVE: + return "DRIVE" + } + } + color: "white" + font.bold: true + font.pixelSize: 0.75*parent.height + } + } + + Rectangle { + height: parent.height + width: parent.width + color: "white" + + GridLayout { + id: grid + columns: 5 + x: 0 + y: columnSpacing + height: parent.height + width: parent.width + columnSpacing: 2 + + Repeater { + model: 5 + Rectangle { + required property int index + color: root.status === index ? (root.status === BikeStatus.Status.DRIVE ? root.green : "white") : "black" + Layout.preferredWidth: parent.width / parent.columns - parent.columnSpacing + height: parent.height + Text { + anchors.centerIn: parent + text: root.texts[index] + color: root.status == index ? "black": "white" + font.bold: true + font.pixelSize: 25 + } + } + } + } + } +} diff --git a/build/content/BoltLeanAngle.qml b/build/content/BoltLeanAngle.qml new file mode 100644 index 0000000..99ba38e --- /dev/null +++ b/build/content/BoltLeanAngle.qml @@ -0,0 +1,30 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +// import QtQuick.Studio.Components +import QtCharts +import QtQuick.Shapes + +Item { + property int ang: 60 + width: 500 + height: 500 + Image { + id: image + x: -(295/2) + y: 20 + width: 295 + height: 164 + source: "Pictures/leanAngleBack.png" + fillMode: Image.PreserveAspectFit + } + + Rectangle { + id: correctDial + width: 5 + height: 150 + x: -width/2 + y: 60 + transformOrigin: Item.Bottom + rotation: ang + } +} diff --git a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..05e27f5 --- /dev/null +++ b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/content/CMakeFiles/content.dir/DependInfo.cmake b/build/content/CMakeFiles/content.dir/DependInfo.cmake new file mode 100644 index 0000000..d18f317 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/DependInfo.cmake @@ -0,0 +1,54 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp" "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp" "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content.dir/build.make b/build/content/CMakeFiles/content.dir/build.make new file mode 100644 index 0000000..5e19243 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/build.make @@ -0,0 +1,829 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content.dir/flags.make + +content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + +content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt +content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes + +content/content.qmltypes: content/content_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate content/content.qmltypes + +content/.rcc/qrc_qmake_content.cpp: content/qmldir +content/.rcc/qrc_qmake_content.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qrc_qmake_content.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp --name qmake_content /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc + +content/.rcc/qmlcache/content_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmlcache/content_qml_loader_file_list.rsp +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/content_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/content_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_content -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp + +content/.rcc/qmlcache/content_App_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_App_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_App_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_App_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/content_App_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/App.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/content_Screen01.ui_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Screen01.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + +content/.rcc/qmlcache/content_Speedometer_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_Speedometer_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/content_Speedometer_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Speedometer.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/content_BatterySlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + +content/.rcc/qmlcache/content_TempSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_TempSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/content_TempSlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TempSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + +content/.rcc/qmlcache/content_Debug1_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_Debug1_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +content/.rcc/qmlcache/content_Debug1_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_Debug1_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_Debug1_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_Debug1_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/content_Debug1_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Debug1.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml + +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/content_BoltLeanAngle_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BoltLeanAngle.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml + +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/content_BikeStatus_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BikeStatus.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml + +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/content_BatteryReadout_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatteryReadout.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml + +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/content_FullBatterySlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FullBatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml + +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/content_TemperatureIsland_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TemperatureIsland.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml + +content/.rcc/qmlcache/content_FullSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_FullSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/content_FullSlider_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FullSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml + +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/content_BMSFaultDetails_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BMSFaultDetails.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml + +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/content_DebugItem1.ui_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugItem1.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml + +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/content_FaultMotorStatus_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FaultMotorStatus.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml + +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/SpeedometerDecorations.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml + +content/.rcc/qmlcache/content_DebugMain_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugMain_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/content_DebugMain_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugMain.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml + +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/content_DebugMotor_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugMotor.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml + +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/content_DebugOverview_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugOverview.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml + +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/content_DebugBMS_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugBMS.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml + +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/.rcc/qmake_content.qrc +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/content.qmltypes +content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/content_DebugPDU_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugPDU.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml + +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg +content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg +content/.rcc/qrc_content_raw_qml_0.cpp: content/.rcc/content_raw_qml_0.qrc +content/.rcc/qrc_content_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Running rcc for resource content_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp --name content_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc + +content/meta_types/content_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +content/meta_types/content_json_file_list.txt: content/content_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Running AUTOMOC file extraction for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include + +content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Generating meta_types/qt6content_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/content_autogen/mocs_compilation.cpp +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp > CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -MF CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp > CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i + +content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s + +content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/.rcc/qrc_qmake_content.cpp +content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -MF CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp + +content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp > CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i + +content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/.rcc/qmlcache/content_qmlcache_loader.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/.rcc/qmlcache/content_App_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/.rcc/qmlcache/content_Speedometer_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_BatterySlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/.rcc/qmlcache/content_TempSlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/.rcc/qmlcache/content_Debug1_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/.rcc/qmlcache/content_BikeStatus_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/.rcc/qmlcache/content_BatteryReadout_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/.rcc/qmlcache/content_FullSlider_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/.rcc/qmlcache/content_DebugMain_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/.rcc/qmlcache/content_DebugMotor_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/.rcc/qmlcache/content_DebugOverview_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/.rcc/qmlcache/content_DebugBMS_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/.rcc/qmlcache/content_DebugPDU_qml.cpp +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_53) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i + +content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s + +content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content.dir/flags.make +content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/.rcc/qrc_content_raw_qml_0.cpp +content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_54) "Building CXX object content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -MF CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp + +content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp > CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i + +content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s + +# Object files for target content +content_OBJECTS = \ +"CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" \ +"CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + +# External object files for target content +content_EXTERNAL_OBJECTS = + +content/libcontent.a: content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o +content/libcontent.a: content/CMakeFiles/content.dir/build.make +content/libcontent.a: content/CMakeFiles/content.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_55) "Linking CXX static library libcontent.a" + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/content.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +content/CMakeFiles/content.dir/build: content/libcontent.a +.PHONY : content/CMakeFiles/content.dir/build + +content/CMakeFiles/content.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content.dir/clean + +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_App_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatteryReadout_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatterySlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BikeStatus_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Debug1_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugBMS_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugMain_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugMotor_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugOverview_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugPDU_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FullSlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Speedometer_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TempSlider_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_qmlcache_loader.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qrc_content_raw_qml_0.cpp +content/CMakeFiles/content.dir/depend: content/.rcc/qrc_qmake_content.cpp +content/CMakeFiles/content.dir/depend: content/content.qmltypes +content/CMakeFiles/content.dir/depend: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content.dir/depend: content/meta_types/content_json_file_list.txt +content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json +content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json.gen + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content.dir/depend + diff --git a/build/content/CMakeFiles/content.dir/cmake_clean.cmake b/build/content/CMakeFiles/content.dir/cmake_clean.cmake new file mode 100644 index 0000000..a353789 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/cmake_clean.cmake @@ -0,0 +1,94 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/content_App_qml.cpp" + ".rcc/qmlcache/content_BMSFaultDetails_qml.cpp" + ".rcc/qmlcache/content_BatteryReadout_qml.cpp" + ".rcc/qmlcache/content_BatterySlider_qml.cpp" + ".rcc/qmlcache/content_BikeStatus_qml.cpp" + ".rcc/qmlcache/content_BoltLeanAngle_qml.cpp" + ".rcc/qmlcache/content_Debug1_qml.cpp" + ".rcc/qmlcache/content_DebugBMS_qml.cpp" + ".rcc/qmlcache/content_DebugItem1.ui_qml.cpp" + ".rcc/qmlcache/content_DebugMain_qml.cpp" + ".rcc/qmlcache/content_DebugMotor_qml.cpp" + ".rcc/qmlcache/content_DebugOverview_qml.cpp" + ".rcc/qmlcache/content_DebugPDU_qml.cpp" + ".rcc/qmlcache/content_FaultMotorStatus_qml.cpp" + ".rcc/qmlcache/content_FullBatterySlider_qml.cpp" + ".rcc/qmlcache/content_FullSlider_qml.cpp" + ".rcc/qmlcache/content_Screen01.ui_qml.cpp" + ".rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" + ".rcc/qmlcache/content_Speedometer_qml.cpp" + ".rcc/qmlcache/content_TempSlider_qml.cpp" + ".rcc/qmlcache/content_TemperatureIsland_qml.cpp" + ".rcc/qmlcache/content_qmlcache_loader.cpp" + ".rcc/qrc_content_raw_qml_0.cpp" + ".rcc/qrc_qmake_content.cpp" + "CMakeFiles/content_autogen.dir/AutogenUsed.txt" + "CMakeFiles/content_autogen.dir/ParseCache.txt" + "content_autogen" + "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" + "CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" + "CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" + "CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" + "CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d" + "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" + "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" + "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" + "content.qmltypes" + "content_qmltyperegistrations.cpp" + "libcontent.a" + "libcontent.pdb" + "meta_types/content_json_file_list.txt" + "meta_types/content_json_file_list.txt.timestamp" + "meta_types/qt6content_debug_metatypes.json" + "meta_types/qt6content_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..8bbd60e --- /dev/null +++ b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libcontent.a" +) diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.make b/build/content/CMakeFiles/content.dir/compiler_depend.make new file mode 100644 index 0000000..5ebb3e6 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.ts b/build/content/CMakeFiles/content.dir/compiler_depend.ts new file mode 100644 index 0000000..b42d30e --- /dev/null +++ b/build/content/CMakeFiles/content.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content. diff --git a/build/content/CMakeFiles/content.dir/depend.make b/build/content/CMakeFiles/content.dir/depend.make new file mode 100644 index 0000000..41ab280 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/flags.make b/build/content/CMakeFiles/content.dir/flags.make new file mode 100644 index 0000000..99afbda --- /dev/null +++ b/build/content/CMakeFiles/content.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content.dir/link.txt b/build/content/CMakeFiles/content.dir/link.txt new file mode 100644 index 0000000..31d7b3a --- /dev/null +++ b/build/content/CMakeFiles/content.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libcontent.a CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libcontent.a diff --git a/build/content/CMakeFiles/content.dir/progress.make b/build/content/CMakeFiles/content.dir/progress.make new file mode 100644 index 0000000..5551618 --- /dev/null +++ b/build/content/CMakeFiles/content.dir/progress.make @@ -0,0 +1,56 @@ +CMAKE_PROGRESS_1 = 42 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 43 +CMAKE_PROGRESS_4 = 44 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 45 +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 46 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 47 +CMAKE_PROGRESS_11 = 48 +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = 49 +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 50 +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = 51 +CMAKE_PROGRESS_18 = 52 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = 53 +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = 54 +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = 55 +CMAKE_PROGRESS_25 = 56 +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = 57 +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = 58 +CMAKE_PROGRESS_30 = +CMAKE_PROGRESS_31 = 59 +CMAKE_PROGRESS_32 = 60 +CMAKE_PROGRESS_33 = +CMAKE_PROGRESS_34 = 61 +CMAKE_PROGRESS_35 = +CMAKE_PROGRESS_36 = 62 +CMAKE_PROGRESS_37 = +CMAKE_PROGRESS_38 = 63 +CMAKE_PROGRESS_39 = 64 +CMAKE_PROGRESS_40 = +CMAKE_PROGRESS_41 = 65 +CMAKE_PROGRESS_42 = +CMAKE_PROGRESS_43 = 66 +CMAKE_PROGRESS_44 = +CMAKE_PROGRESS_45 = 67 +CMAKE_PROGRESS_46 = 68 +CMAKE_PROGRESS_47 = +CMAKE_PROGRESS_48 = 69 +CMAKE_PROGRESS_49 = +CMAKE_PROGRESS_50 = 70 +CMAKE_PROGRESS_51 = +CMAKE_PROGRESS_52 = 71 +CMAKE_PROGRESS_53 = 72 +CMAKE_PROGRESS_54 = +CMAKE_PROGRESS_55 = 73 + diff --git a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..5032971 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json @@ -0,0 +1,161 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/deps", + "DEP_FILE_RULE_NAME" : "content_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..6a64ff6 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "content/content_autogen/timestamp" "custom" "content/content_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen.dir/build.make b/build/content/CMakeFiles/content_autogen.dir/build.make new file mode 100644 index 0000000..2821ab9 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_autogen.dir/progress.make + +content/CMakeFiles/content_autogen: content/content_autogen/timestamp + +content/content_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +content/content_autogen/timestamp: content/CMakeFiles/content_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp + +content_autogen: content/CMakeFiles/content_autogen +content_autogen: content/content_autogen/timestamp +content_autogen: content/CMakeFiles/content_autogen.dir/build.make +.PHONY : content_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/content_autogen.dir/build: content_autogen +.PHONY : content/CMakeFiles/content_autogen.dir/build + +content/CMakeFiles/content_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_autogen.dir/clean + +content/CMakeFiles/content_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_autogen.dir/depend + diff --git a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..6492842 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_autogen" + "content_autogen/mocs_compilation.cpp" + "content_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..6f50c80 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..d4a1a6a --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_autogen. diff --git a/build/content/CMakeFiles/content_autogen.dir/progress.make b/build/content/CMakeFiles/content_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..e823749 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make + +content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make +.PHONY : content_autogen_timestamp_deps + +# Rule to build all files generated by this target. +content/CMakeFiles/content_autogen_timestamp_deps.dir/build: content_autogen_timestamp_deps +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/build + +content/CMakeFiles/content_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/clean + +content/CMakeFiles/content_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/depend + diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..91409a6 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..4e02064 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..f634113 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint.dir/build.make b/build/content/CMakeFiles/content_qmllint.dir/build.make new file mode 100644 index 0000000..f6f84a9 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/build.make @@ -0,0 +1,109 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint.dir/progress.make + +content/CMakeFiles/content_qmllint: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +content/CMakeFiles/content_qmllint: content/.rcc/qmllint/content.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content.rsp + +content_qmllint: content/CMakeFiles/content_qmllint +content_qmllint: content/CMakeFiles/content_qmllint.dir/build.make +.PHONY : content_qmllint + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint.dir/build: content_qmllint +.PHONY : content/CMakeFiles/content_qmllint.dir/build + +content/CMakeFiles/content_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint.dir/clean + +content/CMakeFiles/content_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..7c52960 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..cd46e39 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..8e8f87e --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint. diff --git a/build/content/CMakeFiles/content_qmllint.dir/progress.make b/build/content/CMakeFiles/content_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/build.make b/build/content/CMakeFiles/content_qmllint_json.dir/build.make new file mode 100644 index 0000000..2d0bd73 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/build.make @@ -0,0 +1,109 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint_json. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint_json.dir/progress.make + +content/CMakeFiles/content_qmllint_json: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +content/CMakeFiles/content_qmllint_json: content/.rcc/qmllint/content_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_json.rsp + +content_qmllint_json: content/CMakeFiles/content_qmllint_json +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/build.make +.PHONY : content_qmllint_json + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint_json.dir/build: content_qmllint_json +.PHONY : content/CMakeFiles/content_qmllint_json.dir/build + +content/CMakeFiles/content_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean + +content/CMakeFiles/content_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint_json.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..3b5be7b --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..c249484 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..9a27907 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint_json. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/build.make b/build/content/CMakeFiles/content_qmllint_module.dir/build.make new file mode 100644 index 0000000..50a9921 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/build.make @@ -0,0 +1,109 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmllint_module. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmllint_module.dir/progress.make + +content/CMakeFiles/content_qmllint_module: /opt/homebrew/bin/qmllint +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml +content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml +content/CMakeFiles/content_qmllint_module: content/.rcc/qmllint/content_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_module.rsp + +content_qmllint_module: content/CMakeFiles/content_qmllint_module +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/build.make +.PHONY : content_qmllint_module + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmllint_module.dir/build: content_qmllint_module +.PHONY : content/CMakeFiles/content_qmllint_module.dir/build + +content/CMakeFiles/content_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean + +content/CMakeFiles/content_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmllint_module.dir/depend + diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..fc5cd8a --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..3894382 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..c701c55 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmllint_module. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..0346e81 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "content/content_autogen/timestamp" "custom" "content/content_autogen/deps" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..93f4fa2 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make @@ -0,0 +1,129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_qmltyperegistration.dir/progress.make + +content/CMakeFiles/content_qmltyperegistration: content/content_qmltyperegistrations.cpp +content/CMakeFiles/content_qmltyperegistration: content/content.qmltypes + +content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt +content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes + +content/content.qmltypes: content/content_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate content/content.qmltypes + +content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6content_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json + +content/meta_types/content_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +content/meta_types/content_json_file_list.txt: content/content_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include + +content/content_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +content/content_autogen/timestamp: content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target content" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp + +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration +content_qmltyperegistration: content/content.qmltypes +content_qmltyperegistration: content/content_autogen/timestamp +content_qmltyperegistration: content/content_qmltyperegistrations.cpp +content_qmltyperegistration: content/meta_types/content_json_file_list.txt +content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json +content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json.gen +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/build.make +.PHONY : content_qmltyperegistration + +# Rule to build all files generated by this target. +content/CMakeFiles/content_qmltyperegistration.dir/build: content_qmltyperegistration +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/build + +content/CMakeFiles/content_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean + +content/CMakeFiles/content_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/depend + diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..be70f8d --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_qmltyperegistration" + "content.qmltypes" + "content_autogen/mocs_compilation.cpp" + "content_autogen/timestamp" + "content_qmltyperegistrations.cpp" + "meta_types/content_json_file_list.txt" + "meta_types/content_json_file_list.txt.timestamp" + "meta_types/qt6content_debug_metatypes.json" + "meta_types/qt6content_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..bcc5759 --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..b5ac76f --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_qmltyperegistration. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..3a0be9c --- /dev/null +++ b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 74 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 75 +CMAKE_PROGRESS_4 = 76 +CMAKE_PROGRESS_5 = + diff --git a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..0b5146f --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" "gcc" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_1.dir/build.make b/build/content/CMakeFiles/content_resources_1.dir/build.make new file mode 100644 index 0000000..6f4eccf --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content_resources_1.dir/flags.make + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/CMakeFiles/content_resources_1.dir/flags.make +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/.rcc/qrc_qmake_content_init.cpp +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/CMakeFiles/content_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -MF CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp > CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i + +content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s + +content_resources_1: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o +content_resources_1: content/CMakeFiles/content_resources_1.dir/build.make +.PHONY : content_resources_1 + +# Rule to build all files generated by this target. +content/CMakeFiles/content_resources_1.dir/build: content_resources_1 +.PHONY : content/CMakeFiles/content_resources_1.dir/build + +content/CMakeFiles/content_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_1.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_resources_1.dir/clean + +content/CMakeFiles/content_resources_1.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_resources_1.dir/depend + diff --git a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..0f94e22 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" + "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..80fcb9a --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..a8149ac --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content_resources_1. diff --git a/build/content/CMakeFiles/content_resources_1.dir/depend.make b/build/content/CMakeFiles/content_resources_1.dir/depend.make new file mode 100644 index 0000000..ec5b3e6 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/flags.make b/build/content/CMakeFiles/content_resources_1.dir/flags.make new file mode 100644 index 0000000..d15771f --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content_resources_1.dir/progress.make b/build/content/CMakeFiles/content_resources_1.dir/progress.make new file mode 100644 index 0000000..079e09c --- /dev/null +++ b/build/content/CMakeFiles/content_resources_1.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 77 + diff --git a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..c8cee21 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" "gcc" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_2.dir/build.make b/build/content/CMakeFiles/content_resources_2.dir/build.make new file mode 100644 index 0000000..928d83c --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/content_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/content_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/content_resources_2.dir/flags.make + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/CMakeFiles/content_resources_2.dir/flags.make +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/.rcc/qrc_content_raw_qml_0_init.cpp +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/CMakeFiles/content_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -MF CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp > CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i + +content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s + +content_resources_2: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o +content_resources_2: content/CMakeFiles/content_resources_2.dir/build.make +.PHONY : content_resources_2 + +# Rule to build all files generated by this target. +content/CMakeFiles/content_resources_2.dir/build: content_resources_2 +.PHONY : content/CMakeFiles/content_resources_2.dir/build + +content/CMakeFiles/content_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_2.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_resources_2.dir/clean + +content/CMakeFiles/content_resources_2.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_resources_2.dir/depend + diff --git a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..1c4e4fa --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" + "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/content_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..7345f77 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for content_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..a266955 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for content_resources_2. diff --git a/build/content/CMakeFiles/content_resources_2.dir/depend.make b/build/content/CMakeFiles/content_resources_2.dir/depend.make new file mode 100644 index 0000000..b11eccc --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for content_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/flags.make b/build/content/CMakeFiles/content_resources_2.dir/flags.make new file mode 100644 index 0000000..d15771f --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/content_resources_2.dir/progress.make b/build/content/CMakeFiles/content_resources_2.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/content/CMakeFiles/content_resources_2.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_tooling.dir/build.make b/build/content/CMakeFiles/content_tooling.dir/build.make new file mode 100644 index 0000000..cf6621f --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/build.make @@ -0,0 +1,243 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for content_tooling. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/content_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/content_tooling.dir/progress.make + +content/App.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying App.qml to /Users/mason/Documents/Code/dash-cpp/build/content/App.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml /Users/mason/Documents/Code/dash-cpp/build/content/App.qml + +content/Screen01.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying Screen01.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml /Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml + +content/Speedometer.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying Speedometer.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml /Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml + +content/BatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying BatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml + +content/TempSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying TempSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml + +content/Debug1.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying Debug1.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml /Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml + +content/BoltLeanAngle.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying BoltLeanAngle.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml /Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml + +content/BikeStatus.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying BikeStatus.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml /Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml + +content/BatteryReadout.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying BatteryReadout.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml /Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml + +content/FullBatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying FullBatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml + +content/TemperatureIsland.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying TemperatureIsland.qml to /Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml /Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml + +content/FullSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying FullSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml + +content/BMSFaultDetails.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying BMSFaultDetails.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml /Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml + +content/DebugItem1.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying DebugItem1.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml + +content/FaultMotorStatus.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying FaultMotorStatus.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml /Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml + +content/SpeedometerDecorations.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying SpeedometerDecorations.qml to /Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml /Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml + +content/DebugMain.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying DebugMain.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml + +content/DebugMotor.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying DebugMotor.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml + +content/DebugOverview.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying DebugOverview.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml + +content/DebugBMS.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying DebugBMS.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml + +content/DebugPDU.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying DebugPDU.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml + +content/fonts/fonts.txt: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying fonts/fonts.txt to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt /Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt + +content/fonts/nasalization-rg.otf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying fonts/nasalization-rg.otf to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf /Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf + +content/fonts/MesloLGSDZNerdFontMono-Regular.ttf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying fonts/MesloLGSDZNerdFontMono-Regular.ttf to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf /Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf + +content/Pictures/leanAngleBack.png: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Copying Pictures/leanAngleBack.png to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png + +content/Pictures/motorcycleIcon.png: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Copying Pictures/motorcycleIcon.png to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png + +content/Pictures/battery-twotone-0-svgrepo-com.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Copying Pictures/battery-twotone-0-svgrepo-com.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg + +content/Pictures/battery.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Copying Pictures/battery.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg + +content/Pictures/battery_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Copying Pictures/battery_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg + +content/Pictures/controller_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Copying Pictures/controller_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg + +content/Pictures/motor_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Copying Pictures/motor_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg + +content/Pictures/Virginia_Tech_Hokies_logo.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Copying Pictures/Virginia_Tech_Hokies_logo.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg + +content_tooling: content/App.qml +content_tooling: content/BMSFaultDetails.qml +content_tooling: content/BatteryReadout.qml +content_tooling: content/BatterySlider.qml +content_tooling: content/BikeStatus.qml +content_tooling: content/BoltLeanAngle.qml +content_tooling: content/Debug1.qml +content_tooling: content/DebugBMS.qml +content_tooling: content/DebugItem1.ui.qml +content_tooling: content/DebugMain.qml +content_tooling: content/DebugMotor.qml +content_tooling: content/DebugOverview.qml +content_tooling: content/DebugPDU.qml +content_tooling: content/FaultMotorStatus.qml +content_tooling: content/FullBatterySlider.qml +content_tooling: content/FullSlider.qml +content_tooling: content/Pictures/Virginia_Tech_Hokies_logo.svg +content_tooling: content/Pictures/battery-twotone-0-svgrepo-com.svg +content_tooling: content/Pictures/battery.svg +content_tooling: content/Pictures/battery_temp.svg +content_tooling: content/Pictures/controller_temp.svg +content_tooling: content/Pictures/leanAngleBack.png +content_tooling: content/Pictures/motor_temp.svg +content_tooling: content/Pictures/motorcycleIcon.png +content_tooling: content/Screen01.ui.qml +content_tooling: content/Speedometer.qml +content_tooling: content/SpeedometerDecorations.qml +content_tooling: content/TempSlider.qml +content_tooling: content/TemperatureIsland.qml +content_tooling: content/fonts/MesloLGSDZNerdFontMono-Regular.ttf +content_tooling: content/fonts/fonts.txt +content_tooling: content/fonts/nasalization-rg.otf +content_tooling: content/CMakeFiles/content_tooling.dir/build.make +.PHONY : content_tooling + +# Rule to build all files generated by this target. +content/CMakeFiles/content_tooling.dir/build: content_tooling +.PHONY : content/CMakeFiles/content_tooling.dir/build + +content/CMakeFiles/content_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_tooling.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/content_tooling.dir/clean + +content/CMakeFiles/content_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/content_tooling.dir/depend + diff --git a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..d318b80 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake @@ -0,0 +1,39 @@ +file(REMOVE_RECURSE + "App.qml" + "BMSFaultDetails.qml" + "BatteryReadout.qml" + "BatterySlider.qml" + "BikeStatus.qml" + "BoltLeanAngle.qml" + "Debug1.qml" + "DebugBMS.qml" + "DebugItem1.ui.qml" + "DebugMain.qml" + "DebugMotor.qml" + "DebugOverview.qml" + "DebugPDU.qml" + "FaultMotorStatus.qml" + "FullBatterySlider.qml" + "FullSlider.qml" + "Pictures/Virginia_Tech_Hokies_logo.svg" + "Pictures/battery-twotone-0-svgrepo-com.svg" + "Pictures/battery.svg" + "Pictures/battery_temp.svg" + "Pictures/controller_temp.svg" + "Pictures/leanAngleBack.png" + "Pictures/motor_temp.svg" + "Pictures/motorcycleIcon.png" + "Screen01.ui.qml" + "Speedometer.qml" + "SpeedometerDecorations.qml" + "TempSlider.qml" + "TemperatureIsland.qml" + "fonts/MesloLGSDZNerdFontMono-Regular.ttf" + "fonts/fonts.txt" + "fonts/nasalization-rg.otf" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/content_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..e0641c5 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for content_tooling. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..f88052a --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for content_tooling. diff --git a/build/content/CMakeFiles/content_tooling.dir/progress.make b/build/content/CMakeFiles/content_tooling.dir/progress.make new file mode 100644 index 0000000..00529d0 --- /dev/null +++ b/build/content/CMakeFiles/content_tooling.dir/progress.make @@ -0,0 +1,33 @@ +CMAKE_PROGRESS_1 = 78 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 79 +CMAKE_PROGRESS_4 = 80 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 81 +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 82 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 83 +CMAKE_PROGRESS_11 = 84 +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = 85 +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 86 +CMAKE_PROGRESS_16 = +CMAKE_PROGRESS_17 = 87 +CMAKE_PROGRESS_18 = 88 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = 89 +CMAKE_PROGRESS_21 = +CMAKE_PROGRESS_22 = 90 +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = 91 +CMAKE_PROGRESS_25 = 92 +CMAKE_PROGRESS_26 = +CMAKE_PROGRESS_27 = 93 +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = 94 +CMAKE_PROGRESS_30 = +CMAKE_PROGRESS_31 = 95 +CMAKE_PROGRESS_32 = 96 + diff --git a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..08c5225 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin.dir/build.make b/build/content/CMakeFiles/contentplugin.dir/build.make new file mode 100644 index 0000000..77816d4 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/contentplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/contentplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/contentplugin.dir/flags.make + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/contentplugin_autogen/mocs_compilation.cpp +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/contentplugin_contentPlugin.cpp +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp > CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i + +content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s + +# Object files for target contentplugin +contentplugin_OBJECTS = \ +"CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + +# External object files for target contentplugin +contentplugin_EXTERNAL_OBJECTS = + +content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o +content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/build.make +content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libcontentplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/contentplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin.dir/build: content/libcontentplugin.a +.PHONY : content/CMakeFiles/contentplugin.dir/build + +content/CMakeFiles/contentplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin.dir/clean + +content/CMakeFiles/contentplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..a3b37e7 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/contentplugin_autogen.dir/ParseCache.txt" + "contentplugin_autogen" + "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" + "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" + "libcontentplugin.a" + "libcontentplugin.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/contentplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..b6b9d80 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libcontentplugin.a" +) diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make new file mode 100644 index 0000000..78cdb39 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for contentplugin. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..6fe1680 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for contentplugin. diff --git a/build/content/CMakeFiles/contentplugin.dir/depend.make b/build/content/CMakeFiles/contentplugin.dir/depend.make new file mode 100644 index 0000000..4d6ce9a --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for contentplugin. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/flags.make b/build/content/CMakeFiles/contentplugin.dir/flags.make new file mode 100644 index 0000000..81837eb --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/contentplugin.dir/link.txt b/build/content/CMakeFiles/contentplugin.dir/link.txt new file mode 100644 index 0000000..09bf1b7 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libcontentplugin.a CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libcontentplugin.a diff --git a/build/content/CMakeFiles/contentplugin.dir/progress.make b/build/content/CMakeFiles/contentplugin.dir/progress.make new file mode 100644 index 0000000..d9a710d --- /dev/null +++ b/build/content/CMakeFiles/contentplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 97 +CMAKE_PROGRESS_3 = + diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..03a365c --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,166 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/deps", + "DEP_FILE_RULE_NAME" : "contentplugin_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "-Muri=content" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..49e70c3 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "content/contentplugin_autogen/timestamp" "custom" "content/contentplugin_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make new file mode 100644 index 0000000..4de92c4 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_autogen.dir/progress.make + +content/CMakeFiles/contentplugin_autogen: content/contentplugin_autogen/timestamp + +content/contentplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +content/contentplugin_autogen/timestamp: content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp + +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen +contentplugin_autogen: content/contentplugin_autogen/timestamp +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/build.make +.PHONY : contentplugin_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_autogen.dir/build: contentplugin_autogen +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/build + +content/CMakeFiles/contentplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean + +content/CMakeFiles/contentplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..e47ef85 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_autogen" + "contentplugin_autogen/mocs_compilation.cpp" + "contentplugin_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..49dd693 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..f34cab5 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_autogen. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make new file mode 100644 index 0000000..9e973d3 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 98 + diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..e3307cb --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make + +content/CMakeFiles/contentplugin_autogen_timestamp_deps: content/contentplugin_contentPlugin.cpp + +contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps +contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make +.PHONY : contentplugin_autogen_timestamp_deps + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build: contentplugin_autogen_timestamp_deps +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build + +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean + +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..b226410 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_autogen_timestamp_deps" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..31a5e90 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..96c6948 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..a2e2e0f --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init.dir/build.make b/build/content/CMakeFiles/contentplugin_init.dir/build.make new file mode 100644 index 0000000..c502f31 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include content/CMakeFiles/contentplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include content/CMakeFiles/contentplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include content/CMakeFiles/contentplugin_init.dir/flags.make + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/contentplugin_init_autogen/mocs_compilation.cpp +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/contentplugin_init.cpp +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i + +content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s + +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/build.make +.PHONY : contentplugin_init + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_init.dir/build: contentplugin_init +.PHONY : content/CMakeFiles/contentplugin_init.dir/build + +content/CMakeFiles/contentplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_init.dir/clean + +content/CMakeFiles/contentplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_init.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..aafae09 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt" + "contentplugin_init_autogen" + "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" + "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" + "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/contentplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..f2d8920 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for contentplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..09477d2 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for contentplugin_init. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/depend.make b/build/content/CMakeFiles/contentplugin_init.dir/depend.make new file mode 100644 index 0000000..50d850e --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for contentplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/flags.make b/build/content/CMakeFiles/contentplugin_init.dir/flags.make new file mode 100644 index 0000000..1fdbe21 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/content/CMakeFiles/contentplugin_init.dir/progress.make b/build/content/CMakeFiles/contentplugin_init.dir/progress.make new file mode 100644 index 0000000..f4a80ec --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 99 + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..a3b0a5f --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,169 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/deps", + "DEP_FILE_RULE_NAME" : "contentplugin_init_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..d684686 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "content/contentplugin_init_autogen/timestamp" "custom" "content/contentplugin_init_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..ae2e090 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_init_autogen.dir/progress.make + +content/CMakeFiles/contentplugin_init_autogen: content/contentplugin_init_autogen/timestamp + +content/contentplugin_init_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +content/contentplugin_init_autogen/timestamp: content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp + +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen +contentplugin_init_autogen: content/contentplugin_init_autogen/timestamp +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/build.make +.PHONY : contentplugin_init_autogen + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_init_autogen.dir/build: contentplugin_init_autogen +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/build + +content/CMakeFiles/contentplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean + +content/CMakeFiles/contentplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..f43b7fb --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_init_autogen" + "contentplugin_init_autogen/mocs_compilation.cpp" + "contentplugin_init_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b45617c --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..c4ddd5e --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_init_autogen. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..7ad5bcb --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 100 + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..616ec7a --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for contentplugin_init_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make + +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps: content/contentplugin_init.cpp + +contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps +contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make +.PHONY : contentplugin_init_autogen_timestamp_deps + +# Rule to build all files generated by this target. +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build: contentplugin_init_autogen_timestamp_deps +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build + +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean + +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend + diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..2d20ea0 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/contentplugin_init_autogen_timestamp_deps" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..0880e5a --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for contentplugin_init_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..95bd262 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for contentplugin_init_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/content/CMakeFiles/progress.marks b/build/content/CMakeFiles/progress.marks new file mode 100644 index 0000000..f6b91e0 --- /dev/null +++ b/build/content/CMakeFiles/progress.marks @@ -0,0 +1 @@ +56 diff --git a/build/content/Debug1.qml b/build/content/Debug1.qml new file mode 100644 index 0000000..e31ee86 --- /dev/null +++ b/build/content/Debug1.qml @@ -0,0 +1,66 @@ +import QtQuick 2.15 +import QtQuick.Shapes + +Item { + DebugItem1 { + visible: menu.selected == DebugMain.Selected.OVERVIEW + width: 650 + id: debug1 + motorTemp: backend.motorTemp + auxVoltage: backend.auxVoltage + auxPercent: backend.auxPercent + packSOC: backend.packSOC + packVoltage: backend.packVoltage + highCellTemp: backend.highCellTemp + lowCellTemp: backend.lowCellTemp + bmsTemp: backend.bmsTemp + motorSpeed: backend.motorSpeed + bikeSpeed: backend.bikeSpeed + } + + DebugMotor { + visible: menu.selected == DebugMain.Selected.MOTOR + width: 650 + id: debugMotor + motorTemp: backend.motorTemp + motorSpeed: backend.motorSpeed + bikeSpeed: backend.bikeSpeed + mcTemp: backend.mcTemp + mcFault: backend.mcFault + motorOn: backend.motorOn + } + + DebugBMS { + visible: menu.selected == DebugMain.Selected.BMS + width: 650 + id: debugBMS + packSOC: backend.packSOC + highCellTemp: backend.highCellTemp + lowCellTemp: backend.lowCellTemp + bmsTemp: backend.bmsTemp + packVoltage: backend.packVoltage + packCurrent: backend.packCurrent + bmsFault: backend.bmsFault + bmsErrorCodes: bmsErrorCodes + bmsError: backend.bmsError + bmsWarning: backend.bmsWarning + bmsErrorCodesString: backend.bmsErrorCodesString + } + + DebugPDU { + visible: menu.selected == DebugMain.Selected.PDU + width: 650 + id: debugPDU + auxVoltage: backend.auxVoltage + auxPercent: backend.auxPercent + bikeStatus: backend.bikeStatus + } + + DebugMain { + id: menu + x: 650 + y: 0 + width: 150 + selected: DebugMain.Selected.OVERVIEW + } +} diff --git a/build/content/DebugBMS.qml b/build/content/DebugBMS.qml new file mode 100644 index 0000000..b56c57e --- /dev/null +++ b/build/content/DebugBMS.qml @@ -0,0 +1,69 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double packSOC: 0.0 + property double highCellTemp: 0.0 + property double lowCellTemp: 0.0 + property double bmsTemp: 0.0 + property double packVoltage: 0.0 + property bool bmsFault: false + property double packCurrent: 0.0 + property int bmsErrorCodes: 0 + property bool bmsError: false + property bool bmsWarning: false + property var bmsErrorCodesString: [] + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height - y + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Pack State of Charge (SOC):" } + Text { text: qsTr("%1\%").arg(packSOC*100) } + + Text { text: "PackVoltage:" } + Text { text: qsTr("%1V").arg(packVoltage) } + + Text { text: "Pack Current:" } + Text { text: qsTr("%1A").arg(packCurrent) } + + Text { text: "High Cell Temperature:" } + Text { text: qsTr("%1°C").arg(highCellTemp) } + + Text { text: "Low Cell Temperature:" } + Text { text: qsTr("%1°C").arg(lowCellTemp) } + + Text { text: "BMS Temperature:" } + Text { text: qsTr("%1°C").arg(bmsTemp) } + + Text { text: "Any BMS Fault:" } + Text { text: bmsFault ? "Yes" : "No" } + + Text { text: "BMS Error:" } + Text { text: bmsError ? "Yes" : "No" } + + Text { text: "BMS Warning:" } + Text { text: bmsWarning ? "Yes" : "No" } + + Text { text: "BMS Error Codes:" } + Text { text: bmsErrorCodesString.length != 0 ? bmsErrorCodesString.join(", ") : "None" } + } + + Text { + text: "BMS" + color: "blue" + font.pixelSize: 24 + } +} diff --git a/build/content/DebugItem1.ui.qml b/build/content/DebugItem1.ui.qml new file mode 100644 index 0000000..349be1c --- /dev/null +++ b/build/content/DebugItem1.ui.qml @@ -0,0 +1,61 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double motorTemp: 0.0 + property double auxVoltage: 0.0 + property double auxPercent: 0.0 + property double packSOC: 0.0 + property double highCellTemp: 0.0 + property double lowCellTemp: 0.0 + property double bmsTemp: 0.0 + property double motorSpeed: 0.0 + property double bikeSpeed: 0.0 + property double packVoltage: 0.0 + + // Using grid layout for organized display + GridLayout { + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Motor Temperature:" } + Text { text: qsTr("%1°C").arg(backend.motorTemp) } + + Text { text: "Aux Voltage:" } + Text { text: qsTr("%1V").arg(auxVoltage) } + + Text { text: "Aux Percent:" } + Text { text: qsTr("%1\%").arg(auxPercent*100) } + + Text { text: "Pack State of Charge (SOC):" } + Text { text: qsTr("%1\%").arg(packSOC*100) } + + Text { text: "PackVoltage:" } + Text { text: qsTr("%1V").arg(packVoltage) } + + Text { text: "High Cell Temperature:" } + Text { text: qsTr("%1°C").arg(highCellTemp) } + + Text { text: "Low Cell Temperature:" } + Text { text: qsTr("%1°C").arg(lowCellTemp) } + + Text { text: "BMS Temperature:" } + Text { text: qsTr("%1°C").arg(bmsTemp) } + + Text { text: "Motor Speed:" } + Text { text: qsTr("%1 RPM").arg(motorSpeed) } + + Text { text: "Bike Speed:" } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } + } +} diff --git a/build/content/DebugMain.qml b/build/content/DebugMain.qml new file mode 100644 index 0000000..6821ae4 --- /dev/null +++ b/build/content/DebugMain.qml @@ -0,0 +1,65 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + width: 100 + height: 480 + property int selected: DebugMain.Selected.OVERVIEW + + enum Selected { + OVERVIEW, + MOTOR, + BMS, + PDU + } + + Column { + id: column + property int numButtons: 4 + y: spacing + spacing: 3 + width: parent.width + height: parent.height + Repeater { + model: column.numButtons + Rectangle { + radius: 2 + height: parent.height / column.numButtons - parent.spacing - 1 + width: parent.width + color: selected === modelData ? "lightgrey" : "grey" + + Text { + height: parent.height + width: parent.width + text: { + switch (modelData) { + case DebugMain.Selected.OVERVIEW: + return "Overview" + case DebugMain.Selected.MOTOR: + return "Motor" + case DebugMain.Selected.BMS: + return "BMS" + case DebugMain.Selected.PDU: + return "PDU" + default: + return "Unknown" + } + } + color: "black" + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + } + Button { + flat: true + width: parent.width + height: parent.height + onClicked: { + selected = modelData + } + } + } + + } + } +} diff --git a/build/content/DebugMotor.qml b/build/content/DebugMotor.qml new file mode 100644 index 0000000..675e643 --- /dev/null +++ b/build/content/DebugMotor.qml @@ -0,0 +1,52 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double motorTemp: 0.0 + property double motorSpeed: 0.0 + property double bikeSpeed: 0.0 + property double mcTemp: 0.0 + property bool mcFault: false + property bool motorOn: false + + Text { + text: "Motor" + color: "blue" + font.pixelSize: 24 + } + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height - 30 + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Motor Temperature:" } + Text { text: qsTr("%1°C").arg(backend.motorTemp) } + + Text { text: "Motor Controller Temperature:" } + Text { text: qsTr("%1°C").arg(backend.mcTemp) } + + Text { text: "Motor Speed:" } + Text { text: qsTr("%1 RPM").arg(motorSpeed) } + + Text { text: "Bike Speed:" } + Text { text: qsTr("%1 mph").arg(bikeSpeed) } + + Text { text: "Motor Controller Fault:" } + Text { text: mcFault ? "Yes" : "No" } + + Text { text: "Motor On:" } + Text { text: motorOn ? "Yes" : "No" } + } +} diff --git a/build/content/DebugOverview.qml b/build/content/DebugOverview.qml new file mode 100644 index 0000000..68c2108 --- /dev/null +++ b/build/content/DebugOverview.qml @@ -0,0 +1,5 @@ +import QtQuick 2.15 + +Item { + +} diff --git a/build/content/DebugPDU.qml b/build/content/DebugPDU.qml new file mode 100644 index 0000000..98dad5c --- /dev/null +++ b/build/content/DebugPDU.qml @@ -0,0 +1,53 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double auxVoltage: 0.0 + property double auxPercent: 0.0 + property int bikeStatus: 0 + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 10 + width: parent.width + height: parent.height - y + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Aux Voltage:" } + Text { text: auxVoltage.toFixed(2) + " V" } + + Text { text: "Aux Percent:" } + Text { text: auxPercent.toFixed(2) + " %" } + + Text { text: "Bike Status:" } + Text { text: switch (bikeStatus) { + case BikeStatus.Status.STANDBY: + return "Standby" + case BikeStatus.Status.ACCESSORY: + return "Accessory" + case BikeStatus.Status.CHECKING: + return "Checking" + case BikeStatus.Status.READY: + return "Ready" + case BikeStatus.Status.DRIVE: + return "Drive" + case BikeStatus.Status.FAULT: + return "Fault" + } } + } + + Text { + text: "PDU" + color: "blue" + font.pixelSize: 24 + } +} diff --git a/build/content/FaultMotorStatus.qml b/build/content/FaultMotorStatus.qml new file mode 100644 index 0000000..2bc1a7f --- /dev/null +++ b/build/content/FaultMotorStatus.qml @@ -0,0 +1,227 @@ +import QtQuick 2.15 +import QtQuick.Controls +import QtQuick.Shapes + +Item { + width: 400 + height: 150 + property bool motorOn: false + property bool bmsError: false + property bool bmsWarning: false + property bool mcFault: false + readonly property string red: "#e80c0c" + readonly property string green: "#54c45e" + readonly property int padding: 10 + readonly property color good: green + readonly property color bad: red + readonly property color warn: "orange" + readonly property color off: "black" + id: root + + // Motor On + Rectangle { + id: motorOnIndicator + x: width + y: 0 + width: 100 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 15 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: motorOn ? good : off + } + } + + // Motor On Indicator text + Rectangle { + x: 0 + y: motorOnIndicator.y + motorOnIndicator.height + id: motorOnIndicatorRect + width: motorOnIndicatorText.width + padding*2 + height: motorOnIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: motorOnIndicatorText + anchors.centerIn: parent + text: "Motor On" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: motorOnIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: motorOnIndicatorRect.x + motorOnIndicatorRect.width/2 + startY: motorOnIndicatorRect.y + PathCurve { + x: motorOnIndicatorConnector.startX+10; y: motorOnIndicator.y+4*motorOnIndicator.height/5 + } + PathCurve { + x: motorOnIndicator.x+5; y: motorOnIndicator.y+2*motorOnIndicator.height/3 + } + } + } + + // BMS Fault + Button { + id: bmsFaultIndicator + x: motorOnIndicator.x + motorOnIndicator.width + padding + y: 7 + width: 50 + height: width + onClicked: { + bmsError = !bmsError + bmsFaultDetails.show() + } + flat: true + indicator: Rectangle { + // id: bmsFaultIndicator + // x: motorOnIndicator.x + motorOnIndicator.width + padding + // y: 7 + x: 0 + y: 0 + width: 50 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 12 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: bmsError ? bad : (bmsWarning ? warn : off) + } + } + } + + // BMS Fault Indicator text + Rectangle { + x: bmsFaultIndicator.x + bmsFaultIndicator.width + padding + y: bmsFaultIndicator.y - 2*bmsFaultIndicator.height/5 + id: bmsFaultIndicatorRect + width: bmsFaultIndicatorText.width + padding*2 + height: bmsFaultIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: bmsFaultIndicatorText + anchors.centerIn: parent + text: "BMS Fault" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: bmsFaultIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: bmsFaultIndicatorRect.x + bmsFaultIndicatorRect.width/2 + startY: bmsFaultIndicatorRect.y + bmsFaultIndicatorRect.height + PathCurve { + x: bmsFaultIndicatorConnector.startX-10; y: bmsFaultIndicator.y+3*bmsFaultIndicator.height/5 + } + PathCurve { + x: bmsFaultIndicator.x+bmsFaultIndicator.width - 1; y: bmsFaultIndicator.y+2*bmsFaultIndicator.height/3 + } + } + } + + // MC Fault + Rectangle { + id: mcFaultIndicator + x: bmsFaultIndicator.x + y: bmsFaultIndicator.y + bmsFaultIndicator.height + padding + width: 75 + height: width + radius: width/2 + color: "transparent" + border.width: 5 + border.color: "white" + + // Indicator circle + Rectangle { + readonly property int offset: 13 + x: offset + y: offset + width: parent.width - offset*2 + height: width + radius: width/2 + color: mcFault ? bad : off + } + } + + // MC Fault Indicator Text + Rectangle { + x: bmsFaultIndicatorRect.x + padding + y: mcFaultIndicator.y - 1*mcFaultIndicator.height/5 + id: mcFaultIndicatorRect + width: mcFaultIndicatorText.width + padding*2 + height: mcFaultIndicatorText.height + padding + color: "transparent" + border.width: 2 + border.color: "white" + radius: 10 + + Text { + id: mcFaultIndicatorText + anchors.centerIn: parent + text: "MC Fault" + font.pixelSize: 20 + color: "white" + verticalAlignment: Text.AlignVCenter + } + } + + Shape { + ShapePath { + id: mcFaultIndicatorConnector + strokeColor: "white" + strokeWidth: 2 + fillColor: "transparent" + startX: mcFaultIndicatorRect.x + mcFaultIndicatorRect.width/2 + startY: mcFaultIndicatorRect.y + mcFaultIndicatorRect.height + PathCurve { + x: mcFaultIndicatorConnector.startX-10; y: mcFaultIndicator.y+3*mcFaultIndicator.height/5 + } + PathCurve { + x: mcFaultIndicator.x + mcFaultIndicator.width - 2; y: mcFaultIndicator.y+2*mcFaultIndicator.height/3 + } + } + } + + BMSFaultDetails { + id: bmsFaultDetails + } +} diff --git a/build/content/FullBatterySlider.qml b/build/content/FullBatterySlider.qml new file mode 100644 index 0000000..ed48d01 --- /dev/null +++ b/build/content/FullBatterySlider.qml @@ -0,0 +1,37 @@ +import QtQuick +import Bolt_Dash + +Item { + property int soc + readonly property int textLabelY: 260 + readonly property int valueLabelY: textLabelY+25 + + + BatterySlider { + id: packSlider + x: 0 + y: 0 + scale: 0.5 + fullness: soc // Percent to decimal + } + + // Max battery percentages + Text { + x: packSlider.x + packSlider.width/2 - width/2 + y: valueLabelY + horizontalAlignment: Text.AignHCenter + text: qsTr("%1\%").arg(soc) + color: Constants.textColor + font.pixelSize: valueLabelTextSize + } + + Text { + id: packLabel + horizontalAlignment: Text.AlignHCenter + x: packSlider.x + packSlider.width/2 - width/2 + y: textLabelY + text: qsTr("PACK") + color: Constants.textColor + font.pixelSize: labelTextSize + } +} \ No newline at end of file diff --git a/build/content/FullSlider.qml b/build/content/FullSlider.qml new file mode 100644 index 0000000..7e793aa --- /dev/null +++ b/build/content/FullSlider.qml @@ -0,0 +1,56 @@ +import QtQuick + +Item { + property string label: "" + property string imageUrl: "" + property color textColor: "white" + property double fullness: 0.5 + property int value: 0 + property int imageWidth: 50 + property int imageHeight: 50 + readonly property int padding: 5 + readonly property int valueLabelTextSize: 30 + + + height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height + width: packTempSlider.width*packTempSlider.scale + padding + + TempSlider { + id: packTempSlider + x: 0 + y: -(height*scale)/2 + padding + scale: 0.5 + fullness: parent.fullness > 1 ? 1 : parent.fullness < 0 ? 0 : parent.fullness // Abosulte max of 100C and divide by 2 for avg + } + + // current temp label + Text { + id: valueLabel + x: packTempSlider.width + y: height/2 + text: qsTr("%1").arg(value) + font.bold: true + font.pixelSize: valueLabelTextSize + color: textColor + } + + Text { + id: unitLabel + x: valueLabel.x + y: valueLabel.y + valueLabel.height + text: qsTr("°C") + font.bold: true + color: textColor + font.pixelSize: 20 + + } + + Image { + id: packTempLabel + x: packTempSlider.x - width/2 + packTempSlider.width/2 + y: packTempSlider.height*packTempSlider.scale - height - padding + source: imageUrl + width: imageWidth + height: imageHeight + } +} \ No newline at end of file diff --git a/build/content/Makefile b/build/content/Makefile new file mode 100644 index 0000000..3217080 --- /dev/null +++ b/build/content/Makefile @@ -0,0 +1,1279 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/content//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +content/CMakeFiles/content.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/rule +.PHONY : content/CMakeFiles/content.dir/rule + +# Convenience name for target. +content: content/CMakeFiles/content.dir/rule +.PHONY : content + +# fast build rule for target. +content/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build +.PHONY : content/fast + +# Convenience name for target. +content/CMakeFiles/content_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule + +# Convenience name for target. +content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule +.PHONY : content_qmltyperegistration + +# fast build rule for target. +content_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build +.PHONY : content_qmltyperegistration/fast + +# Convenience name for target. +content/CMakeFiles/content_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content/CMakeFiles/content_resources_1.dir/rule + +# Convenience name for target. +content_resources_1: content/CMakeFiles/content_resources_1.dir/rule +.PHONY : content_resources_1 + +# fast build rule for target. +content_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build +.PHONY : content_resources_1/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/rule +.PHONY : content/CMakeFiles/contentplugin.dir/rule + +# Convenience name for target. +contentplugin: content/CMakeFiles/contentplugin.dir/rule +.PHONY : contentplugin + +# fast build rule for target. +contentplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build +.PHONY : contentplugin/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content/CMakeFiles/content_qmllint.dir/rule + +# Convenience name for target. +content_qmllint: content/CMakeFiles/content_qmllint.dir/rule +.PHONY : content_qmllint + +# fast build rule for target. +content_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build +.PHONY : content_qmllint/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule + +# Convenience name for target. +content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule +.PHONY : content_qmllint_json + +# fast build rule for target. +content_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build +.PHONY : content_qmllint_json/fast + +# Convenience name for target. +content/CMakeFiles/content_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule + +# Convenience name for target. +content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule +.PHONY : content_qmllint_module + +# fast build rule for target. +content_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build +.PHONY : content_qmllint_module/fast + +# Convenience name for target. +content/CMakeFiles/content_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content/CMakeFiles/content_resources_2.dir/rule + +# Convenience name for target. +content_resources_2: content/CMakeFiles/content_resources_2.dir/rule +.PHONY : content_resources_2 + +# fast build rule for target. +content_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build +.PHONY : content_resources_2/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : content/CMakeFiles/contentplugin_init.dir/rule + +# Convenience name for target. +contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule +.PHONY : contentplugin_init + +# fast build rule for target. +contentplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build +.PHONY : contentplugin_init/fast + +# Convenience name for target. +content/CMakeFiles/content_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen_timestamp_deps.dir/rule +.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/rule +.PHONY : content_autogen_timestamp_deps + +# fast build rule for target. +content_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build +.PHONY : content_autogen_timestamp_deps/fast + +# Convenience name for target. +content/CMakeFiles/content_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/rule +.PHONY : content/CMakeFiles/content_autogen.dir/rule + +# Convenience name for target. +content_autogen: content/CMakeFiles/content_autogen.dir/rule +.PHONY : content_autogen + +# fast build rule for target. +content_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build +.PHONY : content_autogen/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule +.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule +.PHONY : contentplugin_autogen_timestamp_deps + +# fast build rule for target. +contentplugin_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build +.PHONY : contentplugin_autogen_timestamp_deps/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule + +# Convenience name for target. +contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule +.PHONY : contentplugin_autogen + +# fast build rule for target. +contentplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build +.PHONY : contentplugin_autogen/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : contentplugin_init_autogen_timestamp_deps + +# fast build rule for target. +contentplugin_init_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build +.PHONY : contentplugin_init_autogen_timestamp_deps/fast + +# Convenience name for target. +content/CMakeFiles/contentplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule + +# Convenience name for target. +contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule +.PHONY : contentplugin_init_autogen + +# fast build rule for target. +contentplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build +.PHONY : contentplugin_init_autogen/fast + +.rcc/qmlcache/content_App_qml.o: .rcc/qmlcache/content_App_qml.cpp.o +.PHONY : .rcc/qmlcache/content_App_qml.o + +# target to build an object file +.rcc/qmlcache/content_App_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o +.PHONY : .rcc/qmlcache/content_App_qml.cpp.o + +.rcc/qmlcache/content_App_qml.i: .rcc/qmlcache/content_App_qml.cpp.i +.PHONY : .rcc/qmlcache/content_App_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_App_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i +.PHONY : .rcc/qmlcache/content_App_qml.cpp.i + +.rcc/qmlcache/content_App_qml.s: .rcc/qmlcache/content_App_qml.cpp.s +.PHONY : .rcc/qmlcache/content_App_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_App_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s +.PHONY : .rcc/qmlcache/content_App_qml.cpp.s + +.rcc/qmlcache/content_BMSFaultDetails_qml.o: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.o + +# target to build an object file +.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o + +.rcc/qmlcache/content_BMSFaultDetails_qml.i: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i + +.rcc/qmlcache/content_BMSFaultDetails_qml.s: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s + +.rcc/qmlcache/content_BatteryReadout_qml.o: .rcc/qmlcache/content_BatteryReadout_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.o + +# target to build an object file +.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.o + +.rcc/qmlcache/content_BatteryReadout_qml.i: .rcc/qmlcache/content_BatteryReadout_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BatteryReadout_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.i + +.rcc/qmlcache/content_BatteryReadout_qml.s: .rcc/qmlcache/content_BatteryReadout_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BatteryReadout_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.s + +.rcc/qmlcache/content_BatterySlider_qml.o: .rcc/qmlcache/content_BatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_BatterySlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.o + +.rcc/qmlcache/content_BatterySlider_qml.i: .rcc/qmlcache/content_BatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BatterySlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.i + +.rcc/qmlcache/content_BatterySlider_qml.s: .rcc/qmlcache/content_BatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BatterySlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.s + +.rcc/qmlcache/content_BikeStatus_qml.o: .rcc/qmlcache/content_BikeStatus_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.o + +# target to build an object file +.rcc/qmlcache/content_BikeStatus_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.o + +.rcc/qmlcache/content_BikeStatus_qml.i: .rcc/qmlcache/content_BikeStatus_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BikeStatus_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.i + +.rcc/qmlcache/content_BikeStatus_qml.s: .rcc/qmlcache/content_BikeStatus_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BikeStatus_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.s + +.rcc/qmlcache/content_BoltLeanAngle_qml.o: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.o + +# target to build an object file +.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o + +.rcc/qmlcache/content_BoltLeanAngle_qml.i: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i + +.rcc/qmlcache/content_BoltLeanAngle_qml.s: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s +.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s + +.rcc/qmlcache/content_Debug1_qml.o: .rcc/qmlcache/content_Debug1_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Debug1_qml.o + +# target to build an object file +.rcc/qmlcache/content_Debug1_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.o + +.rcc/qmlcache/content_Debug1_qml.i: .rcc/qmlcache/content_Debug1_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Debug1_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_Debug1_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.i + +.rcc/qmlcache/content_Debug1_qml.s: .rcc/qmlcache/content_Debug1_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Debug1_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_Debug1_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.s + +.rcc/qmlcache/content_DebugBMS_qml.o: .rcc/qmlcache/content_DebugBMS_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugBMS_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.o + +.rcc/qmlcache/content_DebugBMS_qml.i: .rcc/qmlcache/content_DebugBMS_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugBMS_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.i + +.rcc/qmlcache/content_DebugBMS_qml.s: .rcc/qmlcache/content_DebugBMS_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugBMS_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.s + +.rcc/qmlcache/content_DebugItem1.ui_qml.o: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o + +.rcc/qmlcache/content_DebugItem1.ui_qml.i: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i + +.rcc/qmlcache/content_DebugItem1.ui_qml.s: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s + +.rcc/qmlcache/content_DebugMain_qml.o: .rcc/qmlcache/content_DebugMain_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugMain_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugMain_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.o + +.rcc/qmlcache/content_DebugMain_qml.i: .rcc/qmlcache/content_DebugMain_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugMain_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugMain_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.i + +.rcc/qmlcache/content_DebugMain_qml.s: .rcc/qmlcache/content_DebugMain_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugMain_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugMain_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.s + +.rcc/qmlcache/content_DebugMotor_qml.o: .rcc/qmlcache/content_DebugMotor_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugMotor_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.o + +.rcc/qmlcache/content_DebugMotor_qml.i: .rcc/qmlcache/content_DebugMotor_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugMotor_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.i + +.rcc/qmlcache/content_DebugMotor_qml.s: .rcc/qmlcache/content_DebugMotor_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugMotor_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.s + +.rcc/qmlcache/content_DebugOverview_qml.o: .rcc/qmlcache/content_DebugOverview_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugOverview_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.o + +.rcc/qmlcache/content_DebugOverview_qml.i: .rcc/qmlcache/content_DebugOverview_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugOverview_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.i + +.rcc/qmlcache/content_DebugOverview_qml.s: .rcc/qmlcache/content_DebugOverview_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugOverview_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.s + +.rcc/qmlcache/content_DebugPDU_qml.o: .rcc/qmlcache/content_DebugPDU_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.o + +# target to build an object file +.rcc/qmlcache/content_DebugPDU_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.o + +.rcc/qmlcache/content_DebugPDU_qml.i: .rcc/qmlcache/content_DebugPDU_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_DebugPDU_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.i + +.rcc/qmlcache/content_DebugPDU_qml.s: .rcc/qmlcache/content_DebugPDU_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_DebugPDU_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s +.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.s + +.rcc/qmlcache/content_FaultMotorStatus_qml.o: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.o + +# target to build an object file +.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o + +.rcc/qmlcache/content_FaultMotorStatus_qml.i: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i + +.rcc/qmlcache/content_FaultMotorStatus_qml.s: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s + +.rcc/qmlcache/content_FullBatterySlider_qml.o: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.o + +.rcc/qmlcache/content_FullBatterySlider_qml.i: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.i + +.rcc/qmlcache/content_FullBatterySlider_qml.s: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.s + +.rcc/qmlcache/content_FullSlider_qml.o: .rcc/qmlcache/content_FullSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FullSlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_FullSlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.o + +.rcc/qmlcache/content_FullSlider_qml.i: .rcc/qmlcache/content_FullSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FullSlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_FullSlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.i + +.rcc/qmlcache/content_FullSlider_qml.s: .rcc/qmlcache/content_FullSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FullSlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_FullSlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.s + +.rcc/qmlcache/content_Screen01.ui_qml.o: .rcc/qmlcache/content_Screen01.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.o + +# target to build an object file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.o + +.rcc/qmlcache/content_Screen01.ui_qml.i: .rcc/qmlcache/content_Screen01.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.i + +.rcc/qmlcache/content_Screen01.ui_qml.s: .rcc/qmlcache/content_Screen01.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.s + +.rcc/qmlcache/content_SpeedometerDecorations_qml.o: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.o + +# target to build an object file +.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o + +.rcc/qmlcache/content_SpeedometerDecorations_qml.i: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i + +.rcc/qmlcache/content_SpeedometerDecorations_qml.s: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s +.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s + +.rcc/qmlcache/content_Speedometer_qml.o: .rcc/qmlcache/content_Speedometer_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Speedometer_qml.o + +# target to build an object file +.rcc/qmlcache/content_Speedometer_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.o + +.rcc/qmlcache/content_Speedometer_qml.i: .rcc/qmlcache/content_Speedometer_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Speedometer_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_Speedometer_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.i + +.rcc/qmlcache/content_Speedometer_qml.s: .rcc/qmlcache/content_Speedometer_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Speedometer_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_Speedometer_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s +.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.s + +.rcc/qmlcache/content_TempSlider_qml.o: .rcc/qmlcache/content_TempSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TempSlider_qml.o + +# target to build an object file +.rcc/qmlcache/content_TempSlider_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.o + +.rcc/qmlcache/content_TempSlider_qml.i: .rcc/qmlcache/content_TempSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TempSlider_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_TempSlider_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.i + +.rcc/qmlcache/content_TempSlider_qml.s: .rcc/qmlcache/content_TempSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TempSlider_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_TempSlider_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.s + +.rcc/qmlcache/content_TemperatureIsland_qml.o: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.o + +# target to build an object file +.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.o + +.rcc/qmlcache/content_TemperatureIsland_qml.i: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.i + +# target to preprocess a source file +.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.i + +.rcc/qmlcache/content_TemperatureIsland_qml.s: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s +.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.s + +.rcc/qmlcache/content_qmlcache_loader.o: .rcc/qmlcache/content_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/content_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/content_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.o + +.rcc/qmlcache/content_qmlcache_loader.i: .rcc/qmlcache/content_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/content_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/content_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.i + +.rcc/qmlcache/content_qmlcache_loader.s: .rcc/qmlcache/content_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/content_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/content_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.s + +.rcc/qrc_content_raw_qml_0.o: .rcc/qrc_content_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0.o + +# target to build an object file +.rcc/qrc_content_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.o + +.rcc/qrc_content_raw_qml_0.i: .rcc/qrc_content_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_content_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.i + +.rcc/qrc_content_raw_qml_0.s: .rcc/qrc_content_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_content_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0.cpp.s + +.rcc/qrc_content_raw_qml_0_init.o: .rcc/qrc_content_raw_qml_0_init.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0_init.o + +# target to build an object file +.rcc/qrc_content_raw_qml_0_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o +.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.o + +.rcc/qrc_content_raw_qml_0_init.i: .rcc/qrc_content_raw_qml_0_init.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0_init.i + +# target to preprocess a source file +.rcc/qrc_content_raw_qml_0_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i +.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.i + +.rcc/qrc_content_raw_qml_0_init.s: .rcc/qrc_content_raw_qml_0_init.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0_init.s + +# target to generate assembly for a file +.rcc/qrc_content_raw_qml_0_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s +.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.s + +.rcc/qrc_qmake_content.o: .rcc/qrc_qmake_content.cpp.o +.PHONY : .rcc/qrc_qmake_content.o + +# target to build an object file +.rcc/qrc_qmake_content.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o +.PHONY : .rcc/qrc_qmake_content.cpp.o + +.rcc/qrc_qmake_content.i: .rcc/qrc_qmake_content.cpp.i +.PHONY : .rcc/qrc_qmake_content.i + +# target to preprocess a source file +.rcc/qrc_qmake_content.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i +.PHONY : .rcc/qrc_qmake_content.cpp.i + +.rcc/qrc_qmake_content.s: .rcc/qrc_qmake_content.cpp.s +.PHONY : .rcc/qrc_qmake_content.s + +# target to generate assembly for a file +.rcc/qrc_qmake_content.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s +.PHONY : .rcc/qrc_qmake_content.cpp.s + +.rcc/qrc_qmake_content_init.o: .rcc/qrc_qmake_content_init.cpp.o +.PHONY : .rcc/qrc_qmake_content_init.o + +# target to build an object file +.rcc/qrc_qmake_content_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o +.PHONY : .rcc/qrc_qmake_content_init.cpp.o + +.rcc/qrc_qmake_content_init.i: .rcc/qrc_qmake_content_init.cpp.i +.PHONY : .rcc/qrc_qmake_content_init.i + +# target to preprocess a source file +.rcc/qrc_qmake_content_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i +.PHONY : .rcc/qrc_qmake_content_init.cpp.i + +.rcc/qrc_qmake_content_init.s: .rcc/qrc_qmake_content_init.cpp.s +.PHONY : .rcc/qrc_qmake_content_init.s + +# target to generate assembly for a file +.rcc/qrc_qmake_content_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s +.PHONY : .rcc/qrc_qmake_content_init.cpp.s + +content_autogen/mocs_compilation.o: content_autogen/mocs_compilation.cpp.o +.PHONY : content_autogen/mocs_compilation.o + +# target to build an object file +content_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o +.PHONY : content_autogen/mocs_compilation.cpp.o + +content_autogen/mocs_compilation.i: content_autogen/mocs_compilation.cpp.i +.PHONY : content_autogen/mocs_compilation.i + +# target to preprocess a source file +content_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i +.PHONY : content_autogen/mocs_compilation.cpp.i + +content_autogen/mocs_compilation.s: content_autogen/mocs_compilation.cpp.s +.PHONY : content_autogen/mocs_compilation.s + +# target to generate assembly for a file +content_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s +.PHONY : content_autogen/mocs_compilation.cpp.s + +content_qmltyperegistrations.o: content_qmltyperegistrations.cpp.o +.PHONY : content_qmltyperegistrations.o + +# target to build an object file +content_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o +.PHONY : content_qmltyperegistrations.cpp.o + +content_qmltyperegistrations.i: content_qmltyperegistrations.cpp.i +.PHONY : content_qmltyperegistrations.i + +# target to preprocess a source file +content_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i +.PHONY : content_qmltyperegistrations.cpp.i + +content_qmltyperegistrations.s: content_qmltyperegistrations.cpp.s +.PHONY : content_qmltyperegistrations.s + +# target to generate assembly for a file +content_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s +.PHONY : content_qmltyperegistrations.cpp.s + +contentplugin_autogen/mocs_compilation.o: contentplugin_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_autogen/mocs_compilation.o + +# target to build an object file +contentplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_autogen/mocs_compilation.cpp.o + +contentplugin_autogen/mocs_compilation.i: contentplugin_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +contentplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_autogen/mocs_compilation.cpp.i + +contentplugin_autogen/mocs_compilation.s: contentplugin_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +contentplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_autogen/mocs_compilation.cpp.s + +contentplugin_contentPlugin.o: contentplugin_contentPlugin.cpp.o +.PHONY : contentplugin_contentPlugin.o + +# target to build an object file +contentplugin_contentPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o +.PHONY : contentplugin_contentPlugin.cpp.o + +contentplugin_contentPlugin.i: contentplugin_contentPlugin.cpp.i +.PHONY : contentplugin_contentPlugin.i + +# target to preprocess a source file +contentplugin_contentPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i +.PHONY : contentplugin_contentPlugin.cpp.i + +contentplugin_contentPlugin.s: contentplugin_contentPlugin.cpp.s +.PHONY : contentplugin_contentPlugin.s + +# target to generate assembly for a file +contentplugin_contentPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s +.PHONY : contentplugin_contentPlugin.cpp.s + +contentplugin_init.o: contentplugin_init.cpp.o +.PHONY : contentplugin_init.o + +# target to build an object file +contentplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o +.PHONY : contentplugin_init.cpp.o + +contentplugin_init.i: contentplugin_init.cpp.i +.PHONY : contentplugin_init.i + +# target to preprocess a source file +contentplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i +.PHONY : contentplugin_init.cpp.i + +contentplugin_init.s: contentplugin_init.cpp.s +.PHONY : contentplugin_init.s + +# target to generate assembly for a file +contentplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s +.PHONY : contentplugin_init.cpp.s + +contentplugin_init_autogen/mocs_compilation.o: contentplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_init_autogen/mocs_compilation.o + +# target to build an object file +contentplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.o + +contentplugin_init_autogen/mocs_compilation.i: contentplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +contentplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.i + +contentplugin_init_autogen/mocs_compilation.s: contentplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +contentplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... content_autogen" + @echo "... content_autogen_timestamp_deps" + @echo "... content_qmllint" + @echo "... content_qmllint_json" + @echo "... content_qmllint_module" + @echo "... content_qmltyperegistration" + @echo "... contentplugin_autogen" + @echo "... contentplugin_autogen_timestamp_deps" + @echo "... contentplugin_init_autogen" + @echo "... contentplugin_init_autogen_timestamp_deps" + @echo "... content" + @echo "... content_resources_1" + @echo "... content_resources_2" + @echo "... content_tooling" + @echo "... contentplugin" + @echo "... contentplugin_init" + @echo "... .rcc/qmlcache/content_App_qml.o" + @echo "... .rcc/qmlcache/content_App_qml.i" + @echo "... .rcc/qmlcache/content_App_qml.s" + @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.o" + @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.i" + @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.s" + @echo "... .rcc/qmlcache/content_BatteryReadout_qml.o" + @echo "... .rcc/qmlcache/content_BatteryReadout_qml.i" + @echo "... .rcc/qmlcache/content_BatteryReadout_qml.s" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.o" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.i" + @echo "... .rcc/qmlcache/content_BatterySlider_qml.s" + @echo "... .rcc/qmlcache/content_BikeStatus_qml.o" + @echo "... .rcc/qmlcache/content_BikeStatus_qml.i" + @echo "... .rcc/qmlcache/content_BikeStatus_qml.s" + @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.o" + @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.i" + @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.s" + @echo "... .rcc/qmlcache/content_Debug1_qml.o" + @echo "... .rcc/qmlcache/content_Debug1_qml.i" + @echo "... .rcc/qmlcache/content_Debug1_qml.s" + @echo "... .rcc/qmlcache/content_DebugBMS_qml.o" + @echo "... .rcc/qmlcache/content_DebugBMS_qml.i" + @echo "... .rcc/qmlcache/content_DebugBMS_qml.s" + @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.o" + @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.i" + @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.s" + @echo "... .rcc/qmlcache/content_DebugMain_qml.o" + @echo "... .rcc/qmlcache/content_DebugMain_qml.i" + @echo "... .rcc/qmlcache/content_DebugMain_qml.s" + @echo "... .rcc/qmlcache/content_DebugMotor_qml.o" + @echo "... .rcc/qmlcache/content_DebugMotor_qml.i" + @echo "... .rcc/qmlcache/content_DebugMotor_qml.s" + @echo "... .rcc/qmlcache/content_DebugOverview_qml.o" + @echo "... .rcc/qmlcache/content_DebugOverview_qml.i" + @echo "... .rcc/qmlcache/content_DebugOverview_qml.s" + @echo "... .rcc/qmlcache/content_DebugPDU_qml.o" + @echo "... .rcc/qmlcache/content_DebugPDU_qml.i" + @echo "... .rcc/qmlcache/content_DebugPDU_qml.s" + @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.o" + @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.i" + @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.s" + @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.o" + @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.i" + @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.s" + @echo "... .rcc/qmlcache/content_FullSlider_qml.o" + @echo "... .rcc/qmlcache/content_FullSlider_qml.i" + @echo "... .rcc/qmlcache/content_FullSlider_qml.s" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.o" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.i" + @echo "... .rcc/qmlcache/content_Screen01.ui_qml.s" + @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.o" + @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.i" + @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.s" + @echo "... .rcc/qmlcache/content_Speedometer_qml.o" + @echo "... .rcc/qmlcache/content_Speedometer_qml.i" + @echo "... .rcc/qmlcache/content_Speedometer_qml.s" + @echo "... .rcc/qmlcache/content_TempSlider_qml.o" + @echo "... .rcc/qmlcache/content_TempSlider_qml.i" + @echo "... .rcc/qmlcache/content_TempSlider_qml.s" + @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.o" + @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.i" + @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.s" + @echo "... .rcc/qmlcache/content_qmlcache_loader.o" + @echo "... .rcc/qmlcache/content_qmlcache_loader.i" + @echo "... .rcc/qmlcache/content_qmlcache_loader.s" + @echo "... .rcc/qrc_content_raw_qml_0.o" + @echo "... .rcc/qrc_content_raw_qml_0.i" + @echo "... .rcc/qrc_content_raw_qml_0.s" + @echo "... .rcc/qrc_content_raw_qml_0_init.o" + @echo "... .rcc/qrc_content_raw_qml_0_init.i" + @echo "... .rcc/qrc_content_raw_qml_0_init.s" + @echo "... .rcc/qrc_qmake_content.o" + @echo "... .rcc/qrc_qmake_content.i" + @echo "... .rcc/qrc_qmake_content.s" + @echo "... .rcc/qrc_qmake_content_init.o" + @echo "... .rcc/qrc_qmake_content_init.i" + @echo "... .rcc/qrc_qmake_content_init.s" + @echo "... content_autogen/mocs_compilation.o" + @echo "... content_autogen/mocs_compilation.i" + @echo "... content_autogen/mocs_compilation.s" + @echo "... content_qmltyperegistrations.o" + @echo "... content_qmltyperegistrations.i" + @echo "... content_qmltyperegistrations.s" + @echo "... contentplugin_autogen/mocs_compilation.o" + @echo "... contentplugin_autogen/mocs_compilation.i" + @echo "... contentplugin_autogen/mocs_compilation.s" + @echo "... contentplugin_contentPlugin.o" + @echo "... contentplugin_contentPlugin.i" + @echo "... contentplugin_contentPlugin.s" + @echo "... contentplugin_init.o" + @echo "... contentplugin_init.i" + @echo "... contentplugin_init.s" + @echo "... contentplugin_init_autogen/mocs_compilation.o" + @echo "... contentplugin_init_autogen/mocs_compilation.i" + @echo "... contentplugin_init_autogen/mocs_compilation.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/content/Pictures/Virginia_Tech_Hokies_logo.svg b/build/content/Pictures/Virginia_Tech_Hokies_logo.svg new file mode 100644 index 0000000..024f390 --- /dev/null +++ b/build/content/Pictures/Virginia_Tech_Hokies_logo.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/build/content/Pictures/battery-twotone-0-svgrepo-com.svg b/build/content/Pictures/battery-twotone-0-svgrepo-com.svg new file mode 100644 index 0000000..71a49e1 --- /dev/null +++ b/build/content/Pictures/battery-twotone-0-svgrepo-com.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/build/content/Pictures/battery.svg b/build/content/Pictures/battery.svg new file mode 100644 index 0000000..567f0a4 --- /dev/null +++ b/build/content/Pictures/battery.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/build/content/Pictures/battery_temp.svg b/build/content/Pictures/battery_temp.svg new file mode 100644 index 0000000..7c63355 --- /dev/null +++ b/build/content/Pictures/battery_temp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/build/content/Pictures/controller_temp.svg b/build/content/Pictures/controller_temp.svg new file mode 100644 index 0000000..3efeac5 --- /dev/null +++ b/build/content/Pictures/controller_temp.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/build/content/Pictures/leanAngleBack.png b/build/content/Pictures/leanAngleBack.png new file mode 100644 index 0000000000000000000000000000000000000000..4be20aed8569d460f64f1f576535d7861bdcbec6 GIT binary patch literal 55425 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 + + + + + + + + + + + \ No newline at end of file diff --git a/build/content/Pictures/motorcycleIcon.png b/build/content/Pictures/motorcycleIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..5a3a0046d5692b20ddb8eb896f105c259640fd2d GIT binary patch literal 19552 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 z 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�W7XA}YRKlb zG?kjEL2&NdoNGMSHh=CM6lw8jFIPK(2IB=Xw%9`1R^#eaFTU)f!ZNKgSewOE%IXCH zU_F7kDulJAHTY?oF0c;J?%WmH<@8Gtn{L))p2r@s>Y|c=evz3(OOduNd6-5DrY*PD zalM^eY#+~xG8L(IrT+wI0l=8Nc`7Yo8MumXp@d~2%BOsRMNzPFk|5v83Mo1jTGUMe z-v|s}TS5ipz4(Kt$pyX@O>ko1TPSH+AlvfrH40er_yj;~)1YO(rwQL7|<|J(>8plODy!Pd1 zgm~7OHEXPpEXdcdT z{g-M`IMBQgSY>6~Akr!nL5&u!y5>b0DN$rMsAE(Z$C`e;UbR#5o~f#jBW+|2$NMnZmkMtp|obI?nL765#*ZZSKJ{89S63NtYN;5{oEmgH(6R>4GWgPVx+D(WN{&n zq6sN|CL6_!tZc3Z2~Ynik(a^Pwk@NSmEl`Bo$@jQmQyhee7``bN_cMB66zOBRM`3$ zV}|UVAa08j14yU!M?_iNRzBs4$8AC5^)uos!EJzY?i0Z-9a5K~?nXiZdIiHaF>6rI zV!yF!%#!Ul&vwP&QyF`b`1$s$h6-mujFIi0LJW2-Oja?0(-c8eJUphfqmsO*kErCb}do+ zH-Nn*$}E?u2kecS_Udhcflo)lsNI5I#x~ebWpns02jwp}E8H8`0o7#--B%fBz;Po$ z?GaYkr=lBy3C<ETrR%ClL>m>UCZw^3H&;cK z(iHNV-trHj3HfizsN}(KO>44RI8e;oh3bx=E{eDiik}Q<(_EB_FNM7x(aTr4WypjyUF`TRE|+ zfK#1N+?y=GX3Kiv-qBm366Bi<0QXF967FH!$Q}zP^InG@u-^A-&rhSRHS_`7jgyoE z8~m^MDx4E>Q@%Hb-gYtkc zEtuDZemZ(7s1Yqf!oY(TCOD@TEjXrg)#FPSctUBxJkoxqa#>mk(1k*IB``7go5i9h zAN8bwcti#4xqPcpn`LTyOByw%MXfIJIfBoq)kXC``=M%aMup0a?q?#lIT42VRD~1mT8jhk@ zh`9-cVxuS%kfkyK=88E}<6N~urX4RW9tGimNV?|c=DE!yGpAD#tM1O4&T7h>8fxW3 zv*wHpQM=w=9=wtjpMEH@XZyB2=|hQoZn^m${>?yDtio$HtXsF?=*>4D+Z?!h6~%oR zeJ?_<;ZueU@*#s3I_qmuwoMVVAU=oi*`S3kqzj>_4`XSn8m5h+jkcy$EfunOjM5cS zVUr4`xjzcHhvk!0@J!}7$U%hvnYKYRF175Y3LZFDRguMzjR5D< zunQh#d^^aw^hL$b3v5%1@4=dBvSL}L8ZEwgN4BF91TRuf$v@2hDG**muibv^!3r>H z)(56LnJH`#r~9@5m6wK7wk|SpO%&On5=%*!5=*wq8gk}2MT0e}v=L}D@rhiS(Lh&e zBO6D3582XYg*gxP0Kpc-Dy*(4Nl+!Ir|ew0WsYe=i4bkZZ5j{^Xo>UCD2N&NZw0Uj zDru&^H&ktU=Jew3H`M$#I6FY~ds}p9MSXDiD1s%4X37pB zni+N*;(=Vp`-r>Dvj$sejr&oDZ30A>M?5Wf;{T0b7-gyupek#67Wl|@0r<#lqx%qbM5>gH3_HhG#zmI+5B8vq!kGmv z5^XFurlIah6Xzk&PplqHsAD=&7Sd=k5NC6yR7LEA49$w^hKn{$U#paQIJn0f`y~aL z{j^2|?^wmpD?>e`V@_l7B#$cb=uR+*7<9c@3>pS;1*4<3$~iZLfo5tLBjpCU;$93V zj4u$w!$t43PItd9$#0u@1MF7mpMS<)m~PEwFQo z7s|}80$Zs_!Ytu^gS@LV9O+sNg|)to+x6CfjOP4#*^YE?xAK0z@6^6r5B`?w>*kk= zzf~Z9UKy#YT{n95?adwL2a69Gbi_6*^<^lDJerG{thDV(8-Z$VBaC0xouBwLB(2s4 zoyL_?mm-|cRu`XWcB5lLPudM$S(~VMJu{15TZCvkgceQOCUw%JW1X~TS)bdFz5~rg zls=woPp1*Ouzu}ocY@DU!V`T7zG7bKNBR|)$SXYnZ?u^FvKt^| zTZ)`JXWq!%Lx(TX2McwUz?z{W%5}}ar!Y&i!Q22U^`OQ#zT?mfx1$bFNK-;PK-@`D z#5<*l6``RQbu=T>$+ik<8VwY^e8%ni5!-9k<0$NeI)Tu_a0ifP^HAZBhdACDf>s)0 zq)Dn)K|nG{l})02kg_b1NTd^KS=Wa;!4+OziwMEu@_qfH!;!siUwEI4bD~N%NvW{FUs767MBX#0td?T6fqxis9()+ZU0V_vNd4&po zS)J?gjMA!~qP%(hez^1DvmmCQ!7mlQ3#z$Q96nc#-*IYeXZ~vZG2GXvXdzcvz06HA zR(QhJ$J;_J>KDQz@USgk|0r?TIy$0U<);7)$|wOkjr#SulkiEP3Wdh-^+p^NJ|-Sq zHU30r4MHNj!o=Qug!DUn#BXS)DN74Nl}H2YTcv&>ay>8*VO?x`ZYsh_nTE79T=~Rs ziXx$%q;IiJ;4m!Bmvy$&TDpOl>NqiyY*!Eds6OlBOP+t8U-O;s?Dbh*xcWQa`3~Rj zzDA?2jqDHE!Jc+x?xXWA-dl@7adQKL~JIZ=WWbL`++84zpJ9;@9O(>%p47=z!l2q-l9hZ`_#(*hV^A)TV66tNH&5EM>hQ5~I!qzzKi z%ks^y8HTD^JIbVyFFSTU&DMo8Fo_I02bHIgS++)=!3iYQ(FVRMdwbG>asvyDH?O38 z+2ym*13n4}!!*SpC1g#Z5mArt^A?0iIfcIl^sPq2J0TY$aKuLBQ*#x?e&l3UCCS;F6&nXK!$TXp=6Q1;|(bS|NeD#~4yPXXEF@c`4qIaq2qKu#g<^|UYOsi+?0Qh^7Uhf z^rKRNeCc8Rz{B~kK5S@@%JFvF`_Y3JnloCEqFo32e|WrpvwXeK!ytjdN9}J`!6+PW zzCoyt_V<#~q3^oh>)^AMzq9V)i<5mc=8eMmyY zxjMjvT?<`$4Rq-Qa`^X2O|q9o)Mzxa+XW&^aRV40!^KbrcU*`lz=J3zK@p+6^Sy%aCgDctcI+ZRS$hN)0%4u!fY z*B|B~RZ&BrFmm4G>4Ng@e0DsSip65dSW=LAq_&`jQ_Va6J5t4EZM#CHU49W@$@{gZ zHL7H#kn zIR1ti3kj0P8`}V{FCYdc%DNf4C_A-W6N6mx^mVZ%n#f$IOFa; zXZ}!GaFk#^hxQ@vlxrC-hUjj#-DIawFNmFj8mZkC`hAbW;sK{=f;9*P0O52Q>+%4| zQq$1PrM9l42hIbKB{>g@*DE~;M+(ct4XUm?7N~L213mH+(F2{jfUnQ3fukxKgMzO` z_ftJ>4GYvXalx%_LO6hmwPJOn*hPw?AviPIfj88nVo;$ud9t)Qd97(F;q2IZq{pOj z^arDhvVDd8Q5Z$at%j=s$5p`7w%%2^sX!%`{ir4q3$R=!+JYA?HQ~Kf(Zbr+Pu*DR zG&)|+uIkoG0USDOf__H;*8z4&((e>uO^S0y)$k~1(F>|gxydf4lRCneAOPh^&3QDRF99&VaEp_^wATYyMD7&MbzZpVNX{<%Wgo|qf>HQl1T20CgLcc zm`L%MmWb^vA+2;VX_>hl-JR`iElou@tMbN~pCNAFrh!X8o7}lsfnrw+U18sbTn`JM z!HKHNXxC*X&wvI)FKdLT_* z&ZagHD~Z@&F4)LH$2(`-{%ql8ivEwZcSDzg4rl68Qip{9##A23(W7pXJkCpdr2UdM z^=s;T1e!@cWNJ!Xx} z8JPpMV`yeQ@x4g62TI7W+66j=Qc|pm%)evjf~sh1^Epqhnl|O~tMoS?8yn;Q%#U_< zS&GS8j29LgeSRop{I1RJyK8Uu<0qGkP0<`WIt>( zMH>Sz!|g>=4r0!@+;D$lJXaIas8m)%HkH&mL!B_#s-?P8W{*;P8S&g2l$p2Y`)x{- zdxEY&^~g|jn2qL6h8&8;p)7=A`$_(WHjx;D6o#i67bBckEu~uD${3DrN?F#|$64Q$ zK9u0??dk5Ks$VBfYHX;@#Gd^ELSG89Gmw+Yo`M~^6}D3~YsQ@#c7-H0x<|8> zG#5=VRF%O^#~8xdG)*X^qWVKdS;m=xuU1qatW74OVOGtn51KkRd~u{ zANpy6PnO#W@p0_KZ=rcL&jiDemb%bfCR&GQrW9g>E2$ahUXpJ&-HX;<)aOin zSigYaYP@d%RwTU-a0NF~_k%PQXrKG+Z_EI$v@z>tq|n)3c8yem3%jCsG4=T6c+dNU ze~YS#FV7+30G`uOcstyf;M3r0;D8z<+lO;yR9GAml#Deu(W$P_!dp;UH|iVsV{dXrKmOJqzN3FtaIw(z{0p~Vb=7ST z{Q76V_*MQPso>$|Oyv!@*S!VupYC-NY;vv#3#6+{0=?rxHyVv5q6zZx31^B;YMU3g z(l;TlXiaYfl14HAlh*v5P==5*vLAp5Ij0u}M>TosjG0MjnllU0XibcDbKao+S$PdO zR9StlRsptfZ_n82v?r!!)T#j@2>uH}2Bv43zLWLm_6c2QHoMPJnPsjS&8@)AZCW5G zXoDt_Mrb=FEwC}74Mz-jQ*NHeP?YrC=RX$Qybq~nGS*irQdnHCC~(wGp?QJotEkv6 z{xuu^1t>Uos{jrEwYU8*)!Oc4v0>(z=#xV#CaR>+72)l z;+~seo0?#kDck$}2f$Kb3~jg|1`9Bwd-FgrOH=}{(Td^p#%pFQmXqf0c0gzZd;rvj z7UY$Z++6pOK`0LXNJ(#`+ZG^4vBCi%M~AZlYTHg6lDAb1L!veFVj6UI{MV=*If4Z* zV>en*q$|xC7TvhS1RLSNHlm|I8jIANF^3dS>^5LLhX^jas!;%2@I&f%8BqSn{=1I` zR>=W&@kg3`QNnfu=N5G7z8dnKBqW?3vRb5DfNR-Wf`q1J_K9Ro$I=k)GBZJn+Ezo8 zlp@f73S2_BGlt4m6dt-{(Zcz2rSe$7CJQ=! z?Gk=Sy2(HsBHi-|c`w~tkdbu5Qb$o8LM6#6xW8y@YHX_Q?(Xgs*LyGxl}vTb(5#wT zG82u@ByiPhkKA?Vkt28Bb>zj@^ZD0aKbC*}t&9*f%J2DFevZ`XKbVBY<5SBH#{Mx$%^|+zaE4gN=uwHc=p_VQMFrLRV+%CekqFrB!#) zg8({ij>esjAxNSf6x!a^4u1;X)<%^hGV$`6=7a)|^zr;wfrj$sAS`7`IsSrezXu%q z?SURkF$mahq-49B3){uDz5O}tHe&A9dJ3Hc86(G$wbNMnof0}dcB;QXC=IqzsEg2F z*1?x@B=i{G-;avVtu-)gj9MrC=GA@?LSq7<_B(qciyik@#ub105r~O19|mA>$8L~8 z>Ez&8wTz+HD6V-dCp`buI-(97*1spAL5sJeI(T z@>c>r(GY&^jNP?->rNjwDgG3@YdWvFbWj&;6waqAlhsctFG727AcYU=_j=%sZ^GO8 za`|ey+nuUhoIj$x_-XoXB4a=bleHiCzK3FWv>&`Ro!)|z{r{`yaj&9(RC^8;d&rhU zgf0{wTrMD78cth)WIg$ADG{5q<(h`09YOeRNSI6Es)10pW4H%@wCCQMOMjkv_~BO{ zewfY&=P#(ws?)-CFxn>N>d|2uzsk`UKmbQja*aTK*KqBSsyu(}n|Gb5KKlZ{O#hJU zSfDJ2VKO0{8)JvEYFDi?^VlQ{jNY=E*vy-NQFP^egrs68}~2CMf8``m=YMuy{d2M9z7vXinOf z!`3$E6x%}FG@zq0f{s2+Gn-44kiwk$E9x-;rv&TCb&7S;oCGici-e026CnGN8* zV1Uqofw^AXk;YNv!3Kkn3a2wcAxz;}iEsj5e*!58N`kaQ0G7W1z$(w4dDk}`OaDGd z@xJ2=wCN(A>U0@RmBo!Da0SQGcIY93PLc@skQtW^bUn&9(WNCKENoxr+=q=D*KyLZ zAR_O&G9AMmO7-XY0sYp`>$ma)p_lYscfR#W?X)`qCTl&l>ZKDQ({SB48&^GiI9fE2nk!5VE3=E_Y4HlKpO$M~W9?w$@f?XX_)2Vr1Y zeA1>H3#Y}4ZSVsx>$~{>Y20RXPd{BKwy8x6B{vw9;!sCQr zD);dZDzAdc<40wi!Aw5DXW|q2kWR`qXy6ebIb5QO_!qGuLIEP#y3qAS{Mmf$m^yUq zn7;4WF+Nj&!TiH82Y$34gg%P-s-UCxAv$6Sj{M5pG6gwISd*gUaEBcd{p?VdNkMh5 zI9K3A1G^iKg4$JNg9?Rf-I^847B7TqD1LfTXrs1|H*j&2L2fkUG1?$d>+yT9=hyUT zb$!RyoW63!nR}P7JpJNNU3Ad{4<5Ss{taiWTzLk5bH>FFTzt_34_tKd18VY&m8WeGSI79s6B6{qh2lJh)&p2Z> zJt3xg2ui3OMihrQiLC$*c0m;H$Zc!H*_qs4uO_s`bCgJ2&Eav%>=_3NIb65nxPjNI zQc40D%j4;!5|1N}JBl121Y4Z-&NEIwb$r{FO&iy)UcR)qySKNYyRN$vt*A0KFwLo} zmrlq|m4G>W&a8&|2HeFCS^t+5g}YhQ)Dxj$;{UxPHu#1-KARA`_>Aiagtroi-@5O* z=T^pJvG}TYzGGz~D*k`{_3wD+s(37#SSkLG-|cyV!u}*RK;0&NoT~T>PmmNmQ!bvL%V09$N?rTj|r*t;uvMwe^9+CW1^f82<+y zKBDbWyTQ9u)|kr*ALQ8pc2Woy!wbpb#^jHD_B;B&YJ2$m^y~4x0^j8x^+_=fxiqZqOY^F&%@JCrj6X};0rZc9*3O=aq(KZ`%CZrcVg3ggR6Pv_o#Kh4kO-)|h zc+4jJW8l@s3x?<=KcVUKqx9bwoo|wFv+uhmSA~Pl&IT~>0;!7ObgSK`=)e3f?YLyW z!dpwsfdn2v1>PXVCq~i8Cu!sd%;Ea=Vv3Ue74aB34`w0*5VM$n(Ra1%oI8O3|y9)%q+hbZkWgOeK>HV!uh zSyb^f&#F+?)eOa74A1WCRUUb&t$qB=-Fr^o|KxcGIy-jnSlRo`^WkZW8yc7O@LSZ+ zM3Y@BzBaG9dC#7EH!NMY>y%|%7v-PP_0TeXY}$gUQ)iBkh!6?J!gI9e!vBg@L*JwG z1f`W!HA86?`w_luKR|eM% z_|w5(;19iuAALu-?r47H(flfeq+-xc%&CYuaYKX^2}K&Dj(@knyq5u|X^nKq1WSmi z$u|N)4f!VisEWRWW)9c=&o7TEPaajidK9$K1$=xSF(ln=GTVss#l^V=3vqv;EFh~> z!JQZM3uNc+LvkqmFBC{phmLQkM6-!PX%J5`y1AuqY9@pKh=91R;n^c|mhi=#Fwxg* zU<(Xcgv3;#6k9k;Ar{b213vh!r)%p*=J&Tw=~+CtZ(eTMywOuHTfRD5zi8fIGWqQD z&#S#<9^kj!b>_-tTgMmdn7MXJkEYajt@xM44G^{C2L4y}OJG6HoF z0cd*~heA9o;{TF}>9IYF2z_x-2@8}b9T>RQLFVPatbD;b-$4Q8Jp7XH5Umm4A(&m9 zi?{F)YX+1Qr2k3)L8FFRfVj308$}*6U9;lI7$1rL;J%Wa0Wk`QfHR*Cj{=awO(=DA z5%gp|O8^pd3RWgl7)(|c6jU}&_eL3lv+X-5sEC*FMaqrphrt_@xSgF!5ve%maE5Lp zhOFW2X`0+0l8jjcU)I`^PW5)TOl_T7Uzci5H`jL|OpD=Ek>W$Vv9q=lrwzepLkM{i z=h66rbRar@N_}HPXHP?8uyHPqKPw0G2H z`Muk=eeSc{@blTvZQC|};M^bo=)k$>9{ACZ&pm(zfg`O^?pCh}tH5rG_2s(pI|vjF zck-kND_ejcLAz<0)K3?;ltNEjj~En1n)6Hefd_%up&YvJ;KA$kOZgT0pLtE_<@|5Y zd-BPP`EB}M;;%~p`%5u@2b-OnsevFnY84HK7Y1bxES!n}P~(>1gL+5k&s3j*Euwk}ZB>Ygpvmwh@DU1$ zn}IrLE+9E7_1wUgakgOI>{*k08|x8BmgeaQ0?Dv>`)PoDqElcZEn)~M^K^_@&%!W+ zlCpp6w86pYW83Jz|G0VDwDs#h_@VXdr%l^@+RRy-H{W#Q=FOUmXxdL9B}CLHwp_=t<*8G;JDX3+*2W^N zidWH=jgv3%j{T^^6tE6%Ky@9R+o!)PTQ*~N(>8Az0E%yzykq)Bix#zD*{bUOhMDA z|Fnm%pimGD_zAZ2W>^7_hmA(RL4g9(`IltLdUF0jqphoN=o*A6JEFX~6+ioS<0q_q zK>y(7`UkJdznQ<%oa+tDm11P~7+XWFgL>)xZpAdBE)qNo{3q``{j}3gf9KXMTf)kf z`AaX$U-=>Z1DES!O-pf3Zw|G>5?G78U`zyIOi52!sNmv^jgu}e3__JHZ^}&qhM2k@ z>=5joi&#i1vw-i$9~W8A6m$hgkqpzshatfl>(!eNo_zA|cfap_{THme_)@Jwzlt9k zAAi>_{T}7LXUv^@wUB|w|Dt{vXIjcY@M4HP$Uoe%Qgjlnhu&xAjs35PKz>yq5y<%t ztnW4z%>)?YiYOQacq4S^fy_f&(y6@(He4etm z|6pH!K*&?hmtnq30gFa9CD&I44glmJFbt5+5e0$`2$+!D8(CdFeS-XYKz_p`q<;%{ z(l7}n@_$75ulZg1Xa4=2qwg4-dBKvU7caQ!k#&dO`Rs~= zk%^26R{;-qL@2}|F&>H)qpKCeUjtLlT%Pi?-Fu(<{QUPUSb4#;cV2kl+-2)dJ9E$Wspl_P z`Mz1VJhX#9lYRH*_g|f@ySVA3(G}}9ynD&Qxl0-wF3!|kxOeqwcz+VGx>3O1Lq7ll zj5L-&`hmKlNIw8PF2(#Eq?Z-z2LKo`tb(4PnQ4J1OhHgrcqs_b53sg-fh*Dv7UbrN zBMV#@`hhBr4X|VB2~u1lR{n3PAgHs;DF}kj76ETp0j^=zoSOtKk>SJ;&t-78OJ}Wz zhM=x6Gz91e$Nx*cL)~KN2Y-FsP!HBWngkPTE?|Yq8flE^)I^U_#MAqktmW$WeulC? z*FW0g`z|>T#hm!hrPkDMTE+uPN72`aQl` zYO)79Z@D@|oOiW0PeKAwIt4=_p(LWvs&P>x(@#c*N8nx~Wt!}$1$Mj5`+FPf_`)Si<}SH#f5U)&*J*Qy z-+k)-bF0^{Xl*$wTR%A13@5L`XJW6Pz+SVgnf>2foGzAdzr@LBA~~FjAZAq?ClaI- zbmE-CBBE`|dKJwe3ioFatYlnfdOsuQksQu{9?9Xno)KX8ehro)Ib5o~zP`D>xw{)h zbjXVdRbO1sjATtnL#K&IP^+KN;};zmxp?KW!}C7%l`nnt>bnmryS8mTH_o@tQqMZS zt$kl(VAvduwY zq{ZPuuq|BClj~jOU40Qm)D1O^sGmR1Q`dg~d)M-sH?R5HSCxbM3;I*9y~fw@ftOz{ zrB_p9EYK^YJRXDc3W|kWoGK=`NM!eC3a}?h>i$dt2j0&VaN+%oz=`+Q7H*2^6-H^1 z_6`0pA{5{eK9j%ZPOt6m^oqlN{P)^-L;uFQ*mb#@1WtYu9?}LL36rL$feTE9UNIfq z3^!~ML@D4>O$8w%GJy&{z-Jhene4d!k49sg5c!^>juBH!Mj*&N8r$MBFa%bZ>gpuN zT5VTPS0_~zp`)l!)Mb5xa4dzZ$=x*~g90cpAlspQZo$>-p8EOEpW1NM{COW*d-I)l z-n{lh^ORbBH@`(ck3W+CHGgDeE_`oO_>z&4Pp)14pZeVYT)kFlxI+KT75bhlu$9Bd zAJF!O=i%0Ukj-ZMbCV)S*hWm_tm%W3TdJZck9ksKHSYCQfT5YxE10T^dNzEG3}G3f z$%DZRiP2HHLi(D%fszrX(=IqAv7TIP(n)nSJ$<$0maK0W8G=J7+uKKGi)1{Y|B+t# zpI*vCT*8Oo*b5`Qm*cVe26gI!xy?5YbaxKV*MC|4?tk32l8kBk^ajW3qt=9tv&lw_02CW?0@ScyH9^{%^GFN_L|lszpcr> zz|Z36eE%zT>yNda|1te1f4*IPzE*qd!;^*AfSrE)H`+LSL{r(7G8Cl_E+XDjgTUzC zwq~3v$UZgKlxv`0*MMGnV82=4XjJf?it#qXh*Luw3n&+sK3Q>D3QBK*Mg}VnuFnE7 z!4qJ7KmJ5dS3^&CAMCsy_!I?@+F7QWb(l1PP+VO7nD&1g7c4ug{NM4>Gq;UDcb@)h z{mbAQEf+kuecLw<{P^GAbIOf3Ougxy>8>nq9O=05^6Mgf(*cv!{2st!KmYjZ)i0gC zTYpyniT*Elzpqt2?PI&fwa~-WRgZs~cpCmNZ8`2WGgM!e>|+FGZ>RPih4nqt+r`x{bp>!@pN|=Fe9)=O2Cj_3!+iU#4w;SYPw7{-u>v z%wZ+H6F2DEyMc!;wkfwEi#`VCw}nI76I@Fr;R?{;FhW(PQIwIWTT1=_ z5v~Ti9joYK6mQzr+5&kee?$c`vgF0>-7s$OhO6PIG>=+~@Hcm4l_kowV{L!@`q!U* z_D8>4^pQ;)u32>ZL4HKPm>=bT)DbhsmmNKN^mHEjzilm#_xJzZ57*$Ycp+!!9$%)N z2cJ(r`>ecqN%ggpU$HI&#ey!cPBYyxx80`y<@*$G7)RXucd_p%>Xu(9v05{SM?)j%6K*WpBnD>C~Y)Tl|<>X(56I05z%TW zp+CmZ+;b_5$JNo4aqlOWvZ%5N;CrK4Qll)D%BD!?ZNw_pxKEZ zb3V{^T8*W5I(O$eZ|Q6V)5V!8C7KLH*AqNoiiOb7(14oT{N!IO+G8JP!A)q$m`Lcq z1a#No$z);_*@dFhjB}#gN}oBvOp{CHKB36rzSeUdq1}%owVYVU=Gf+q>({KJTbjO} z&UVzB5E-Vmnd+)^QY4txRDmNKzQS4vTH#ct+nNUB0A%V=>`UBekYkZ@U&LjW$t7Vl zP(J_}PS`h0Hd^MuWve!BTy;!cn7j0{cl_$o++b?Tu7CK4-g!G`?VXWZHEUb@w)N+o zHEX=LZ_Bh5D`u{1J7etdyQb}#v-6x$N?N`3$kn&%-+k_!3y`$>(gkDJ@WuMmNAsV! z_T;YN;qlS+n|rFdKm4J49%*g;?BvN?x8~M%q^I0@?cI-eb@7k?v$6-M6KCq%I8za} zlHHc8nF)z83&&{^SK+Ty!lcd7>6ijMQ=k9>32{44O?m)VLwo=~R1-XgI4Wt#4*EV! zA*#S;IBfO`8_!K*Z28hTv!_q%Y_CK0uc}lWZ5&v*BVho%y0?orbg6?}KpfJX{Ku`l z4LT0#c;#T-*L(dZPusKSH2$=5{Uy`KH{SR`-hKbQTQ^TRdGh=vi_HU-jlsBK!k)oSDBi^wN)ha^sWT^*3Mk z*wCaV9~jp}0R=?;8oXM?=Q!$zOhXPRxb@U9K*e)|faVh1j;W!VxQgIi)b`m?pGhDN ztub4jPKJ~eQ+Cu*f7s;GDxSj6vH`?w%$PnfZD5+c@CKDfkqOaGh7D#-k#>^+$cCX2 z-qplA8W1cuGSq-S5%6pJqZ) z*kgi$WRvrQI{roBT zL=upWC?FOHNZo*i3=9aQa|yb>pgfmsCUmoD8t=mv(KgoxofZ{UINzW?Fd?|ksStHa%(0n^#A zE;iVY4&C5l%!Ve622AJ;o{00EQXCX0NoXG@3|XeYqwld}$pjbaK%U#+@UugQ`+eKD zL*GYJgbDw)L3(j0-t*`~qt$3tV~cp9o<@a3MJFda9a=Elne2QklZ9Rwyt$&seU+OY ziDVyV@iK~0vdLNeEz2XD``_EM*WE)t;oqh|k~JU4C;V=Imi#0GtGDZLrfbO?r>BKw zbPP_l%s6$nXSXvQ+Ob3yJ0mD8BRI5^IdB^04CN+x(L}ixaK|B&0*;4b*pU+Y6=AN` zpaT+rkkvpLW|$e7>6C~bYNDpKuzrwJiB(|96lP4$ee$5x<(&Izb}L^Z&H2>5>)<+h zu(aI0R$Aa*I@g^bopEPLAI}x^?u4=TLJllckwVEDNO1R9Te=WL?25g%IW#UdRJlhK z2Bx?!@dnPdPK!Pq-x%0vx8)k`l7g(vxjf_Z0sPb#1Ng~PZ}ekvXZy*wv)v61{D=Ez zzPD!Y%zwEX+0*yW_}7}fBDRML5?-ME1M40E4K+r$K(|siqPQmCnT3PGgpQKG@g^qw z4~@XNRw*VQ2aFvY{Ef788*y*65w}`XHc)^c3i((SQm7ditVg6}oSG(-s?T%MhKnzIH%1u} z5%6V-$J&A|#j_om9Xqc2TFoJ0@IFwYADx%IkQkzno&n?uV}^uUqx(DT-NTZiqSG=v z##tjnR&mdUP@w2UUtFYPGLcTN84q~{Q|-wtZ{|8 zgBGV0FPc8)=jF3EtXNVyw^L4JoPR)uIW-_4$uhWmkGc`J$(vj|Zz+z+kBC||qiWgI zvExRJ?zyXJPg2{q!I8mjN$+-qeBXg}Zm-ML^(-##009s82a6@)_@Fn)#b8PlJ&_{< zzG{Ypw$UgY5|C}pDF!{9nv`maPEAT8J#5En5RIL_xhrBxlXKN%53#bzNj9;TD)paQ zzj@{@#nnlf&QAvnTQhI;;Hig~OmVFm-h08?>9Z@ca~)Db|d>+T(G4 zu)3~p(Bq%}ZQl#WR?Xg9(PeY>oF$XW{x$8>TTG0ty$yx`bP|e5h{4uM zJ1c}PnPfiE3@v6&r0lQ=+C0H=!YZL7F}|JQR`jN@hEr0D-5UN1dy=gfdDAHLc9@eo zddbIMog9uoC)tPn9&q!huO6Ro^mqS=3Y%Z&6&B20R5r|gK%O&q?!2*M$MT-@{@pnr zNFeMJXl+3!U$=aQHh2s-k(_JUThd z6lSuRqA7VAl~~ZQZz{Z3JPqXQ4#%uc%Hm+3?Qp)~0Dl=VaDw0g0 zc6Qf(_tHTfZ2CjWgNf6&^RxWT?bE<&GW=*d?EDk0Xb+*?8~bp~kUsu~d8=9R&?4)Tg?4(!W@zT%1j@7|9ka6e`$oHZ{{4 zIgHj$$fYl15f8la01NxJ`@!4lU)aGNJO5sP+rgfXc4aHOefmP3T(wB@b6;F^W|8|M zy^#DCojG%65$jF_)*GjA2f+Zq{76D8S#jf8)rfY9~KG z^a5)WzU#}8r|nXq>%sJf?UP=cJN50!E`Ble-hcV~_gceCc=-_5kHK4d_+H5@ z3WZ(3pgq)pPqQ17wk*-Lv@NW+7%*QLC1DV&C7U22&Tuf85rRd$m@AmkNz6#98(*Zo zmHxvA4;epx$l&3_YKILU_tf0C-(GlV{D@(-d>tF!^F}maj+)j}sefm3Mn=;Q85xt` z>V?WJ{yht~%zu{^m{^Zf^DJLTpGZl`P5b2EEIsBo+&|&TX+3E^8{o6d!Wvq1i8{Z- ziIHvnq|`K<*e{5*zOKV0ktr^`hY}lg%eZ?7`yaoRUxd4`ltnDQv+M9B|Cu@2FL3Ru zpn#Rm;`EjJzU%-S!RD}ga^hEXD9o(%YkLTHhM#`k6iBp$JM{7yML`9)PN3SN=bB=H%d>rK0z|?{(ijCUDI!zfHu1+LHYPnn(}cI)kY{V$#u%B0v2Wa zCKElQgM$JL3cT~FX}ZLaL~~MzBRd2=arFRhrh=_-(9x7EgD0_7<;mmO7{2@Q>}2M``CsjWo0bY$#ylMpGB?3yXl7Ht_i;vF)IyiNvmv7)0c z?Jv@#DTlZ8>({66;mK1DZ|l={%i*a@-><2u9e(8fC5zubGQ75?=Ka*oRn^s1{37$) zbk9ATHqTf7U9qKc%A})xkUhN(&oyqTm{?OY{6p~o9$dWS!{IeG=r{3Y@18w+51KuF z<}Cg$<^T&<*&%2d2zxMr=76TqLA3Cg1DU&6oNT8lmD+4+2x74`8*A^2bvP&@N84Q| z&He6|U%vm5FO#zh(}q=dPUMUpm2<34!no%h{q^fm775$%WGw|i)Nv5qEwQF#_J zNw=~kLNYLRk~KOi0&ymcZ8Ib2XHX@R#8a|G5FSZJnRY5{R04|-d#YUf#al1HLgU}_ zr&*bl$Vv~pZy)i^2>czM5W8wsth6XTX4R^g7=G?MoYWp*quCht03XhGa~HoOFgsiM zXLfee6lHLn?TCBVVVjcM^k`hl5ozp^6rc$;2NqVI1C9K#Yo#I{VZbRBI?=RMI^rIo3G=v1|1%CR0hV-v+H1n_1TM2kO>^WrQl;Dw92<3} zFbSKWH8(F5ab*Pi!oxx>;n(Qg@caEOXdRhuEyg4NS0L)!5WfU_(_xMpgZ3445ECsbhO?s&$<8pIlXU8xwMwu#utI+ftUY{Gg}7k&TEf#Oo_!NoSNpuo|%Z9)d7J>Oo2uT zO>tx^q2bn~@Z2zmH9ME~TC&28U*`2$$O0D)=~mNs-ktmv{?VSjENRC!mbB012nmrs z3d!%cXxZ{b{hXima||BbrS7KknkQKIM;~LQk37PkdCc6~Y-Y0tII0HbP!J2Wh~b|p z;|+@-wdp#iZd7q?R%Rz`3s^Y4rpTvnQ7Y@G~##n2*t27mNBM95rEA@koML~%E}>8}!k zWU;k$+&@N^HLc|A{s9slY$dH%rBx01#R_ejsT*Eg4UZ=HB?bJF#3+^9r|QMv!z()C z6|e?^TRu6iFf{vVXH-Ql&Fo|fi&V2+DM*J|i=1!O*&yEGCXqT_uR4Y+ zEqFxAyGAZ78`mm-)EG91Id{|56_3aTf8>BaI;4Oa`2KWaCP!!3} zNOFYW0aObGr>@H+6}@_P@7g)VmZ35VIb8n`qxb}IuCIFj2>sm4uB(rJhmwq6PeFkI zu;&7ymz(9xLA`{tGQn*SG{38;2|)%}p2rN#Q`~zChL@&PrFNhjGFS| zYiNDQoF4r4sWJ-urq&2{*YzciD=RGl#}$L)x?yhswI>9&~by8j#G3u7cUrtePJ~Ag&x=!`eI+`Q;dDVOH%Bat?UQTchurVE1V6w z7I7zx8#Q9s4MPVHsO(+dlE8FT!~dGVe|YDR{~Gy!XEXV$i}HKB%+>rpmNZHkG|Jc^ z&?tk8p;5dG1PzPr`ATgfkv94L1*#iaQ(ZNnqE~6jl@joOvp~OV0Q|+3aa~vE{MCiI zjuN_hO?uIptOPeF6hmgbt3etF?Ujwv1gwgm(ctG}Q&VAGt2(Gxd0FX|^vBg0{|5r1 zmR|owA~${Ft=RtS6xHguBwY-=hH zl{&cu^^{=<&r%~TpHru!g>qyUTdFz+pWElkMtLz=UQZw%2R}qEv(Oz{7Gn>VT(d`> z<+^iEjpSEFKh*ERl}A+Xqm!S+p@*J9EhP2YG18SJMmv)>u_W<1mZJ3I=W6!2?v!Wk zsbR@@uEkh>Ogv{t@W5(!GG(Lhhb2Gy38V3It&V49P9)PJ0?nji{-OHG^Uc`OQ@-N` zlaEElct}DqGBH048P4qTA@_6|gdUYP6Pg&8U7#0YzVy2)yyY`zf)z-xY#2S6@W8Ac zn7{NiK7GE5(82R5RYZq#R{`Hcc)^9EM9HHC{gCPanmZ9IVn(>a8VlL3Po)|2+?$rl z_QIv^P4lD~pI-TlpF(p%vNeVV~Z8hqSW(Qq=)3xi3*GCm%j(hKE@?!IkQ&IRTr6yv{lS9$Trc+8!Qv_Z{ql z3Qt|NJsx<&*m~tA&^s6SIWmcMID?DWF-5P$m&m4zuo#8$0xy*s-dB?YI+2SKE5uTa z6G9WCtO?PP(cx`OX;w!@UVd73QhMYRJ>092*4Wr6M?l+-@p)NDJ-RIj>!;#S+ur znQ4!R3knVn4PVg8dg%qeq(AJ*+WI@37HKji*zT#hw8gXjTQ1dL`SDKk^83met$m1* zV1bd4T_R*G96%A0h)|zWW$Y5fUrJRW3;Epx$a~!HU%^L0w=uiZ;?S5VnHV%znsoJ( z5_k$&d6)?BedNCxFEAwXUxW_G1zeMZGypxPDgl9)U4^b{7{W_R^}(wx=BVO@dHD*< zy+77ma)0KbloSh6W#KJfO8Lr3GaTUID1 z&E82s@*H2Ze1ew8gTJ(`)$ti^4MI6XafJJ5=1bBx`5~XVoCX5T_?t1liFnRN>#6Y^ zKndr+6oKXQP6X>pbDqoZeub!L?CpNZY#`8aATL!_N$cv{-GvIWK>MJB{U>3puR&| zyWE^E`MKF0Q=`KPC$WY3;?f?tL>dSeFMTQZNjt6)atKY5j!_ep2s<`iD)r89b3$gJ zEj=teBBDb^R#vwtOLRymunaJnEzv%!5+0q}F*`TEOHOXPwD9oyfWQ!hOJXRMCDb3` zQc1M~K${fADg6$2v_*(GP)l-9TnI`}+peiS4SiWO^x_c5RNwKCQ=Zm>PFw5w>mEw6 z?C^;88JSrHrf3u=1o_WwL0=`g1>xR#$4k1!opYR+LD)XbFgPY6dT~pF(>gcL#ilF5 zTyj%`#azV7S|U)M;@Pq=8#oS+=!lqLup7;%*+#1due47kUU3j| z@k~u-6HG#x=e}ImBpG0wXNZG1!6P z%@KjJ(TI#EV?5X@*fW1akip*=6CTqoCMF^Zm$k#)YKA`$joPEbW23vp0Fb{S(5S7s zv{DW+CHV&i`UeGduqKC?OyTh<_Mjkor-OfxB70Q`@@4~UZIDr!XtyElPLJMP0e-VYPI^+4Xk+R_iIQo|a|fqghie-H8r3{M1Twx-@LJ1u5rw!jxNqOpQMKJdGV zx8CgTx)sLxOK;se>AN;;K*dwi+kB|JINtpYL;po#XGZJCix{K7*q1%>L?PC@G2(f$ zQl(Y(@~d84n(mQbz2aG;I!`>Lv9sKTC)P{1;+YiKyYj290%fWX{$xXX#`Qdl$h|r^ zyPJJd@4i_Zob8rhZMw%Z_!Z--IC~_B;?!NVA@{g%sb{-AL+(+gx(e{@(-_x+`#mY9 z>L=(X`ZKG0fwYi!m&SS?IVYX1cde(NVEYr_7vtGY@(A(l)i}pWZ`Qlkd2wbhxbOAB zc_6D+mdT&P!)tgV)sJLG)lHNzs)~FfpEO zGn;M6neChf?K|31P;=%%S;~#99Mr3GL3~`CHLtLD*Z0GzDi?BlUj=x$c=rQ#BvnJiSR53=$q&zO58Q&@_vWBUSUyUb*p*}RR#Cl)&U zmfSG7yrQ5>dLFZnBkm)WVR{=Ra zN;J+r6sr#mKtChjvyY6u+UNYUN}1Mt1d@sdpqsVOw>o8`@-8660EQ_T#Ug;gv?D8} zLE}O_N+f_z5=YA~#NqC=y6M-~%li6yQi|>zvMS^!=(n&!$#Rsox$a}h?n$Z@i8qNa z5X-^Y;Wy;U8J@@qqP3+JRWpaZ#<)m9by~!}DO4kEPHO8<&*4G7C$7R~v)Ox!9enU@FXWcCQSIzNDM0vY#?J1%)?`>0 z0o0liAC-;0zVn^=-7~VYqat$_sEGF(UOj2rpiw2g?5U}#z2%$f(C}%jy_dkQQ%qD; ze7eA{YxdlJHw>RRe)zCH<#wAbt!J;=>PZua5AO}y_Fxx;?}2*!BBtu~J!p;xc43iN zo#uTBy$a~F;w($m2hb=zlz!x(!0ORqLiib^2+cp?{j4}V(81vr;hpe!Ca}I_yGl>P zmqDL}Uj^$6-ht^SJx$=?#Atd#b6~W@SKvVBGN>nIqvu07fD$e=H}b1!_=>razX2TS zadb#47ZDqh{o4Xxfdl2YL0qK>f_C0BL!tvK2fm+c_zE1X!p?O_pR4eQV)86})GI5u zK;F!d6?2e~6@QOl_^X}}qM`>Wb*4>1C{)LfY!q11q}(T)eL$$A0iW#`J|Kb}9Dw4? z)HJVOhAw~9TtafT*F!@PH1CkWQe8ODYS7@V;T;-?JZh|qNKiaH1d9h4jZQsH8AF5iIng-RtmDIVzV0p74Uw{9jJq8`vR3i3 zp<#vQF;h7UX?@3qtEzsFc74_er&rZi?Jt~G z={Ye~!3!m;@+&`z2yQHLCIXJe$HfG~%L+aOWMp!CEZ*iJjc{|wMyt~RijYx$eXr zW*Q$XMr1V{JQt|tEE0D)JHeGI(9x`F@+MM~k&Z z#xvlfxdeHf$+Jnm=R4qOE_9zJ>tlxGD3m^d54upwokgaF`*h)zFal{!u$Pbnn#>El z%9VT4BaRu`Bhn1%6M7?uY=c?uQ-yFei?!Ve9h@ic6u1am+on3DjVL+9D~Eja%E$hP zaC>bAA6K|k$|-bjQhCG|j=%>y139Ygs>?c@-EqZZaA0dwoF(M~458!0YvkKUTS?GH zxE)BL5c`AiUr^PC^oHyF0(rY@;sQB|6=@2iY5~5kf)gxkMUqcaaP&WTMGkdm%1H}c z6Xop-T<4`XgnnQ}0)omKE#O1|pYTw^2hE1)%Mot0)0g)Iy}WSimMvR4TWj&}*5P%u zO+yV!D|{fTO`}1JV77 z^t&)C$tKX#Ncbjw?g7A-KC|c<&D2!wfqMMW$=o#%2vLH0 zJzO=4nw)mrB!O=q-zj7D`*54a1s`Haz?9_y)8@T{d=?_M*YZqu#VJg}Tz$@6S3Ix! zpj({c$Olb!g?enG$6K7!B-FD!i?hW3E9?}bB^RP+#$6x?d9b2m$K(LlFa7C~5t+Fz zOFzBz(umXC#^$s6C-?!-MxuK;GhQBo?+?HDuB%m{|!GnWA9+Hk6A z2n}u%h;}NXCImAwI-(eOoN8%M)Q;?Pll1z?mygw+MlDUXm>#CdK4PD-V zj=5I=F#A#fwNU$N$fsu=D8D@l@@WZe6NEkxkSDYb5Rh@w@5E4m(G35i?<;Bn{^ZD8 zdX6FO#eBJG>S#AnYIvq6J92J~D?9|V8*O476uN68 z309IMLAIBVu|#dSsp&i8GwhQeXzh>1p;Ao5wduTTi(6o)`gPhCUu{&M5z}lI7%mWO_)g@o}Gt5c-lYnx2+jpL?U;a%$5vy=9k*mxtEs+1i9+7Mimu+2X{s?NIe3OsMB@ zNK);wmq$XVA~cfnbr4y3fcxEJ$D|I&j`bI8KTo~*sCi$CM}=x8)-b(YQbKGL@d><3 zB7&e6T{_foi8q{SgG*1ugY{OpbSOF^y<*O(y78vUtk9`b&Ds4I6il=y#u}7wz5C4e zKvQOUNj55+Quzl#!D$sGxh8g@*fF4gc8~fVIaTTHDE3P`pL)U!Gi7C&!s^YYPMK&K zkG1ife^nZ^Rq3huBVf0hJuU#o_GpLAnqwXZK#KQ>T_blO&F)PU!CrD1E*1S~$i3l- zFklCNDpp4G=dp03h5o8;3_0|Qqx1><@qlARINWN-;u9xu#8u}3+?)3+I=iEhD8^_J zZ-NyWF2~pN2fQ2q@Om64F9?%GjjUa|1pCB$J|H-1?gLPT(ExPS!vT2o5Wkbns%N!c z%GYBXg{|Tx?Iq%=W>^$kQ1ewhaRo9%yhqM(II?^!8Xt?vCv~MI^k&#Z(>9*@(w!hJ zhM-}>;aZRU1`1 zVO;}oE=%w%(}Sz>SBZoY;(-JBp#@1=js&VV+YJ&l3~E6&|ArBDbI>ec4A=~~5{-6L zHlOST77jav3?>qrrMw&6kO5_uD>0+MdBH2BRg!CoZA#*$$#3VVfY1SB3p zvjrUWhw+JIaPXng0uXuug8m^4q(R5rg@ge+Oz;FAs|ccs3fZV?ich}trA zS;Cxf6R6O0W~-T@D4nj7oAeGJI-EPtPLl#>oaN3#lFLt6ir9}{}g+T%7Jz-CH6 zvD^PK_RikU?ff{ z28YL8Lh+)OW{ly5wv&Qxubo~u_R##=JX@Q@@@LCu%$vl5=Hx~d?OVqGp5Ccfv7=XR zdc?3Dw-%8w;|C4<=Ofe} z05muR8pdh$c>xsDagyDpeIJsZboZrid8+H42KG$@`?>*?qjSZf%X^hLLoPh7bhBH) z(WuDqFq66mThTTX!eIs&`gS^k(M8sTLPe7j=Ux}HBf4hYdj2&lS;w;(kJ%a9Y27=# zX&u|Bf9F!#$dTGGb#)CqoPF({%EQ<<7_UM%R#~g;g^wyzSA_9$voexQf{!eoylW&g zQRo#eBdni@q<3Q!moiXnmipk}HHtx7+*ofBxL4;`|%O&d-SP z{Mfzl*L~%sg`EpxP0>=jly;B0-%Cy{-&a;fZ-pp($KIGVb zKKm_?-HGOFcZA+pThS*Y$&Yo+x#X9WQuv6{5cFKuxv>Wy64*SRy|jTRH%P1d^jQI{ zCXAX^Cg%QtQmKp(v1|m=Xb%*|1L4$>g`i6gy#f+SrR&>>u48W#Gyh`MsxQRMZyVb+ zLVCBMcfs(6r5`fs!=(+w3wpOsQ_5FM2G3_l;9h8hcm)y8!?rH(@k<0vc{}!=N>h4O zThTW?(GT9hES09{U@(V2`p0OBMmsc+1%w3IFq+69)8tOp(ncVBkOjMRTX+PG*D0d_ zG%YCsP5%a(E_!4Wf04}zy{WdMqGO^Te=FxVzeHQ1KEO*(^@9Cf~o)eGl(z+SMwr^V&)P_<%hx*+|t0lP{yWM-kV8NVl+ z9R2r5Hp!7syB@`^@Ntu}u<3$gb?@XQ?AZhCIo?zLvY}}@>)pWm@+TYkQH(PIy;q&0 zc3T?cO%;?ef9khH#hN)?9HZ|fB1e;6MK_)YywOP-TZpV`{kE#vZOddSg@bK z9|pCjvKQ?Ta4(|TYaQji(xmS5(=$3fy=wK7jp#Wuz5jsOv*eeuI%dr2aqH11SFd_{ z`OE7AFXC>n8Q4zwF8OOU4?)CWeQxRXxz71z&vnkAMd!=^QuY}3V8@34MA%Vw z8}@5hkIC}5_AL1W_SW5Clq{ zogE!gLw;?SUNu!EB~#dr0m~|T+&Xy4{@u5ZT$A7N?wb5b9rJ4orA4d8-Zo|W@*BB( z+{#;~zWcz#ug_gRf9Zz#x2zdQ>mef#9l$Hf`j{(3|dy%{njCi_umWbq`7Ox zt(rD<+5CALZo13!mwvG4!MD8_l3rfI5|qKp&#*W>@+O2;8SLuNAg8kg`CZrB*Z3SH z(@LL{BOA~My1x0dI0h)`us^)}?t;A9M`{ZJ5sY^J*NQ z4#}{IUtoHse}O;ot+LlOSU%V^l4#ld`4r$R@`24-Dxh`%Mk5uImRqCkm(*LOJ}SC% z!KfjVr!@2^h>JWJ6kv?&Q{H!ImqFoel%R*Dk}t+gEX+@gE9~r;R{LM~v(nxX-3!_l zB*w?L&$On_%5>LVH8w8i#MuVwMoZT7<{#2q*dmFYu%qCs{^1~{P57WLL;IHZi8BTS z9gK`C=+Q7`@{myloui|qky44fE^}6@HM4zud?H5eK0?~-e)hk$(;S@(;}Y`=Cyt?c zFXt;^GjOpthZ-=p-XtcD6m?{0iXjci-oPvBTwpV%c5=be)ByjTznvE^(}GQ#TYVS!$+}#= zMY-4TwZN|&^3x-)Lwu+K^3zO%UM{+YK`?~A(=IxLJxfgxJi{mp`)urAGdm)%-$Y0M z+k01T8k9S(Pe8=H5oK%L&x%py&__Ev9RW&GWar{Xx;P^emB73%>~YWduvyp-%0f95 z<0FS%Ohc3U-)fBt`g~T*l*d0828m1_o7_byvo0ZI-WH)xGCAW$D9XcZV3#BNC7 zcO`Wx0u9^qyV1A`HXM3MEtL0S<>J79#%BK03%XGc>E_WLVzmS_C|0pl)~_)dhyKRL z?fBcjZF(i4UBSV=<_Jm7)ra8zLz0IVv7U5(H6qVF;Ao&nUP;X8tF`%)Soo5fEa2uUWYXX4rbwFv4n++K65^KBc808>*B%&{>J97 z=Q?T8q}l1e@%8H^o%_~_v*p3p#_UBPwy~aws_nbBA)_~O-^ zmKNH=g6`#Xnrr5Mv5cT0av~<7c9CP(mOD%|}sy+S&$ytEjBWU^nNE+D;)w)cq_e*C^mUdTxDHAZ%S24^SsJ=O<0Jxc6*E$md<_sB8iwQmU;*|_Yd zhoof>v0urKgq?c%E1&1DWv6-o;qWDlU(H}p0Sbe$87j--XWR~gj_n5Uzij~@IT0Qk znEGUDhBUz^J6K)}yY~YzZ^9Ok<6%%6y$JsqcmmfJ@LVo^6fD>v0_S!ShKjC&byQZ% zYTwg9_}746n;?H-JWvlz;6!lrnvhj|gFi}FSCg!FHA&t0_tJy>`=<^bWLp}@_1ro< zny=PV69H?4y%9jy7DrhPc&0LX-$}hz`ZglQ2|?4jR5pc-l4-oH!rF`K-OcA2I=6KveLS`^7WXHOkIa8wW0IV-=1{?(p6!;3O{*VgvVC_3F`a+fZXwaKJ7<7_Do zzK7L0VoSR6hQyLy=Fo1zA+zen&YN78*S)A<^84;Lx~3%0dwzcM#La^SZ64(1MfAR= zd3V4X1z)*FOdLRk8;tC`7B95>=DjnJIwp-M8eBUpKfiR~FlS-Oz+uA@hIH;+r7h$G zT?=oT$q%z${rim=$WO9f1Nx4{MGlf}NOopd@4CJ(aKT-_w65`*|G-x!L2<-6b8s!- z)wiz)r4c4t@i8p7UD|ZLU847SH*O^niC3 zBxve!Y=zLfgiiqQxddJ{JP}Q~z&6jhi_SP+%+v!ZEB}slt>#nN=hg0)r1e8?cYe)} z55wJ%i8WH8d%>XF>BRD4Lu2;^4fN_rG0horhJO|+|J865dxg(l26IJhxOCXO3RyxJ zw$-hGCIe+pOs5EbT*?{nqbuCV4yTMQJ%c`1EjHH$84t1}M_AtjtWV>=d4RglT=~2| zTGo(1D??;_5eC(Avg;g;O5g0rSO0G0hY#>4hc*EFp_d0M3zYltinK+*(V##-Ty6OMD=9~O9-MVu%y zT%4bgX{(-5o7d3p!7=e9n>C#0O4D~N>TrVJGo1ayefRc-@)DZ03-qpQxPN|nL*2pq zZj`?EAP(BM94Fdx&2eNEf7bdq`#jTWIgn>o#4~h>5O_w9K78QIF!C$2RM^W-c$dgY z63ilCG#h0*Y+ATRq@3sYM{M|e$9Al^dB=Nu$2`vx_yh0#eaG@!wtcWi`XF@8p$0#; zv>)f~dmoyZd`$ezm-k~*yNW}T(DH})3V9w2^@+M*T`2ep4oC7eGh40=(rF9V%ldE| zM$=o^$9#d5J!g9#)`@Q#$KG`FdD}nZ|N4^My>tJ0Ha+u)n~tpG&pdMU6kneyotufx z@LI6-fNFQ@F@h~uk9pbb()Vnw`*pzPXW5K#yrU!mHnV>z&jf6~S-?hf;iIS6{7iSU z2X-6ajmV%_`=~%Q#;Lc+5MKb+&^H2oRfMJL%euE-wi*u8$l{2^3A7xe*fwJJLlcv`jRiQHZ z&n=FSnmdZ=yxdOf<{96Lh$Z3=Heo;7=t>5-=)|E(gmTC?ryZsu$kobJ?gtXR%GL9( z1CEKZ^4^ubdk@O>AW~B5YVQ#QAQKZyUgMykxOn)DV`Ef=;&IuBS1bshHp&95bsGAq zqaQ_jhqj=-&Fgyw&3%^}CqAzQA+UwJ1pK>rpm1D=hnHggyVLqd@dpR6hj?<2$T;$3 zd(PsCv7`2~9PWOnzi`h=@2)&>n2pN)rn+(LkKl(he!+RdTLQe>2J#EJ@g6nAUiOhz{&dp8wz^;I9NAa65=%-e%KNG` z9nfXs-XRHbMAY2EB>oc(zu=S$z*8FimjTiNO)&!Dq>=O*_!bz%C zHDXlNh{gg=s1~S`Tlt%=eQX7?3O`?>z8#zBBV;<&hd@oYlCt|6K?E&L(C5)~~VJb*7rG-fYH)Zlj@k!^DKR z*tP;63v{HObR{VpEGW3qqY0SP$c#=oeeV)x=VRj7Gdv&@eU=(-*}Is(%l5|c?(DZr z_dlg!{IY2>J8hbve>|IyuRXA$Zhhlj_uYTwSw1C`Z5w%D<){ruHt*ik_^j)x{CH`s zGoJX3K`!0`jXH^(gaDCyL3cBS>uk9xOj*F6;F8)r&7$f-7uQ({f@n| zW&hpmRTV}xU@X*NsJ+f|b$WP1a&@+pYSvRa?@r}UA!FhouT_e_;{|u`-@-e8$3~9E zMy2wPBG$p81`6{BeGcPeZqf z2?z+EV#nuzwv7{0GJ@dOm%r6Gkz2D&u)@$lwO}_K4m~ksA*%Lae zXpI1mw$RV2Ls_Y6g%m>Gd~r*S`(50wpw4x0bG2`#)xV!sY1KMv9;)4aTB922>*1i; zgQz&6{2fa~Tj7^iEf}K=Ut=oCNva(zAv+Dm2svlpq@C0E93JxJ-w*M3_w3#O;+L%a zm$8YX#t+s%n9Um&Z2#`D8T{)7Z-4jez3!i~rKJ9u`+F?q&rY$0n^hicWjwuRBhfe! zWM^Pp#b`DnGnH*`9*=bpU4yQ8A_Vrs{T(fRu zoq8^6h80M#oFerMSxq7dP3ucvEtRaP8}&S*ty0Nxf_Y-!mb#Ja*1Wi7{q6raz8=*? zM2G6jFGH5mvkCqf#6!$#-V_}=DJjB;otv^tMGhnIq#VX1bXk*@Rsgv)N9N!XLUu`? z`wN(vKYdP0c0U&o&}XlFf{;y%yfe8};C>;uVT*g#mJ8TEt~n+)V9_hd38|o793sb$ zEHiv(Q@gpUtH$Ktva)mTb5c(llNDS&rgW!wOkpFFRwkW;tbXDz8x9TESO?m2T3L&R zhK3z2mxJch0(P($c2|iq0IVnXN;+|7}U*4xIrf~K!TBSqfyK_I`-+aivcb^-%6zkWus-fZS-1{01 zCJqy;^lt9`v`TX7i)+@@b){t5W*n@rr2G!2B_)y_MOnq#5;bE(OXbbe6mfL1obt+o zY>a-QBnLN#&Mvzz_Y)T5;D^}q4}yY-HB*y&@8-{jfmKIEMk}u-W((%rArRZKMcT-= z=s(DH6%gmvMTP<=oWn08CZ^Y6PepGx>i2+k1WAB^lZ;J~ZBC4;36^ak9Qx~(D25T30T|>uX<%|OYZm<<0WA{^lI`Q&mbi3%0)J!{f5tg zAtv{8QpxJkKEgQS=E2&CJ6ZF>zq(;$e2F%uZUOYgdU%LXHzINqFeB~Ak6UmTfIrta zxQlV9CBH=TXSIGOpat?aiPz}TTxEUJHx1H@s!yOT;Qj#9 zLHVM=y-oN(h|hhW)$+GVhM1N{?+F3Xn2ik$N*7m2gER?G%en!&DavwXH|h@@BB#AD z#~$5=Y#|*2Ng6xBiG)N8jjNq`iYJ#{d_c|1fH2_$DB~k)AWb&c$}XLIzJGrtv5Ta3 z?@P8sO=d6XTv)0lvEyag`3<;r>zfTw9A;(rfd2hQc{17uRN}Ro&E8eZWZ!_kOr8vO zdL6;P-hdj)&<$74#|hgGy#CkcVy zLIVHX9C(khFTXVQrDJ1{;qRZG&BHzqUoj_IkG%iQdL%HkKKN7Xkv^73j{Vbf=tECo zNqq39+#SL{E#B0e3l{npWQ2X`a+&^&XviT5gT3%4WdgV>UfFJoy)_%R6TpXD>`09= zBMF=0Z$RFYw+s(*L=v3vVy~C}!mOl8&M_#9+%1i5vJ7Uxb%N&D!8|LY ztk8su=Ymazr5$+_jIwWH2I($mbu29my(W8h=Vx}9%?0u1|8Ch*Heeusb~}I5XpS!k zUCBCb4-LgHzTUE>bl?D1vV&#OFJM9Yt~O7IvOknT+>Gf>6KmD)u2brwbTC&#nrEET(ZNBCLU28|;y|uk)va(Xy1uf#a zSCi@%vA5b#M}kr`iqCuZOZg|)e>NzNrq|e;8(2O+zJZ@$&Y$HN*XQzsO|Qw@_^TTb zCd%6&bW$^1iu+TzuO(dUTV8nb9Ctr29BGtyuW5!scYc}zuYh58`ZEif%~RhQFRX)O zSs)7<3)idPSlo>I%UBlR1uZ9!MGtKHCBHb9`SD-JGJoPnTEphC)I0^;&_Q&d6ac-4 z7SM}Qphg4Id0%AjBsCq_Vpr0qFrnQ_?vZt<{ zc8W;aL3XsY)Kg$z&AW?OJM}=&dZC~M1+;Kdy*@l(nu`q>h=`Y*%vCQN1%pl=;ZGjm zha3MbAN07|)Tq$aa6{UnexGU~ZEXmyzvj@T@Q||5bxuwusIWqPqB1Apv}1h^pkOJ; zx^h!Uv{$R`@x1TYhCX@cX`nXG)3oI>DMuEVKUzmgMUM!+3myvcS+D)idOivZq>9 z{|a0ia4ie}3K|@c_YGT;>S&3uIBCX3O!c>n+uLu-;N{zfo_ydT?l6)wj-OAkKC$=d zeQ*4F#PKHo5ze@r=}BX!R2$kmejYU9yVb+_f5$)Y-BTOySI9SaJUq;O+#yvK#~-)# z+EDZ|PIwqZdQm+icN6D4@;Biw z)aDcl(N$GDEmN?Y4to5}#41+jJt0qYKd$^l$G+$Z;!wOyoVlCfi5`p1XKo;1AZyg4@+%!ft6JiA-wY}9HMXY$zla#N)gQ& z@`W{VneK1YxG}#eyE#+7+Zu-_Q9dH*%?CwP`>P|1E_kx#zelz_(a3{CDsTv+bG;hd zMnKRf8YF~)vM{`u>9ybnFDmWkJ7~` zN;lVC<+@MiW7`x_r30u z_>a=lJf9uMo-Oc_@4#viUS#V5FUsZ73;4UJs~!4t(Ee2-_&ip7FUFd`{9n zr}^n9i%pgqzc++kJa5>%QRt->@U+iSK`lGe_&xv8nDpCp?Q_2Hv~iK|=8z>`{e2_< zaid|gSU<_8+oC)w_Y`yW)}_(TMeVSpAE~_hwK;R-o^yutMAAoXbX%mYSAJg56`yZI zAD1G1J}=p%v&y6TC0E0z8a7|}(!&@4@TIfT)+;|x@JTLx;fv41zscspb{;9{tJQ&# z^AGmr>I3q~gZ%I8YfMzqjb@TEOCJi}rW*DDKaqoAPSHzd#TLp!WyL0$Q~u4Cv*l~o z@}+#~TK+?0qhyr)8XMgg*}AoB*)q0b-8#MmKm8=dBH9?_{`_&VCOQLqTsfsg!Isu) z(aa&XJY+H`res{WPPq*x1IyaBecN`Hee=&ZI9Wux?RfFejN3y_*#l%MJF;>|zZ{33hI18mMKGt0|o(0m)&FkBvt zcm`ICa^*$uE78@(pXE8>K1HvaH(C15id;T`56G=x4_~|ucaG_l$m$MG_a({T?2z1- zA7}Z1wO{vz5~d6QUQvK$R%xdrUkwr_yhpeEtd8geqchM!4UO4wtGUSc#oZYqZ!;TrZcwIYc0`x~>1)XD6rbqIaJL3+ zk#HxWuLis&KsA>#L6P8zoJsX(d_rPp&a61PeEG1OZW^|H`Oy_;Rx~bKR&&!$HOrPY zuHYw1vpSWQX3n3VSz20G%I>?dQ)$WQ($di-rJba`Z}8&_YL+dpty%HLiX+RH)hwW& zj^KxyTKb9YQJ>;L<$Fp(oFZ)^fthf-Q>f&YR_=BJ{u>y1M)&PmwnCuPC6t_ zIx8QBOb8vKo-4_}EgyFOXO6T^ALM>TdYC>Ji_h)XKBx9ng!P4F?^tQw9DUFn_aLb= z=nZ(6?~o7UHNg{~gLom!9Pn&Z{R+XtXZCBKQE1He3?H!qR^%M_jZ$YfvQ+^~ zVqB;6HBiq!txr2cZEiFuO$#B?dpaV+R+hpuO}No6==qZa#uYm|#6<=h{6i+0{J2hT zNLen)?AgKH^NP$NslmO_*y1gz=@-!F79K6VYG~&RJIokB3AOvkk3WXljmjxL(DjuZ!Swts`|;y;-fQJbKC__U_=%M(rKk8z*~(|3=-^}iiPZI( zXWTF0^(Ue=D8^ijF$aq=aXBt}{;4&+Cggykw;*gj$OuXp;BvrqU(F-RpG-S`{5+DR z{^`Dp#+o{n#$r39t~AOV**d4?IB-g`CzSh?B#dD}##kqK@5*(9bfa`rbqjPWbsKd% zbr0&E(7m8LrTeGuQ{8vECiKrWvjp_naI&7PKO2sQk#pHnww`Te``DxG8TKlBi+#$z zV@;A#_eA$*_8xnKon$Yw=UF2=gcOtgY!8}F-i=N+YuE~Q3%ilc zVpG^SHj-7dD%O{kv0_%pa!|6`jwP{J7QsU3&SV|eUDW-k`$qSL?jzm%y0>+&>yGP= z>7Lac(LJVXKqrFTx^39oH|SRBmg#QR&C|^Q7mU%>!nZI0I;TX}4V84+$a79bygM4v z__mdJCDqr;NVYp2g^qt9#K&-`D# zw*7w$-|hq7cP{@|uYKYFU(w``z%gdWF>Uo|1s&H~OTGB5l|G#ey;)o9>Qmb_K|UNG z@9L8F2}uZU#5Z2mhQx>9Z=?EOt@^v>|HO0ZC-;X;4i26i;(A2| zgU|TsyGVw%_gjPGyz{3WbZ{A+_31_yU*8yp`39~iBQI#G=}&?nc}JHoMdplU|lJIw0d z;V{d|?Qy*;wh)wT*$wPbIl}c7LN^(-b+AT$X(elW{CEM+V+QOV>`vDO6cK!kwlfK6 zDJ}L8_e<1Qn(2BWFK>-hL8GfZp7e~I>(V6mN4=nc-|LkjWmNE3_E`l!j-E-n%Q^B{ z!~L4wuAQIg+DjR}ayEy3%guA7vo(gbzv+$BFVbN`(HSo1D5tb%v|2W`J^^NBYMKQP zQsZIr){7$r!Sj8Z0L@`fA4ERF?Sf8M!1MO7P-}~5zoTj&d^0a>m?;1K z8Gm@BFL-6TzFUkSt!|JhEyo96KV1;4cf_bdXbI3kk?LFg5gtMNIc(yR$@&r+ zckkylJVgGO2lEhRP*Z0bfPK$?a3x3|@*3<~`L-gVMA-G$%r5b0x|aRRYp zQxAmz7qrAtDG`AK#3UG76C`&VxuC1^@tIK;+%uKXH5|n zB}8v9!fr*sHlS$%ZZ;E80_jw5 zx5Znovo0wu=%&+-dB7Kz?p15G+J|_^Qq>NC{B@$?RqJ=&eR_k3ey&TH2o8ssLN)c4 zXqGDjycq#U(Xm>MwF!}8aA|15G|crN_+z&`Mu^fs47uHZYrMwu!k?kZv(aQ#P7y!P zaXq+3Jp9`*^;usTAxl}U?L!S1>VRwyGjbbEw&0w=#uaf|%V5N`vO>&HTC(B}A@|z^;3F%9#01?~5O_@Hl0(Wbz zW%0@bmagLan*Bf4-UBeID*FSTd*6FAnMs|Vo=he)lb(9%1c-zZ2)#)Yq{t#5 zDk=yFf+(=47+tXC0z9D@ZD=)BwixA)H%wHi4LwGYB(hC#AYCYBIX5gseTP7$KMI& zX6c*=kWVT6D|#8|BehF?{9hsb5y5)`H24?j>Er?0bl8)bW--v3nN=e-re{Q4+2#a~ zugs}g6%rIHJZ@E*#ptCWT34?we4XzcKmPZ-VWqS$d#ZIpI~g0)FRpx2UBPbr69#ZS znA8_rhFGNe*ZB{owZmk zj*pEo&>A7BfjGuV3MjK;1sNu#)ZNAGB{gcdYGf}J{mi!h{Il{GHbuSTbUs!%rof%) zU&wE&v>+0XGFnV$zf4BGcJ|9kHp41l(25UpuO!a8w5w(*`0dQQ^u_A8U607k%)a#3 z9pJ6s_>-j1{Fg-VIhY6ltH#4)$hoedBM*@eW}S)>Y@$M-IG40Z{Sg124owbh-3M%) zKjS{ErfyI-iRocthqCJQdIg@*BH^X8YGSPvYt%topxH&!88i4K3i$vYib8AnqwF?y z2(xL?4s7aB{q304^c&T0CU%}~QXU6g*-rgVE4w$26XG#lQcMc?)E1TixD>~~6lS*a z)FQQt{j!_=s#X>6{`u$K5h&JgB;*PNchi3ezp+pag^vwrh1z5$@UXJiG`9CHcB?-F zG%q)IJ)*8QT-0^9w8ei3f*kh3aSZfM@X2_TOAd@NmoO-~0?Ft#MpL`ADR7)+1@>w< zR@Z)@uBB0+0G9H3&y%{LxZ+`vJD@*kk2e$LY zq4BNxrbJJZf9CM`u7Cib!2YO>Yq-IGQhicd-*qW_>8DqgGFe{Pb?tpxPLfx!Uplm| z5KS)sX^(*dtN>qv$9DayNfLp*dB#Ql%z6s1x~&z}~=KqB~9glKzRZ;vq92 zen3LBMt4*elufZ~DpF+7+NAF4DKNaURBq@cDMZjU<~|8jt;G(A)6Pv&`MTej=7Oy_ z^c#~KDs4UQbQZ#OSWb-CI|B0s^Z7?A2EUMY^bYE!Q`^EKj&$Z5-9-5_WeRLB zDOk6L|FQH$vx)eoB|#z4CR-D2dQQ<&ct6Gh-I=vlTz&=iVc@z}UB~M8cH%sHfAyK$ zZtL9ZirB0n^T4A!h7H@nTX6ONjemHgqvJ>*3s*$@i`d2yF;2Ap5BhS@{H=*`f>DBh z!AaN59-u8Y^if|9wo{&}?owB%H%5xpparq7L~#nb>TzzL#9t4Izu|VV{x84Gu045D z9Td?7#d#8MzK(!a#tEFar0vQuQ6|Y^7}JUHj2iT}5GvSk4nhl6F|{Y9DZ^07&U4UO zP|nidCF-(6>O)I@wH4YJeUMa@h;KjjfWk7cvvXM*ic1>Gcu z_<0Bn=8R)*FZUX-s_VmgbEOVe<52x<<+^cqwO{w~q+ugk3$E#RWb(Z%dh)1QqV4MT z_7m4fG3zq6{o$j1E{ZEw*~tHG(3y5&QLD|PYBhgh&?E9BCB;=V7u57Gg=h+ z;_j2@4x-YP1RbEc%@MuRqSbkYU4{o|QNJEjqd>aL2ASg{4l@ z2>6`JS4VMUbcSMb#V$QilM-hL+{T~Ro6`Cp=$pbX4fI!(^os+Zvm>z%lkAG&8gJ3g z0Dlj@m4}^=@RL-Ooft!K()xo{>?+{~eI|erAX=(Cw3{2Ujc5c0FZX$wMbl8Kx{b)} zQug8Mx$%jKPN(tW)oRwNdGSv1%;s%rs)$WVt(b*YEuWlVmIe)0CrS-XTec1^k99aF zE<+9`-@9Qq z-f^6GbS09l9`ewokcY@$Uy^~=@wD@^;8?(FziG(W-5E*U-n6XF-BU&m z-YBg)P*auZ&ynrX`k0#j2gpI7L3+LGKR)Vb=-%qb(wp#eM7$X>=(M#lAQ(*3 znqT=U+Ibf1p9ZG2A%Bnkp65$sp9=5(uOD05*0%H*a(C+ugx~TJkp|cJc6W$1^8HWNjhR?qeAPuG56+nK)ZAkqG)!r4^8WGVm(}e-@Ywb} zGd7N%P}AOL!lI_e<9(~2zP;tDN#h2MsVi20P{Tk1pNv&v@VqWh!%Pa_*kTQqyt>wq z!w?J!tg`YGS=kFGEPizK1?*4qv_Ss$qLN#t&3KE~&|)grJ*kd^-F*!tpH%cmk~LcR zN~m-?%n2Ne5h%f&faA(y!AWx>&9DA)`SLGM&iQ@8(M4CWPd8k%e$%G)*KCkiv%R;f zU#b66UmD*Qcu9Jm)vmua@aWs`zW0~6-hY>1)eXk^`Rf2H?K{!dZ7m6!lS!~8fSX_~ z<7U0nL7u0~WuzbD(U%~}#;Z!3kBwbtw_VYGthw~6C)YAd?tpPwN%tjXjT?|_VQb}S z>aT&PRv*2vW$1#VtNB1|kNj5s_>=nWoG%{DE>$;-Ud;LS`cGiU7khYv^dr;Str@#d zpqp6W);J{3Fyba~O-pCfN~{i<_X;XUZ32O zTgK$IUo;_)@twCY8_V6WE4T;i7RX%{@@l~$;r}X0to4%|BZ;92-hx2`*vd-#Bbtof z4bB6w;4>b!h6)PKSK#r?oPT)ER14o1=&($kbNGr8!$-|sp#De^E?CU$ML9mmG*Pjp zfN0bINDo5TeD=Q)1=an3APWxq{9L{fG!ZNI3cBKON(j90f2Rem{!diE zjsGVaV7g?rNItAP1RXH629I$q2xjFTgweyAP-y_TB@k7sCy`CG4Vd zKiEah@G@jNoa>CyYcwwGqaJPX82r4BRiQ*0gtYpI^=C2M!|qzs5oIN0N>vlx9g~~t z$IYBK&oyW0^yOPOUDqUHm8ov|MvCHqS}_;_C(*2c?Rj<7G^;M%wo>*ESO!ZH8<1U8+$ zkftwNcHgpP>i%WRxQ%Q;{=?@7{^Bf$g&nz^{?tD#Wp|$!`l2ELkH4PqTjBY$PS-*3 zk8P+f%}vUhUHV47U=FHu|#P{1rA2JzIeO+yrY+9(Zag;>`EMy5k_7 zeSl?P|GJuf)s^Laii-+78BQe%1M9a*&JacdHayrpb+meIhUb7nIPsxf*0_44CFdc+ zH-q?KC)KxDf%XaP=zeAeQu?{cGSo=*-G7qk@jBe`Z^F{yxKh6xbfb0E@>=z)=#|H2!JZN2)4(RZdK9_=k{E z7zg-AhsfwqsU1hjNUjxPBcBdkn_B(zL5GQt>V7 zo_nJ3E%o@l_a^YXd+#+@zpS^VRa>od#?NUQ)!NABjK9!ktxmJ)Ulu=DY;(rX=8dhR zn%L~|b8Hs+pXBR&=-Du3S$0)%U>bBsEM`lbfDlfZf`i#Qz3h0u9byMU` z@UtH;?1CjEOXcRkX@w<5Ci{JPJugk?wm6Q!Ey4pFJm~T)_}bDdZV3GK4DyJCI5O$X z=@>k2$H@;*?ii=tQon!tnSU7)vsQE->|BwRC{4Wc_3E3m9H3=MYy|cR26}>i12q!9b>>AGXWFebjg2+d3j@0d{?3D~MsU?` zxQ)V&;7SVmqGDBukOX%dlETVt>AVzR6>)b(26DfTI0A2fMQvg%3Gf{a!l&i0NI(SCGKw)3AapQ!pf?>g2=;90qa zt>Uq2An=Bo?w>~mF#dDEkNg|Sx}wFvAsbPNbX34+#4;h(0T?L_&HWk<%Iv5_a#JPz z=jS@Nz0vvdj>`$iR|D^<7WHv~2#x4!&3*!?D3|V>=D58 zr8;ysIW1>AMzsO9^#ZnT-AsUn)B0xqeBZ{|=-_XUtX^zb|Lcu=#?5(X@AV%WW{JFk z9|0SkMhnp{7K726V}T!yy8(Mb;46*=$jGw6T0(v>%sd)pt6wndu}c@D*_Zu(Jj&kw z_g~@tg7N5pUw*nryD`g%mO33SsNu3fFR*}s9B z_2`pvdj!s~=T7X4qjrb)0CV=ds*B3`g|<|Jmx%bth-<9*N=}H?VxMY(kzq}DRZys8 z>_grv!VKQa+WlwPzXH!v#N=0wivY>+Hx|z<6s48V*2>hw{`4~Tded49_!G?kB>Rig zEn)$Y4B8|@@=l)JRm*-QIPj6*RIY_|4X0Lc2ARgpeZ*$WK4y}jnGbBAV$ul?ODFh+ z^ad@OCVZUvFM^IQBvjBRO~vG21}pY5B`))HH2&#zC2nY-}u z4<27QHzuK0*}&@Zd0-?%?wc|Fu1_z!zKeKpVM*qmDtHT z$?zt-vV;F}kKD0tU56ai&O5*>&YU^3LVi>T8`SUaN)}iVd^(FNd^)dW5w1zeR=m*tdOzni8)em|Woe>bUM=^3}v1;c% ze9S%YwYP!PtH7m5d*&PVz5E%cv!}td5=4BPe2RU)f4}zo9{m18#P2AHe&0jEs70GG zgm&^Hh8Mfj(E1}!>`MLY9h4Erw!Or&}U z_2Xey?*A9d#iyKrq(2?y4Z+zvuV&E~S1B^DXaF@L*bphA9cPt+owsNceb6rYLvv#M zKT1#YgMpFK9D1g9O02t`XO)5W0t)d#yAjP!e9l>reCF#OxCr~44*H0eLeX4f3^XS4pDk2I55#E5k$d5$cUjcoAp}Jrsk2kr$x8#T z{i>s@vW&f>`U2t#T*%IlR5<%QCP3k=c~@Dk?1G(;ZSMh>$kLT3f{hD&iSZB#m#8NKu5N^h^n#C4`XKF!nO$H@KBW=velacx9wB=~ z(37A)(5%KMwSgp~{BeSvYyB6_6KXeYcmYgWZ)^M?9X>8Nph7VHAjWD4Cea4U5rheK z^h$qAkMty+h~AS=5&fb3|JnwP=W6u&zqUccsy65RZ*8C)L6~~9A;^!z{h;wr$bKL{ zV)4X7H6E|YR+0RM)+Gh+2&NAFnZ!Z)ZDbgy@mw({P`?=@=%c~1G3vC^17)Io8lsWu zyJ6AF7u=kt5h|M!i?X$OsXMLcTfi+iHKvjf;ON)jToR@qf?K1YU~1JJ0k}49BJzY` z7r82edHnx~0KP|_ZkV)sg0sg55e*29O@SY>g&4Fmyx`wxhnQiHbPA?Keb9B6U`*kD zpz(lypnM_P)-VOy3-Yq=AtAbh<`-=o^~$H!hTJ{#5g!b4&U5F}>N_i+7~)};d;U5F z_C=jqcLm3LXxcexd8QtTin{sC1@lF zZr2m`VBMf1IzlX3ptU+Qw-dJr&!XLVd(o2C_U=}T{^{Ad=gr$)Yj+>@%zB=F3gKJu z&k(jFkS(Uo^W+6>X#dX9$N!BUgE=)U_pUdbnS+mnbYyLxqVPQmo@Ot@C(JKN52du- zdMMe4MOqfD2@-!{mw^`$LkR1g9M}%&&k^O5yckxc_z%=|r|*WR7<5jUMRacYgg8~a|+kH8z*&YtAGLht>IKqWDu>VPg8L{=@MlTKQ@Nf z8-mykQzq#uf;8nTgaQ(zHRK};Pt+k;%(`h!YXe)UE*HoKf;25h8?IzC3yyEXH^Gmf zW}sETui+fhQn0^7ZxOL}hA@Bnv>@1EQ5wyQF&ToRo96A{N8m5i1|dtA<0=~A9}UVE zbQRe#fY@6Q z_8{stx)Zdc(EuHrfz4c$BibM2jhb8x`eyAQKG2ZH8-nAHU>CZBhC8k2gH(X6{zC5u6b`w6>aa4ZsCnX$tZ>*7{RJcvu2_dw?WER7Lr z!&<9^CP#HykSV?utVs~9f3zSrPzw!ut@Yq9Xqh&5#Gw7!KD_Xf8T?1^#0xs^p*?dG zIzVsJZoho}{#^pPSX4Mcy_T)Kr{e<3xwfwV{`D*GK~}*7zZX1^ z>J;mk=x?~KAm)T!Yc{rWLPsan`#ma?OS@jXXXSdL6YzCSZwcpP!hbyFBfs&VsT)vR zXU7C=p#2_|QPwqUQQr>C5A}jSh3xY<8*-6+>R^{4XgTkh2FLcnf8ZfWsYjB7lt$2L zs2rkG0k?3mV`SuB_ykbU;$YQSV9E}TNCW1J>b#gt1v(` zFKXqG{-*@T4n{F)yW9A@z%Dcm#)fg!{;=E@))lo`f-Eep!tC=9;fh+?vs^K!fg?i> zAemDu7hsNq#(kc0p;Ll~LIcrEP@#fRF1N{_!DmOfpHMFGNxZgoeG|kne1?2>MmZ~u zs)JXIu81_)>E62>EPa{+KS!it@#jb*#ryvqk%m(|y%3FS@BoCK@JJNHw09aM3B-v% zw2NSt)6bDcpML6-h%}1(9BB;hUq6UQa}NA;uia{O4L&=~#9nEnyUt1@9qXOOaCVxM zUTOH;v(oT2z0$Ck&PoHdF}&U^U}kw|r>XCiMz^VF8nCFn!6b~&BOFKm4t8$l^CEzW z5&fXyMq78%PE=>$REZCsI*N5^1Ck31a&tV{u1q>wY`2*cD4r?_Uok=935>&vj|(3f zAap<9cj>N9|EIUzcANjRy;ADA9yO9BvSk;ED?Kd=KmF!A5QI&mE79hj?a};3_ZLww z$HVu^g}TM?zH+&)a6sPbmCG((Fn8v(j`p_J=AjJ(5Ma9`KgZpxyfTEYg zMN@m;%+@m6&p-m@x$o>e??dVT+wYq?JNNGGRG;ns0FyobSbdML_`>RO468Hp(*=Yo z8bbg3_4F62NH4{o`~Ls+cN)WnaGxc?AG-^?#&Y4est@gLEI}->9B+13W_oIJH0^C9 zCEFeR5S?j)C$5C?u&cqyXWL%-V;|mz|JZy4l<+m3K;mt;(I@<@BXWapJ@Fw7{qnaE z(J7B8h7~}BMp5w60EDsJ1R3sAPozFdsuhLKr z^Hps;N2ci>&%s0}huhA{f4b)j$h2X;Kx2f?3({~VT|x|A%$c~`Fy-${ zOk?uUWg^Nr%cem*CNihU^)rw4!^?BcB8~sXJ0W(M7Qb zyMK>3hl{iF;`~u)Ph+<9QP%;H0dRHaA^%fRhiq{MI&Wj`_PS)3%n7+HGl|i4<)=L9 z(@z6me7cm4<4J6sdSBoR^*$E$>8Csq@4tj}Oz*x_$q_VW_%OU7S_=9cr=#bg^GEMV z$^NT?2aPu1`SY0(0Af#jk21*fuaow)J8TGdDdOV-Eg^p=niV7R8ge@j_IpAV(MO7u3cmoC7+`2d&p&;QSL`H0u|`k=0l7cF{!{(SuZaN$B+wMwLq{FyyJI(WP~S6wMM z@fMm}%ix`_1`%2sFe^198gm<>i*{gcnu*z|?|{nLvt~@2GHGJ_xG|$!N45+fI=FGr zfcje6(Ow$K7~%OOgeL^sM8}d}zh0mJzu%FA_m%U*fA230|9u#KNjM7qy}u~@=TC*V zl|A#-qYKm{3)G|Y)yEb|QUCA1ek8~o=Ky;2s~P^|lCW<&gU$h@r==w0oTMd0OE?EW zgNoUqP1)gM4R>;85d1iCezZ)`6f57P4&u{p3Pel0hWi)Z&i@m*^A2`QedCU;{)`($ z$McfS>Z|;xoqYgVT!8&Y=Jj6vGPFlO?;X^W4N?ygnuFb&#u6o?ARvtjjdayQ5tYd zS=nZsTjtYtq6ItAf;;#Rfql251#jNI)t?E_B50KS&Blq5ml~dfOMB2~E6yCW!@Jvb z-5lL~NKea%MweW?c;WoHb7oEt5$cHMVMCf4=;%dXoV+M1%ts6mcV>D@lGAR1Ga!m; z02=k+aE%XM{CsXRE(Y;rz?0PD8@&;4%d|8V?$DdaJ2F>@WZf^3-qZaS-$X!yud|1{ z{e!YvTq9Cj24}JOrk0ekPc*d*e$w64oW=*XG`YqeZfNJ zYi?@(q@}s}OZ@VAb92i__|Bgho|g4VbBp$JcuUJi*(1}Nd3KXK?Te=7rZ3V*W;X@6 z{Kui$EpEw|)sm@Rp4QTo#p0S;l2K_>;6zqabE>HIFpB&VAF4F)oT#)VYxrX=O)Z~j zzchc2%BfPeu_bMEsMg`1x3moZC_BCR+or71samDkP49{Ez;y5FHb_57Uq-M6DpS}lD81&t;Cnul z_$%#X4W*%SX)d5WttgY`0(pWzL-TdSX0Tc6ElVjEV~uAHO4misdDLC7Uk?>yOq3gu z=3MYT7A!4t;yWk2%q8veFJ|S^b^-DE;I+CWc&Knm(~k$*j`M$LIU->Wk7<;kt)C#S zhMqR;cEcQzMgcC!y$5hnokGiP``0l zvcqM1T#}Kq_3Xqa>M}}yik%3Y40ap!Taf>R%XJFZLVz>?=NNb!{ym~h)Ge8@th3m^ z9saQ`-q5UrlnFob0?tbRNx&IVG@oBnHX8;XtzfHRu??b@wuO1iB=@Q!gG31hIl?%&TY52vRzAS25Q&xf$X zi}H+IjGe%()b60qmTtP#)->UFN3`9j5BiP^d3*r^gtxdze=lL0ro5!%knb3Y{4H6H zrqi$}EK+ZPm%o$jWwoNa9P#!BTn>5<@+AEw;K>@l6+Fgh z07+g>&bM)e`!+RJxzhi-{{^Y9?CE;1>(6o_=!Edw-6q5ahQAl^r=G6tdir~bbYFLt z2ezW$fRkh(tu7;EjI>}BFS5o!J{!_lS6x+Jh{J73HftP62uzYrDH`Y;qC&?Kopc%z zfnvQr@q>rH`sfF%qZB`8`4~dbRXJ=129Msp%2FJHvmtwV)mvFb*#&h~h5hpQw*}d` zzS(`s3ae&@Uk0oN*+p5i^ZFH59j#qio8G*$nJIr@iTra+#F7~D;&Cm3d z^lM5=&ng={Fwc`Iq;e%;w+O?d-k2Yx|}T**kpbUOXj) z-J)w=@zUbWUi_J_oH2v7rlcg}FXb7ZFAjgcLl-_8;T2E%ga2KV(Gf50jCUB9tWs}T zCE5K&vLwBQXhL)2ol!;!2REIY1GlVU3$bn#?oVwzRMEOod7(BaaGp}9c`-n*07L_a zcK~uP{ojWO`=lYumE~$|#3k$DRdx7Vy_&A-4Zks7`1CzKo6ScT^$bfM>~;@UKgX4Q z`x_)FcyFj5^pBV%@ZO#%?}f}rbkSVUJ$?+(Hlhx}0T0dZo}e4Zo+F3P)!aS?_V)B! z=+j(0`X7nti}RPwaJ-CMNoDsS4J!Lbpr?1)G8=LoAz;h-%8t@G0Jk+pTmRJ@Jn7B6 zN8$1XnuGmSJ>kY&67;jLcJ?ej0xvzv5BlG$H1|YIkfn4T>RrD2Ir(qIQML1zAEU*u zPSE1`1aSlOo8fRv3m6dcB&i_?U7$M8ho%2gmjb>Obtu6o;v7&voU;=4<++MiKkwZL z#;VWkm-b*jp|vHk#;3q3Aweze*|S@HgO%*wGp79^LM_qSInu*t89DZJv+A9D$baXa zo$?xTad`mST4(ICmc4$0)K|NUz&JMh4o%l4}eU`grp z+WQ|^vwHvi{uTP#Q$pV9wrSBgC%aCAxn{d;!Y6N$nazrgaRvK$r{g7UzeNx#TvKJ z?0KPJ4uWF05N^nJ2|H@9a?66A&R~XQE{#`tZOI|JOzyf_dQ%$Tw?`qL4y6FLJpn4QqM^-9`^3eu8t6qr=polT6HKG1g&T!WJsF-QMU!~#u2>M67sf#Sxf_( zd~)g$e1qKMt_t-eB)c#dAawVVm&H0O=0eEJL9L7G(d?&T9U`pjK%72je&M*36avC) zkNiT%wF>jAyn?c0pIv|UrUaK_kSR4=>RIE;K%o@0U=3cjYU9jV*KM9TYg5hs%ho(_ z;IcLM^V738Zk{<~)5e)=?%%(9%>(xfei^d)_R?)>96=L--(%84B9z#^ z6NLQ`-p&r=?CxLbs)0zR)1bM!yNr;ZRPx~&#c7{bBwnFIvrk4=SC1T3T|Gj5y<44T z^Q%XUsID400^xr`iZ%6H7`9$|vrz(mkDRTHpFa<5?MD7EJKS4+7d-a{tZDBQIzogz zeSZImzwI?q>UTa*iM{OZ6jO=ZB8oK}VcG<~wSSr+6R4IxBBYC9!uPNvg!91L=O`z} z6j2WK8*PpV`u3$RTsUJj-aUjRu<6_eR`CI#{5+s7STHP7|#oq6_W9+@bYImoZ+;tismBOV! z#wLygQOMUFVo2jgzfPI_o`daI$2i{=OzNj8lOrWU=~Qgx+V7Wsw-z%2++kP7255r< z;U!dmvQ~eJ?OgT4S9j2Pcn}P@=?=|2TK#PPA9{#r!MOmVOAjsX9QZ#h=7#s2fsdz5=I=V*?}dJHNj_xA+V8kK zwo<*}`?Zy^>Zo&#`v@MkQqpWjufardK;!?t`2xQ zyMP3sB7}#Cb{XNJ@J_@f>jMa4ASq|T8&fGfF%8rW(>Vv&1`q0wO%=uYK6kP$o;(uk zj9}KJ0p@yx+v}@PN;4Sk&4Xh;xGAVqT=>o9tMCNxhB5~wuJDwFZlVM} zvR0OB6?UxX*^GvNyJ*USA&gltn3u`l}+XVsUu*L9UkOPAGmB z2A-m)OV~buJPiDZtr-c5$J7)^- z^SqQx+%wA#xut*8qK#n&vvl`&vgn{DwdtC&?(;dgiy zgzG*tgi^P!q6+EUS@H05gJEA*!KdfK$XNYC21|%b%*|LZN}sr3db53CGM6)CL!rSJ zC-1C_F)4~vyrpYe5W~bMtKz2v_mC31?2rE0y~p!=+?&RJIydUnZzqPH|2{-MfB?LaZP*>D5TPKP_IKio&TvntTZM9yWU5|Wnvk7=pc zo@vilY)J-+@0s-cATR-l-KKae1i%zvjsUlwRo!ot@qb9mTSuiPDOapDCgvW^V^Y3P zlGLwrB`H5gk_LFW#hq)megtG3ybcU;|vx3$<37mwen zeyYw_|8f1K6?SV&3t#Hdg9`K>S&lOlz&@HpLIHqKCB{nKIFDg!2l&!GX1WsvU z4f(lINP{==u}pSzB`zv2KPp}hq}t&L+Q?)F=SDd>QHhe6L#8*9ok>x0QnGC9Z^1K2`$}N<6ZlNUQ6{r^O z@p63j&e^g3jW@RMm@_t$R}7syXZGwlbBC6uvv)2|yu>=?%L@_{QU@>F_lM6v|HHmz z&B^hO3%(qpUYSuI8(W?sB^V`}RWio$^wRivcw32!lC3s5DuI<`l*h$U0)u3?$|6Br z93?QyR=ccEV13PLCR3VOf}_e<6OUu&bb}$?%nSx@ibW{6u7p&BAvJ*;^zd`cl_(yc z92J!u&*23u8diQopoM#Ke0d*oPi{^gT7j#)+?*a2m2T!y1{NK|6-+UyMq{d(8D%LZ zn(L#~J|Uo@05yP;(nr$IMHH(R$tw*e8#?$sSb zWVQEo-y)uwdqC#T-+lJMTdzF#_`&;b|NXXWFaO=5Ig`h>G}e^mWo0It_3^|j4ElJc z&nGDaW0zMt@xqDN*N*P{ zdT~}Q=PC5JvYb`Md0w!Ebw%->gdvm6-ZXb%hOuRS(TS1CvMIV`mbclQSU&G4oGja- zOescYHC^V2R;`LIofJkMoA3O$tEP>_83Kbwi&kslbft2<_#rhHq*B5_uC^% zSGl9Rs#hY)c}Ghm%6}%}J$ruWRTYKSaY|NRZNtQT(`0U(I(3dYCboK@XVOL4b%R-) z(-nbwau{P2N1Q&(C_CcypF54wiX&dpzI}slBBfDEjME4HNIz1>XpXPX z(vOL8N*0QV)3d7_#%R3*KcbujQSuy*nL-D!|qe>zDC`r z-hDOS%WhH^bg2tZpJq2AFNZ8dQ~P#0I=TKKDsZ#px>9sJty~MNvW)aX4)Vj9O*&RMEs! z#VV!O`f_97GWhxPs#PBaKClktJEE1hd1ZD?;F`dXpR3irDZJe2OzF?po2bkhEH>;^ z-Vre?ZNhGZ(1AS*#hyXTvgYzt(%ZGkfzQ}WZEkhs-_(S-KJ0}+Ok;!cPFq$=;E!s` zU(~v+h1?Nelv2k2e%jyEsC4ur9i;#=+dlb9=&ebRA54ecsg4ArusPUt?krtJxh1=- zRJJHKXmAzfMJyAnTez>PD6faBDkkq!AO7xJ_2E6tdi^$L`+e6_Sm=I$6>a)e_5Zqw z-#DhW-&kMMkR~5*{7yZ{Mt*k_v)y>3`t8oQ)jzYsx3B&AnrnW(wzjRU*4vbw-9)kx zMX6BaXBBwVhb+?onCit@c}+*m($@)@1F?Tl{Hw1!3) zsR2GQ#3`BdfldQ2pyN*`~S_mlXiSYQ%f~Xfl z7DN>xeL)@*vKK@&1osNQbjaYw#$PXXUu49noc2Try~;WbT$7=^(Y(i<-J$OnaBQc z|NTFVZIkA2z4z;{@4bGWv1J^+8D~#eN8_nd$K;!plduD(U_2$8wX=K?9YQOW2}C{# zz_}BV;rd_y(o5HGed&cKt(M(D%3syjSn<2l#;~|O(##jPZGGvbt=nF#NwEGN@q-Z= z9WjUzA@R?UlqLAJmE=DtFALvueSkZ!BNporWD^U<4EBO3g!Ed@Ab!G!ItR_tikp+< zJ3Lv$TcC{%Xr4cR=lpqm)UJ8+TAJqteo4H2>5|(!mo9H*Y?I}-Wy?D8{Q}J9@8A3V zz4*^3ihJPGF|!U~ag7~1%-9tY-#Bb69@I03@$$;(7^2xYSm|~0ars49Mssx)(EUc} zCg^7AF4nC^gwXA}TQL(K(zyntAKZUe=kIrHz4ppAt1nqRZ`PD?t-~AZt4j+qlk~bc zG^$L75Us~d3rFlO%)FS4eIQ>3|5>1CJ4`?LR)=^GQp9pbXh0HG_=1Czo;5#nBEGGI zJ7DDj>0o$RyB{40?-$45Cl7A%}gFPYhDD$%)8dc%hz(H5nW+(QsDlU^UKY+@fP}RbO&CWXTj0 zt_vcEQ`8k z^M=dRC+aV&D<1ikx`^HI)yU$y%j(qu8=ro92%_3e1Y6yuFEE2dZvdpJQK9pf>_>tmw5I*c8oE=GP4afQv0@H{vd z5J^{Sbl2)`L^SQE5uMgEAnVl^4nA<}&TX5nUVG`Xi!PiwrG4~>Ap>hli}Ji#=}rq& zO3+q?+m1dJG=$NBZ-$Vq9wZWq7Ko76A`~|d-laI|bC3rJ!y57I(St-lOdu(}LeKRi zGwPL4T2P56;#mr%HRv7Ih-dQ4+>@|CLltCENTS3QixF>utd=B} z`n*-_t>mbM^CUKJp`3o*gjK8C$FEtvaYj?qjHX#hW^?HOc9U#~0%Z_29L2MN=p)LI zsD2}Zx`>uyqaCbTj>Z=QUDRh}M@$TY91``h0TOP}vbg>`NT-P)(N}}dNd|*lG<4;1 z|NiAGhaU0t_f)*tlx=`yQW={Z!z!=2+K}D&QU%_}6;`-h2m0hFm*0IRIql5dYxOyO z9?ZJ~Tlx9IGI zI0GmqK2EPrjmb_R!pV+LP=2+z^h$!&oTcb355QKeH)rFLP%LN>6bOpkWHBpxm&I(+ zD_QDOAmoJX=x8M&KAUZhHpJlzUd4O9>UViz!H{><>)7&lh7=TD-tSm!drSQKsQq`0 zUJ}Px+>+6E?2lR>-_joIbaiBBEK1*TMaMiFW43u6SL{e%l#$)xqWR)t%;(c(1MFkk z*>ACqY<0l|=JJ`zX1`qeCk%^DxmlVh8x+4mmZeiev?y;h2h7C$xd`#+DSsB`02>Zr zi8&y$3=DjFc8ltw{U4K#p!R4%wElbbguQE^NA} z5rOTyV8W8k!~N@|wTtDV9QCDtc&>Q6@f)^pVl)eYMq z?FQ^ucKeKMlk^0d)F2O&$^sKvEQ_gEe`GPW>JMD~NvdTr>W|VpvcCeRq?a50Pe={z z>Q5}XR{f9q1FL1x>Mu3m%dwCFPwFNBB@Kumt$!p&vvI+o{tOM8%n>cHxWPmf3wfA3~nDF z=OPfeZJ?aPR^ywJ^MLklwPYVC=f1|Q1C^Ws9M3uGlw6sy@)PMSAvVdEF>jROoIiEA zeLym%I@wTQ@W#nIYBg)##^S-wIG(fqo_FPv?S>@gJGD(o;@;b~>v3I2&%XD?b@(

mSc*%?Yw>=%1a$_Ib1As7#;P8_gze*erZ> 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

YMXG{sy~bARDOujo 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

qCQ~Fp|>xA;8}o|+@a3HfaDJK0-M2-a!Yzd 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%0D`iKxvR42n-h0%w{13$ar%un zHevive~6sM6nkE#7+BI@MOhc#-88>Bi0P({#Ndaqk|rm`ITkzO%88{uqlP!;j5&)Y zB>;2s!c)T#or)%ZjvCoXU1zZw317eEK=w~(wr3hrrMm68S)ESJ(b1jSHgD(r(b?Jg zby|euH4m6vc6F}FVOcrXKQYhd!LBb#i4)g$Ebw^1SA{~}2r`$X^s++@ae^=44z5VM z6G%7~9GUMGI_no|Zb$pf;s#!off^IE3;my}{Qm9M^|GGQRJ*1|Vnexw*S5qvLv0$ zpgsLem>X#L8O@_1AYx#slOfhjtz2{9NJ~hh&k*Q{3m}<_MiFNqJP|q#p~_=Kk+K=* zjgpw{Sj_lL)dh_@BtRN-9k{NOwHeRFG3qxzxP5B4C#^SBaWzztn0wHC#wmkd)G3|Qt}I8Pr#kVQ!xlQ?R~gk*1~E;e08CKrJroziG< z-v$$lfHnn=s8*=CEH=akAMz~;A9PSWoIsQg)|B?=0HDGWcPzk=77V?edU<86e zgoU30;FJ-Rh3FyC#>6}+1Wg$R5cux}+%bd_z+MaMC#!f1Zp)A1DW>$&Z9)_31Fo`+ zkVf1Kd`)s+fbRkl0HY<)V!^3aaO!Sf1R1~pu`dfU5LxkTEuzImcqhT%!J-A>m4sVh z!T}gISXfHREF(TJ$#Z?cuZJZDU`{B2SHnZeEds|ySaI+yye4{pJPlRN13jGV_iNJ! z5r@boqBZpaA5uG^*}%B4umsSpk$J|7MAmT7kU4w{03A_epgvn7R@{z9IgqeMX^{lY z7m3KQ;8-cF+X4xLgPjN2X=BKRZOy0-#G63;fUOsO2ahJ(M8pc*wQ1EgQVOv>+^ZIM z+UJNUmH|t+X(M3qsW*00D z=!7lye1ohH!-@sJK8qE()~qU7r(o^F`vR97?l2;BG+N7iPV3kocEGE&wdZqJIp5)A@_)MZu;$=YBiw`g9a&r$8cNfb&e z7-}-9(NqvX*{pV$6LAgmfCeO-j6zg_PnL~_1)-W46`E;CXCR9m0Aq6JJ(ywWbi9+M zdm)Vjp%z62FEq}GzG4M8exN*zbC_?i?;(behclN|0GV@8=ioGw+X+f2kwmH+%sey_ zQEbS}Z4u@RbsS~3#!E;7419P?N&2DSvL#z(d9h}JfP?+HYAyDmI`|NFRm~xa2qQk| zAML{i^#ZI5I9#kjsAAkxDk0L>kRP9+;zCJ+5HZv>w0=qb!n`+f!`_vlrY8T~4Hx$2 z+ZQZuZCZEF?yk-qC)PEz57#fWzc{}vYZncthJ3DQ&q4r|`LwJ9l6hMHWWnRf-sD2N zZOf2i00_d`z?%I7drt1@*uHWQU1M=1_TKrqjhmjob8p-UIUXSv+Yg^83@@?pHQ~Uf z-r%ZyvOkhWj->3!hE192k=eGmJ9&Q!5a4F4%(sOC{B@QBcl6)jo#upF=%}$5K+EMe z-rRWk?#Z-yl!?ToMSK_!sS*YOMjsG$#RXF>Nku`0r>J{jlC%@?Ej9sp z0JTr5)!eQrO>p|mo#WN?P&C=_OcuG5SB7#FfBdUdCOVLEsxz|aU>)KUMhA3E+cz@oOBA)YyP&~ z&1AQ?Nva3S3F{9MIxD99mhFeOTLKx1+J#pO$co$UoN>!LSb*ApBOerX$u9a70P^>yj$c9Mj^3r%ojAtA=Yd$By*q zj_)8Cmm;cRE>+wqPYSji2IkRBL`IZ2%-BfZ?Mh7pogGYqgurFk;PV`Fg^P!lzV`W}@!mR*ihK<=p;{4t2^+da zSCr)9#s~T?Xja^SxK~sJZAXGqDi?Wf-Tm`q)hAMEA?gDWQv znt$3=c>tIno8-zxV&xO^cK*}0%0A&)85ZyV6e_P-nC1}+tFe!`EB_`i&Dz8=vGTf` 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

CSb6Q^apE!Z}k?_j6I9iVxp{A)t7Xgd7ovLkA% zBOxTvF+R+ow?qbp_-Um#dP_bOTYh>%OFt<5u%uV44bbwJQ!FRnFB86sFeXIu(;`xD z2Zn?M9*>Cg(*#J*ov8Zr=3Ac&^!~Q+&s9LTBU#0ZwH*aNt`ymi3)*4B80hK90)V_a z{qqB6GErT*BS{dFdKS#3Nd^5>w&z7Gh zn!jBIS-6*plJ9>+_{z0siSU(c*K)~6yzzt22;|JW1O6pCSk^!_^0@-N9RAL};U*Ye zOd`r5YUDMs4SgsP-u|+)M=l)v5_Lr}Cu52eY9oyl%C=4*cMV-r2Kz3;8?9FnP-AfS>W`I7dzb@@VT5a%kLx z2eCuY)&Er`+j=h&4xf*$uc)YZ&%wbu{*>CdDOuvb zlae=?p6O$zzGtN0Pu+$@?3Qg%6wT)cRi*qO@jMP39N%CX1>n?lzjzWS5WW7kRPDD- zs+MKmFG0(GT!Zzve3h2GZ;6CE*xNiyoY%E@ahLcPB)ZH(($*~g^?^I(SxH zu*@H~{QSLJUprJ^@uaA_yyXElua3V&WnyReC)wefO!b@VgoSnWb&J+9Ti-J#RK%kw z`}QY?dfOYbk!m4IMsb@y%#2PaoAzu@h2c7}ES7mM4#>zUuoTJGKZM)MeZpWzwCiiE z>fj_}{>=QCs{FMtuFYZh6`WYR_C!Hd^vwMHnbFey%4d~wbXS#X;X%GJdP+gT3{z$P zOGvGpEB=41y$M_s*V+fnnMnc&0s%rK8d+izHbEc|O-UF8D-qJ;TTU))}`r2x5_w{yfz1M4NH|;{^`2C-m1hMUV@B4kfkA%t0 zWHRT>S)TJO|L1ww#%yF*&MJvUDi@Op8@kmq>$1Cxy{O&!ap=PT4$dNyYKg2GiJ(Lj zqXCZ8sYnC@mG@xQ7urQ&ukr&Yf(sME^pfkq8Gh#h7W)2UmvW|$ojv=G+FCL302^%@ z?)xCz8D?huS}F?sZ5|^`hcp$$_RPMsw)W21?)Gupz$rQt^_bg{P6lUU0RjxnO%7$= z#xqG&TR|ailSy8ey-<3F_Q%H_;Y`Zs}Kh;W|OX?;lk<3U8SX zV=StJU@-`gpE-w~S{vo9AB?Oh*a7&?vm&Az%F?K&Nr|-uOA81I(dp2B@`udLlP3YY zX>HBlU#nTmZld_8QpJtyB`fLhZzxWhV2F$`Oh_tj@Rwac{ zU(jT#q$hYQ0XE!j4`LRg{8qFH``}Sg0cZPj$hDI?&L-?9uL@<2R@zL-`AS$8m`q5$ zh<{n5$f9(yKv5}T6C92ERj6~(%MU5u@a*VS z(jlfP4mmKJk!_4D@TPP#b}eeMk(n$ub1F>oeV^$zHOyuf7|_t~7BdVFpcqIP(R8LY z(_lhgpT|vxUkq|SH8lP=?9i|QuZiMo zA}j6CXgWmcoh3%oq9eF+upxq}mgF^?)J5%|wYR;|6`Wx)v{Km6R)ZxYxa*BJoL*)y zW@cw+8ZxVz5)zuK-a{ti2xla=$Z8zvj4<2Yn3}X3O*X8f0$GEKpPE zrb7CHIl(RgXI(3TAj=UfLZZNBbuWKYdULtFQKhe3P$+d5E?9|Ap$4DA>6LG_w!Y<} z&B`s(6!r|ypCa*3q$xa~Ju^j8%6bBQ@($LvXc`+ZXtM>3`Z*O?AzW&LE4GXG#v!tK0su~)qvIO5O->LaUwwN#?_`U8XTlgNfW3#A4{^cd@?iv5%4dq76EW9zlq;`os0YX` zD?3=tCh*6r5AsKaN1L8sxbXR=&CRn0)JTD0{rFC7@Y=wVo}3Gk3XPMCPXup6E!7)}WGUIKw?522-%roup3?&f z6J(uJ zs%nrn5C~-WO*tctu7`+Tj!SN{jYG_=e3C-0()@y3KcVXLQ-lPaHZj(2hQs%~DG8?c zgm`#cWs+xjW`6Q7N}#AV>8)|L)>a!RBKpT2*DzF$2IC&)WbFgxK_y`Lg3~oz>_CKM zw3(t@16LScxTX;AxF?%tK0L?AFmv6ynT>_3i|V_BB8+3JtH%m&BeVv)dHm`fYYOKs zpW0o8b()ph@sstn1FE~`V)0gF2_@2|1rX^>Z7Ce(ra)`6~1BN_!z`5=p!RtfA9AcRqI4#9`5%X z0~Rl6#zp#OT+fn)x9Mk6+@R=a!5A?j8jh*Tc0cYhr>%15OmSTm;*Aup9>0FBU-ej{ zfgg#ch)dDRR_5>S1uylZY^{?cO(_rf2Mw=01JV57K4)lHADY(eS=X(e9TraYMSc1` z7IluDPTS>hC;hq!Ceo~|Ds)urFo1uPlm8N(oSd7SER;ozh#0p9T{ovq={g*v$K>v- z^F#N2oK=;bU6s|WfNwu0bn%!JdE6_{m#$#d6|&iXJpHG~qUnI1M=H8hF~syoL+p>A zVk~m-ne=SX{-&naV!PN^|FPzH5*GF`Qk8^(eq6ig2GL{|l!CS9HZ2{Zu z*%Q;jXM?V&kdZl<2qGN@hp7O(v(`Cl`W5n8#LM~`cMBm3mDePe|_av&9qVZ&r3{DJ+$)FZMU6Tsd@25 z?krwYP_U+0T(ye7D8`K%G$LwwMa5NCzzUXIhXw|Z7~ILfd$syj&8_E{*g5B#m-Jlz zD9{|jVnR2f9t3M}EObL@pgdV}ejC(wDAFjBdciZVZUR8hezTyr;HknOxWkx@6Bb0l zMWQ8duRjR@9zEK5vU5ptUS6`m z!-ox1WhR_yNZDNM=Qr=J+Rhid#y&lzbWZ4&Va}rAv*H}NVUFtW!hDMM4-1R1?u*s( zN9+j|YwbhRlBTW&(t2@qXJ>WpoZMl_(P##Fo^@lMT>{S#4*qH;`W3Ap2GC=JO@N2r z|8f9@`E_CkW2ZiOC>AXx3s)cYK|_+OWU_|RR>=vuV55Ffr&o_xTZij?@-)_;^n-j_ zG&oSV_{3b*4We&G=rrThG5YJXFCj)ZKp&^ezHzFKPSYg}8mJo-fsiK8Y2tMJd%bQz zjGhJHE_7HrNaq);V@KVG*S~ETS-85e9kX-n@DkmCq?iE%%xiY6CgQuZYF$-E-4H*& zxCFnzl*ptkY9r#eJ+vrO$%910<3>sZI_p`M{ufH*S=iE$N6MXR7tIDn)du;(n*4tz zN5%-O8tmSH;0cfrCqxV}nvF@i2*`;Mx)~#cvgqN_g`h{{YTK%IfXW`f9VbA4WP&u; zZ*Et$Pq3lcK|$jj%^yaXhbLqs22|C$byWxfwGq==S(AzP9|+nDpwj;*x(oJ?R2)#q z-Hh=R2t?>m296pr?B$^LG`uoE8Za#W&(AHdmPeLX1x1ettc>un4j-h6ZVQd`8>IV# zbHc*Nq{#8B?~{8KOX}0N;~4GLx2(?jETS@SM08Nqa^0W-ak{o>&7k2{pNOeJNzs9H z&M!{4JX)qygr$}4z zE%hhSJ4Ie3O-Vd7!RerQncyD~5rdw9(kFW89U=cc`|{$cuoS7#%Yd+j^gWpwZoXFM z)v`PObVnJohnNh#2e7?YoJm}k>mh7~Yjj%LMq73nvFDE6lfONmw=uy{5GcOb7*OaC zP9qyI-ilCj)k3;si<|jkmnn>$Fz-!+VPf(R@yRbb`)>A5SsgmWBP?DhOfAl1f z{(fI$(GDg7>OpvHYoIO;OZnX+2-p6wsuxd$no~mWxjQt)9C{)&N%&LQ<}$pM>?U$e z>)$XKX6aH^6<@qq(4OS#K1n$P@4c5&1)c;4uGn3cU>t>D1*Ht7|F7%rnLWfEQ!cvy zuXR5-iCTTqZ|feKtkgYGdh~?WX42kskJe<cz^%F8jifp;=>xlr!q(RnyWs>DY@TC-y=3oTuD|~Cmj`{2~j4pPweOR#L zq2}g^uG`4^A{MxAm5nWTOl)p`$Pqk@E*K`}bP-q7CapuLTBYeYr?A?yXe zW&nf{;8=Du65W7bNRFxCO9%rj%6MQjzKjl*p~7mD1uih`#=LHeeSH3|)$)_}$fpuJ zYWc^&_(u8eoM8Ui%%8!Ta@%`PnQY}9Gqu{k`}nYd6Y&M(Pet0xJNTL#lfVh%5K1e1 zQ8qtVv!uA0jlynzJ2`VE?XSQuctA0 zPRo2swCryH$_4CtB$6G2Pk|B$Iv_>*_ok6ZoyB0>!c4(=hJ2up2C?^`j1`r56L_s8e>HwGxq;Q@{QIq~;L_GPjBZfi}R-5$ep^L!{;rcWMw zHpXtxtJ%8ZdYllnQNOa&kze@#Ts}|$X%wH?Y6mC}P+P_NMj4TT1tLV(f36;%+U5ja zW`&a-kt4ykIghFSTaAIb3BAu*wQNOO>vZQ%itL%sQjh=As?eIL=<8%ybIj25dC~X` z(u-zTNuj4eI45s8b`$y@vFE^OAfYbv22qzOIyhGQ%_4F&!Bj}12<=!cH-p_sr(KiK zuosDI%F0<@#{>JAVc+yeKU-dV{I24zOZ;C;f?r7SFYfwR2^_f7oSG$@Vk_ z$N3~br(JnZ*S|J>t`kOfP4?U8&>1wEgydL1e`Bb|FE}>9S3S5qQ)|@uY5W6j)%wcM ze(eD~``0qcvk=d&h8qp?(^$Ygk;4!)OyHYLFv}6W!r&rr0IMCwEodR&T!SbK2s=tk zUuYPUnN$ooIk^p71%OdMb<`Lb5XNU4oMEpSy;Dn!-COtxZ!Z++|!eW|9=> zooe+Smg*fC7BxnRtIWIWSGAmK$#03=eapCbQ3&{3ydx>#YOqi631dOJDs0mf{*0fu zF?>|6Ap2xtkVP!OVP>^l^8w&ZsKB51I-C|HBOU;^NzVCa|pLG6UOmzw{@0{Hg{_u+e7bl-E$(wlqj6KYFj-t5|5^!Jx& z3BvIxSd775UKt2+s6`R@&{LKQ$k=vdiICylb!+R^;;ovG4bQt%7>7@(6eyB$qT~{% zwc{(Xeg4|sd)L;rKlSdr>dv+E+jHM_d9$Y=y?c4hLV0m0&qsb%%9G*tHxHrm=-ER0 zQ&Tzl555UOO@QJ>!~k6??QfySbK*hm)8xmZ4XfF|zZ-3WcL_gr%PrhTIcAQMx?=vq zJ~60j=TkeUPQ|8*FKObF>q=^cBPDYuu*`jkugM;pTT)A7!V7U1RA(TaYRSG~4grr5 z60O2mN6tuq$cKq!mrjS8hN3OMI_<)=^N0A~*3~v5rkRmx8f(|_zdhRYW<~u*R=%;m z;?0vRI5$`LalxF9Nfi~7I_50k2gYS?tgYRc3Durl-b*O&6fB~$W)w&>x;>_idy7D{ zig7+Q#a%oc+oTY{LM_Ypk^&UdoV8S z$-2pP<*%wvj-52fup!d8+8DE8gyBwgCjb8U@v-6)&JBk0i5q6m=ZD3fL75veVdH_- zl-&>8@i(ZQk{1sqW%8r9D=S+{7zHWlJ20n;Aa%f%Sgd}e*Om7~Oc$tNQc0z%4-sE) zY4MG`CWWbomDuA`^{);-pG{tzO<++uAV2-=Yl!Bt!30#`d!19mbd# z2V%#6(zh#eqcPZ!qSv$G{4egkSCH1C$QJ4=Y6A4gqJXBAae#KT?Ie;nV2+3N#X=T% z^1X`I=)*$L%+L%Wie{890ODZ;)fh*qID!#Bf`yR#B-SR-a?x9ixIeGVY_vBv2UnTc zD3jA)zo;g@KA<^3U&cZrO}?R#F?Nezbn@3Gr?%O5w&5FplU{$dATstW>Cs!(?I~XM z3lriijYf;X#;<-m;k1D~Y>|b2JhW(TMa}C$Cf33ld zFuvWq49$4V^$;0s<3U{!{zZ|%$S&H=Qc&|0SB=>1`3FhPa@AlfYP-7yqf{V$uAW!v z>`io5RytL$6C2V`uTFG@V(7`Sfe3TfEq1FDdlSWOXw$B_pG!boC$XApMz%x+nFiBb zx@P6ZOKymUu#S?zh3K~y1SX3r|^}06YDy@poRBC;r6jt{VP7IGrlgck}Z+m7T+Vh#%5{*4>8ZQfd#3ff?~K z5G6;gH8U;tfjyIAxrRM~0P?R%vFOFNnLHleP3?Z{E9n&t51Pz2OC24IE9-<(H#H<^ zC-|#!ueoRsFmx8djOZbO@J~ioUK8e@H5#c-1V2)L&~ZE*eTfSs3uP#c@-TIX?062~ z6ZB($(zE@o8r_nl3IKhMjBs)x9fEoqZ%NCt< z2Kof}+koQAzt~ZGEZ@gs3-Hxz68WCJV%hX!@YI=G7w?JT@vU$tzV2MS>_HZ^dpD9r zzR17by_*FIryCojaXDVso-$Yr_Ok+H1wGu*eM9x4=3~BBa45&ktH)*AEk3PNEf!qWb*15vh*N3| z2=)sQMbQ{IpgcalG&q<&GilSL?rv<@`IS#Txl#xZ3%GD1AlMj_m{sWQ9TIL$Hx5v3 zo)RB?;zB?e)z9lW(5rLun2~MkglCdRImB=3$+Ur(@`|^tYHRN;^w0jr9pZUML|j~i zV;$#AShs1(qB~tFs#jLKuB>L7AyJ#62d_JIYF#S}UWUA)-+9ecy`dfjA6(Fpbnvr! zZz~u$aIVluWT4ShFL2SC@Zg2o@Ah9!v6hv*Ud>z~2|;Ug0?T4j_3IB>lfK*kUF{cT zB?(q81_!SRL}(EowCyKo+k<^v1m*T2-8N=523|j>Aj&5Q`#rXJIuE-jt1xA;iJF?k zdO4jtayDb+dZH%E*agI|@<0mclYN6wOsf#I2|#FMV_~I^#Nxb`yy8TM(7-jumU%5k zRS&{i4Wa1D!WU`zuHC{HfCls?wh3QWu0q!6%J(eEW^=NICp!`?`cMRFNOWXQH&`qN zWz4u~LKu8>rsHX7RikWddJEMt5Gr`uQCrgFV_KW#mp8@oqb%8U6<#DMkWm6JE6!Tr zuLj*T@pgy{OXujtf_%k$pL%SosP~1pdrqP)Vas$=#Gn9ih;L+kY;t*7LUO|B*aAbO zzM!m(zfoS5mR;s3&YTU2z(2rfsV~n-uqBJRX$HNYZ*e*1+_LpwmuvjB26zmf)`+vp z#X!GkA77Kf9NB2_)rkI8YB5suGbWeB+iV4yD<;%8mcQ}MdwlV%skZEL=Y**n3xf5C zqmh|Ey<^Gf*u+TDB4{-}W$#fM^#xVXuGwtx%e(e1OH_TTYJ^sU^pbMt;pxB;;AvAK z{Mgg=QRzf_palT<4a>0nGJ%znAxakZP;$H>*{q8;Wt+@~A&UZxiH_tv$rBv74zoO7*^ohx0u}V|SS6}E? zQN6K=C3)&tV~Wsg?XHh<{zs{v>Y?J^UyIplPbCYs9J)L;DKgNI`rbobQwsFrFy9H+ z>jv4~9V?9ZaI8E!Q-}%R0c>NLH&(?~=Y1wA%5y| z0k5N;1TAHdTZWLGj8mBoPB>9%A#l&36+p=Y2W$>fIHrm}z0W`5AHRR6^xXH~^TO}H zXVG^%Cf|AYU6Y-6-_54-k65($s}y$^|LCr}SoB@O+moHV5W79j$^4@&)TWsCUdXwp zF2tV4GfCm;72Q2eX}hPFLonm%1+)gepxQxbe9#?X!KjjwTT4nt-Lh-fKX&b^;tgyY z{YyP;NCp1{$@s8^n;1?tu<)<>1+ktkzqO=&*GIeXmL6))YZn;{ui>BK;#z=3X19w| z`R89Vn!~gf|Nq=Js$>?;KXPe=y#LTPM9&`wJ^ujooN{v@51xp}CbrGYbl!TM@W5>! z-6k}=#oGAou0yQtt+!O~hxc9%XRf#R@!R?B2i{<9``&)z0Pb_0HyI+Mc|EP026G_d zd?-c$G6=|6BM?o6RfnghGQq_24Lf$cb)UEQ(BSCmFHbf%pZxMvQ@SR2aEY`z#^ES& zI1aWRJow|mgTicFcHew^$&g@;z4_D^r<$>u4K#~}`4ix6qJ!le`r#1XGPZ3Y`rZgB zfugC#BX2nBC0iw+8G~X(hLon*K_yYaG_%f>u7)g|YDaWN`9umlY5pKWk>I`Q+fAFk z<^Phmw{QBkt8qqkL}Ayrn^b}0#`S)O6PdpD)i@SkSy))eds~KYoG~NEnlq?z$l8hX zckECb^A_K^Brk8tos0AMa>Vfrp4=wpF3CH&&Up<-;@k>f9DRYGO3fo?w9hsV9XD;q zyA*eY<{|ht)os`#jlggLCJH^)UV53l5u*(Tvox!ll&9Jw^|%L0^`z zcu~U~zIslX{`&E3wq{P5;D78`bNp6^?aXX^r%}_zHy)z+e*H`t2T6+uk5%%PQ<7BD zzH!(lWb?_`t_Y%>ygi8g2OciA^#oXUmO#t zOvrog9P@#Y2!_d?s9wLlKZDH$QyD3U0BoRHO+!qNJVXF@+0o@1@J`B5yJ59@@0161-RD5qcEy7d=2u+wQ?1y%LD{QMgiXlY<&{!=eJm0xb}*wSIydUh+`_40vD z{({{F#V+2mJ?3rnRga9qB`-zt;3V2fJQFkpgi8dUffl13oWK{U7={XvQ1(~GzT%q) zkNZ2wS+uoPoXJBF`SR;F*KV)~Z7vgSRXr^r1xb8(q&xxl*$Ts&sX-WF$(Ufy(dcGs6r2;78=P4%}dzSWH8!#TU_z$J5 z0m^>wG1yd%@g)DTZhWwAeu=>e_dH^R|~&T z!om)-JEd9Bk%j&Eqw)+#RbL_orVr*?gp5n;Bb;(@W?48Oo{f?>T4Cd0VZnko20hSf zFT!s93{2N$bDMI@Tr11QG|v@$%F1Sf2Mt?LSh%37BrUB(m3;ftx8p7S-C#(v=QcOz z+LH_h!8qf~vYAQCQdsyc2rP7ALFLqU-YFy6bL}J0(?@|61`f|xkhw!71^^?8sfSFM zup_99ynq)@nK9$Y7hivIWX23vOzs#qhUMlPhd~y7k{3+*{F@6$D=Uv)_~vuIv1wN> za1YEl==kBVWv0dc%YDG-9_kW(SG?4`7nwTJ*-Fbv zcAGxh6e#V`ikgUEcGDBhiAHv*`K1+_u0!o#w%_-QJvY;G_=k@DZ17%m7qCy4z1FC{ zP*dg^C6^WWYs7d$kTwmhm{zi@xd|Soj^|ujR3f`>h|)t}46$|8%uv2z>62l%eZ4gN z$rmC^rT0~*qz@(;PxOS|`pr^9&r-fYH)9l%TEY^}H&s0?E}8bU+9%7gluw#EW5!f= zxHLj4Te?(ubjT#nnWc`b5~IxnZOe_o(%e=S@Hx} zmp?ti9>p?;1;Mk9)T>x*Mn-J!HEe~gltMxNuajyVIi({2WpIor%Cl!pow};3N_F?m zu~JIx%{Rvi=VNc)nUYeMnp%^V_OezNZ5@%4GQt|I)3WVT*G|P-)^E;09TVite=*Pm zjKnC%+CUvnFW{_bs)>pvBPAWev237{g%&ZI!l=O<1Ve`!WJ-Kh+99X|w8mj0Z!X_h z>KNp^bL#48(^gO27dt}SsrC*ToH*+4L1BrBVS`Xt>3MQ0Wv6Ot!VKZV3=yHaG)snY z5PKEh;a8`v^Bpxc#%N>w;3&4wJ8MslH|}&zj!Wf*I;#^fUg6bD>lz!#!iW-?MXT0~ zIGOTXeiOv9(wwJ@vGM~?tl-Z(XMDPjT`8RAYc0(4pC%LxmHstldpM_%uS9RWo>0A` zdI$FmCfyqDiE)FNS0QSvcL-DgF{;~p+f@7fvZMK5`1IR)`Rhw7c8lMb%`9=baMWV< zoy^up@}kmddZhFU@Q1KZ>w-c*Xk8ctUe$|Y<$!oVv9F>u6#@~oM1jECu$@NAc2psO z5(16B(SX}36AR`?Bt!6DAuIrhf8TG6v%UMq%q}?kMzM(*w%5EL~bXU;8S!vQMsA~l!+ec{85sK7>A)v6r(0nO7EVZ?b zut?v}RwvMdk@h-h;b*o+4n8idvo`IDP0l>gZ-Xw34bYD#McTv?&VAvlx4 zl+oIn;Y3OXWMG)C^SiH>zjnIW&bxAL!bUbs9$!2 z9=CNpO-z18UeRj~&7OVeW!lu%%1l0iP{7%%6K_<^wki`tgT)V~Jh*4d9=so%vRkHIi!koOz^UcBnF;76Se> z8fk_}nw6bBlb8l5Z;ln!BWXDDG!0~ma@4^|D2R(o6l6CFsO^>D9f%>RuwJYL>=bAw|B#<6|B$^^u1=(*BkpgB z*>Y90bo#0i6w^by36BeF%MEwFfnbL)GRXd}7=^!6NcO$Fes}p*cKP=u-bl2CYrJ81 z`7i7;mG8Dqk*6FY*P@C01;nGAlFIx7i-2HbG$d$+CSPq2T#EdFg)L4;Qr7wt8?#az zj;Q$ftfZueBjdZ}y^S+Oq|Hc*ybvFyKAoHSOctOwv$LMb%;o#yvl0@r;`zRWNNIag zR3QcNFPz;TpA|36i=6r!0c{NNROY&_MbUgHs+eDDwg6PMMK}t(*viVv88ruL zY7U$|SY3Tk6t+d+$dkganv7NGwaM9wEA zqAUg)#9M1rs+C+<$E!leFOhVKxf)ftl)hNZOw6@Z`0;I*_@RUZ0YU9m`^WcwJH7>> z`%Z*t5q1r6^0I8hD%i}63H%~r-p|D2^;>8BXk5wVYKUXAifTK`64?aR>f))UcqRKY6Fc0iT;u8H1d5{Ejf0i=h&iEzQiwpkMOCVj%JFUUhmWXg*d=y zuw|O#^9`|~=A_~aCGoMk82z}&KvRI;sLxP%jElRs+LDuPTX$dFk2yjkw*4=wo6E|Y zSN{dOc$7Yw1S^!91|UT@N+a8;5}k{{d$M&B-a*hkV8jalEJ;VcvJ=kr?M{Be>soqA zN%}RGmm0ohKWWUTqWVTah41Hp0{&%gkKnE=P%7OPEv(=q-Y5LW7C0?^Zz6 zwD3PejwDzqVJ<~DA|QhM;x3R{p60zAqrt-5ygLaHGP<2G-}EBZMYfHqUNcFb1`Q9A zJ~f$y2AU&&e2+6{xYHCA5~Lp(BG!rC1H(*l z&iU4`^f;%TZH)`zuMZr^5<}vI`nV95IB+0;JtXc6{)2Rp|G)+cVFTumeHypSdwT5r zxv^2tQMlgcqGI{J31gk((~F`~g9fNXO_1K?ZHzQnLyVcj<`<)jI_5iBGP95YZz35x9f zLcEWs2tH$~s%$Kr|8y@Rw;RO!4F=a-gQHovdIN7jUS)3H0Bs+N7EeJbPXXe}3#-iK=y}oXvdP4?<`m>c(1Nx8##tU|h_p;^ zpKghCl#d=_v5c}jwPg%CUH~FNRqA>3F9Wa zMA$5yvewk$(V+6RPOBX4d0`z#KQiF=uO0dXP7wdW!miK_d{rp~#`oUu9h< zbQD%Ux0Y2T2%=|!7d%O!$O^p=h@%2#+y`5<5T~Sj5>;fF?s0!vh%aS2d<$sDU|5C- zVJ2&qeq)jKWr(Gx+Ah5&y>5t9{G%f)$-3(4LUvg^!K(NpTDu7;f&c>*>P>d(W_*2? zr5}gmemXykIZd*JqLUpU>#*QO3i?Mgw+~lB{Q>D++TnJ?mJ<>o(^{+0!PX=ag-Ddf z%Y?#Q%wyR*h#H`*CByIxwcyKah(zbbl7UK-xdSj@au{t845GP;PdH*ELgu8QiPPSm zmIS60dMwrb{L+M7Y1s>ktfsh(xQdK%6&XA;qeA$mX~E8g$6-m&h>LSwy_dyqSH&@1 z(JtML(M1aaq%X+E&Ps9NfQ*WYjNZvYGT&IVaAA?~QqjHin~XT=04o(n@J_iMc3>U< z2@+MNTRMdH$Xz3>c&MjL!Z4}&*ckVI6yT&J*T9FEl>JyAkyP4XD$50Hp9|E#3F+6| zTk&U2;0HfBGbx<&)%ynd`3+Ki8*ShR3sxBU3dj%^w$8YsfK7o`$M6f1z4`yrf6r&# zg%u=luGm}UpQuMrg#L1^H~1Xl0jUnd2%{{N1SZ=mKci*do=ezr^{deSE&07ni~2u$}x1Re4XMP6dd1 zq~pi}zMM@fDP8kJx$46^`15zn?Wsz{=mZsVg3X^pc9!Jk(9GwBrsYq|2QhE~0 z0jne7JPHt8(oSk%pE1ccn41`&y6K3eK^iIuNdeFiiP)Ohr0Mrp`uCRjB_{c;Hftia zLZpA?{nN|tPD;GHj9(<-@?JJI+AuhpO}&?nc)Y_e8P|^THHNCrOuv76jP36vbn>Ul z19Y|+oG8x8DVDy&VC0940Rcuf8M}8FL-htW_Kr}*4(qqh5HF$FFo4BN#pFyCVS$0{ z4yg+AyBe?%aI_-3)QT9LNEF!$vx~T_)iwJw_Q5jt!DkdJlL9&5ztow5KWCd%NkKh@ zeeQAlG}`G6XdvatB65IjBwmn(GJ;>w>qgkSwBwjK^O&@KPRAmr!<=AFHd;Dny9Mso zrMGAaVgtHnwLDN@wIY>}Bn|{i z4Ru2wEyoJ3sIT4HHu45Sc%Ufpq4Kq%g$1GQWi@x)@z*Ym!I+rf+ws>s?vUd0YiqaE z)(Wx8=RYZM8*lbaG;G|gPx3)7N?~5(gviJVaN^jyZZ_1)#+mDo0fm>>-&0d_Prb4g za;6J8`cR*wBp#Oo1kmNR8>?jaI`rONOl$F^y6{ za|t4aQ$qfO{K^A!=fcX^I%>k04d?FYeB}5}OYLK|+ZT3CIM-~5d+43cCFj&73!iIV zQMY>6xAxLf`?qVFHk`j>{H)=r&N_#)GuWnRAzExJta$wiI0Q{>YMQuC zI!4znEX-Vc>J;8``zdR+JC2Q8>j&y(>ZdQFIGWx>C{<&Lod9Ry%IS2QWu>{Z$QU>4 zh}0l#Bh~>rRIO_a(s*C?SZ7@i&t(;?qPk~2wGH)|hd+o!yHLVI3OxZ)RHwBPOe~F7 zLXVC;Rk+$C)d~0Y%puF)Hz?heBR+@H6~>00?^)kdjm$p##TQZbsr660#yq{ApYoKg z$f9-V3lp@cL72PHasnZ*gX9mD3$iOFA(TIIMu1&UK%xYj-5x#vc7UwdKe-!n2k&sZruF5P6=^~nPd+#>8@{_?zf z7W4R3cbO*HD)&dFB2JvATqgsF1cXGZ2P|)Jd+b9G#kLRLx55u*X1mL4oZvg^rkNcb z&v&rmaeUst_#-W1_P!6>V;_Dvw*A9>E1pPC|7-dJp>&+|lQyd3#SI%~*6=6C37>z( z-?&w7^JcU`IBJG<$PDO;uK;B>=HN(nW|MSSnAH31nKKeQLr0HFkE-_fR=E4B-|ry5 zU?fE0hwKa=xk;EL9Tr!dIiuRlN77-LP=;S&?0fwK&wd!T(3|8)yWjz7fs>sDiJCY` zAR;RiUcl;sM+Z?;%RogLE~i*fk|?@0g7A7Y6#Z0q2Y2sS77(yHFh0OpH00JRw+8v= zjR}YkTpbXwY{zc?>do_}d@!?A|QW5*&}_UvhS z?>!t`UG{$4+bj6O#^Vi0_q%M*g@>0l9Q(tv$S&`B5kLh6!21vCB#QKbG6Vi=S*m;F z!r0w67RIjq>UERq9d(K96$-C6n>~#XaPSpCe|hV|bg(0l=mEfvB2b}Fs|hQ!Td=YQ zU^Pfj7(8wW;yU^^G{d0X;Oj3Aj>sEq_8%JN7^<6^Xj?yX^6J3wz}1syuD2yl)eUuo z4fPjhxw=U^vz+|2km z-@rTNeo%Z*?DBZ4ht6jN)z=OSof|PMTfjXB2!2RkrveZU|6)k#i;>hJUmHS05lgw{5v2APsA0h~Ma7Oj7#UvRKrroXoJ`gJjSCx$Mll7|K> zx)G1hOa$hvf0G~5ElSw z2EfmslVXvx_u4*V*|TPQH^ z2gS0ira?n-)y%3aChl{_@=*%^ujqhMWGM;Dx?HC0PU)0+C#+}CF(5?}=^wN*Q=6u2 z!QSRj$ma4Tt!ICHxs`T#4XIn=99E;%YNY?obJWe&QP$Q;($iou@P5qVu;ATEU$US$ zhhtg$U*}mjGexdsSGwkg~EUUFW{H*G(`w#9$xa`mQQMj)TV;8q< z;peyi%qyk)S@^q4_}T7#{KCOiZ!X{dA5I+8c|~C zQNi!wkrbI8dto}F&iD@L8Qg7P2B#(NqRh}HL)-m^>`dd%6(qH+*ooL>hWlY}bIlg^ zN^c4A(lk~1F|k*=XPLp$YSHVlF^Ds+?<4X(g6xy-lGb~E3iIP7aK#8nfr&w^CQSq- z!bTe0@su!7$Rj~(2fTirGIuYht04ygLhTA-d`5K0&d{i+(4C{IHyob7ZQJ}!m%3i= zy0nRQzuTV?|4*h)>(;#Fh?lm9z}|11?aiG#H(lDW;nJp^JKx;4^RY{> z#yfr;!SC(gW&#kGgeM&+ShaRFQvRwLe9gsOoN}dj?>)wR1jAK+j$8PZ=4Nr%*Pm@) zAjCV*vCBJM*{$rau?>yrf`0fp9mbXwD2OcCmm4b}@fhCruvCTjPf10*SPwS=D&?_q z%ASc(zsNAaeu$I4OW3Qc-fXL!kbHl6m0{7DMS8!)Z}}7GBb&v-ir}CQXf_)$=TJ?} zp*b1$wJ`pO?7E*$d)_-K2E>Gb;zjWtyYDEw zuYVXrg?p5nc;SrqDn?#DF9qYEMr0mY`Vhf@VGRJ)Cj&L4CFsBqTT>a;*RvwX znibOjKny07HWmsc2?E_t=qbIhogLg){Y>|T?!v)x^&r5Y#Ws-n;M@{y)`hWEZ6TGr#iiP0TJmxrzVJ zY&P;&cEMdIkL-hcnc<9TrTfv%KsZtv`{+lOR?T1O6hoM;lSlu^U#{w6wpsj@A9d`T(72Vq`l$y7A35D_hCe=Wtq zfz|;bGvND>#-PK@^vr;P!|g7u%6qJjkA2C=fjSL8x|mI7QH|)+HN&&Bhx3~T3}-`K zm)Vj$KZBoru|42jeh8PKT#{WBJgA2cB0Ld2c>jO&KJh`<|EWo2{02VHi|Oawf3CCV z-G8h+XUy1~9M#3K>%rgvzdY8nBTZH=k^AD>n|SW0&;kk)onm`?F?v{H6o`GGbQaeo zW13&Yq|v{aj`02;l`mOx7$Dron6^(o?gskxlEQnb2D4CpNh+gj4lhxS<(FM&Wq9=q z_R?SX%bXgXA1mjz+pu=%WM2r%o00%JaWnG&m3mFZnDv-Su&5|D6Y+ODef90T21M&O z7ytf@$0i_suXxO7-S8n+Du=u!lkCmY*ybC)mcCO?XDJ_#DrN+Az4FOZ-JdDSr%?H5>z1nYvZO!Shx z_}T5<-PG22Huv~*KN}Lz;ssCPz8|x6{Fw3=_ub=BlB`&Y2;)4ExaYff?D$>T?z^CD z_s^+pQ7fT9`l(#F8s%T7&q~f9P-&XoH1ELE$*UZ7vrHeUz2$Y0Bu8=Au~uiK>%`lU z&emf>gZv?FqjTc3u7|{#RjtQx&KddkF;xX^TjgWv&DQ=ry9lZmCC4)ag+UO3>nNui zkSmyTz#l+o2&@iND{%8nwaG#%ST}+pj{XhGsUHY&ea+TZfSUAyi18D>%oto1Y~0Ew zwTUxt#5mmuZxO4v)Dp-Px5fB?jB#x<#=SE4o!x(b}8X3Re7FM#j~M44%wihH1_?IElI=d^sC z#;U3n;olh&KG0W67VEu5G2H0y+xwk352wS24D{un2(vXRL$J5T6^cDEJaB+!9}5%x z2fBLjp$ZzPj_&Qi=7FWoG@j;$^gA@Pm@DIr&0E4S%gp`Cxv)hfnWg( z4Kz!A^R$hJ4sD#)EOf7YbH$1`duelf{;}iv$ByM6KbC(?I6ePJ{4FCc^S3XLxF!CG zFmlD4ztT0>NXy0@KR)i*F?oyPWqRh3>xW<%B0jQ`0GdEMLvO5vYHc_F8Tn1FVBzrV z7PjzjD(6Wj7M*BmIdS1sOUo(YG|cO=-JMM9_fPqr<-225BVaYkBAH!T?YTMmS?9 ztO;$(S8f!_&dd9E(dEuqSGV$s!-NDU^gOaGtc(%TwNTD4nuALIBrJT$CXbg%3yvBu zB|kG+9Oxt*nrf81OyC#EhSMptlv-%+zzeX2>(`6v>(}=lgJO=)71P1R!gl;E9Pxs1 zhQ_A|z41ELyXpbpkn+6dW5ggtr9ikia<}u=kTn;R#*7mb=G0=1(y*aIfI#Y3J84{Ci!3U@@Eg1wA~auV{_5iCR3@tC}HB-(7K5!32A!*Q^ttn ztH+As;AJ;S-wX||*m`eUq`@buFjUk=-Mi(c$iXA^Cp3EFlo?6JI7{r7B&N>F^qac* zzO0d1VwEu5GG_O*$T60bEK!p%IAvyqAt^Qs0nTT1-M92+AK&pKlPpOZ-|G8U`NBz+ z4IeigyN=F)avKeAj4kNMKBMJ!ht9lU8p=TvBBZAbtCG zVsg|kJ$cQmr-ykx>2i6(I!KBbjy@#*N5Q@LfPRO`{;;4lD2=8%!j{0O0eq+q0|*X? z%D<4%xU->QXX7zx@a#ip4%M(r(wjnp@-MCgBK-b_25G>G?B<-D=4>PfY`fap`iqha z(j99-;qwS9q-2y1AuXB`%f*a=Dn_>>%Erm|WAHaPCv79Xk6`D(?7)gHjDzDN99Q`r zVl|*}cewP$U?d=U_=>(nVZ{PM+$-*Ac(cXFb95%D6n@Stx6{ zn{+t|m_wq>O)N^0$&Bo3&DLKC_g&N02G7v5{SSomgao&>wf^!8*U~C0zin`wkPp;} zTWj0eWTg4eY|NOyZIdt-$S1?nyvl* zRjOW>Vo*@b3Fo`I&UJR4@9e}Dfp}awU96&$-sRYKNt4|+1ENV+z3x_h0Q`~~ln@p= zX4QtITht&g`V>3Da@c_nB&374I)D;9#Iq1pN9moR*4`=19N>rw4`WXbwF*A`T|Z}3 zSU4|Eu!`q$lc&6*YK@YKZk!lB{}!D z(gbVhoznNbfLT}%&-+XG3DuRjC@CX63|IE}Sfhj&6Q+gs_~fSWF19r~q+&S#6Z`dP z$@vsJedoV7W313vy$@shJ7_>6sjXzE%t(a5f$Em@xpJ$?&g(Wpa0*{`eAeFn85>Aj zY22h)Nc!P$>{&gvL9JGO*Zvv*!SnUMb6;)*f76IdtaWoH++UDx3ePQp9U|>O|2=Z>-ZF zRl|&w6L2a14{agVmGgxcE4Tc&Hfbp5jTg(e_G=gNppcO@o}K{6-P0tnj@mJo$cN&O zs@1PTt?q`YvBbuw<5Igzt?{XOOXW|xxxx3*H^&QXp+ z+5b@%iLHQ>S%C3K4@o1g%^kflO|PN64itVKtb_?LrvP&0gTmAz{!+QpGAeL_ec8YT z6)Q}m1B>m;{dwukT_-Coa~*^KaaZ$;sio@*CT}ZecMTSGr7O#`ZKH-n*^4JEAHauB zSTXJ9k&dB5N0yc@9dNwrq3LOfcJ-!b7SA3~v3b(udn&R#V@=`Be4(!es!aB^lg(bx z{nGS@s*iN~ourdv-5UgRse{+BZbzvHk*j)LdLPFVq%!IK3AjX_FDt80G^7@H2l&q;_2f`;nuEfcU z>9nQ)PWq5O+Q1O9j$b~{FF~V+T*v!6h3`A%d9FMod6^=X7VP7cyb>`o0c#}P7HJ+* zb!_fBHn%&EH{{(3!F^P>7r+gdyw&U4wXMngvX?ym zlsd{-Y>Yo&AszX8EYKhTFe{H7q-I&qwY^yra z!k6-E__8i~l7)xi+t6gad2W7oMhx4EGNR#||F}2#=40XR)1^QL0DyqjMD>sllU z0%lynHo@gG5eC=3;r`?{aYK30vW5z6=l5F#W6kExXEtwE{i*UeKRbhev25H;sS$=P z7dKSW=`&a;ac_5wTOXSDee(xi-C!+9U5XdbWEAI3QHXyyB#hTIvEc6Q-2giCd4?hC zucxi4tXwmVuMFe!7O-H~D8V3oCBDSJS-`fV>!=J1>;QAYyO7PEs;}HQJ=n7dP?%#y zumAj>KOg?{p64H1`ts$Mm$KvV%t0PS&D^K>>jl4lC(M(!s{;#I;!{gsUW#`;Ew1#t4k|(ER=3?rHL;Krx(I{ zBzVn{4yqdE``P-p3-l36aAOMpn~vaJ-hxPx5m-7!F_XP*fN?@_1NZ{B&EB%*uUoe4 zn)KY7eRt}8!UBEthv$#cdpnn=S)Oa&&6eqX0t3T>hBv3p9%_rIT&52U^nPv2%N-pr zZ*g&-=1I%u2L|eg>b(P-$D}on`JCUx-{;>32F_+aK122Tu)v{(LoL%jSk21VQytFc zesgdD=pohx%DoA=5e;!QivaT_nv(?aA!|ejLa`1V`pQuLq4dL_{O{5U16)g5*q;Np z`KuEnHu3`-2TvSwKH@FuhmdW)e-Z+I;6+O|`S#h=6pWM)5UIomdn`&JB+e;1{S_p*;JMn3za|GD%dM;0A9LgUv< zv5zX0tsmWhcaV1!(nlgM*tx`L{#Ta9Mn^<+M}RK;B|7>nOG}KJ8o|b>K8@gi$r}Y@7xo~~I&V^A6MR?k=r*OP%1LwX+I=-Y zh5h+BVByDQSNXxV{GU`6$>V-H2BcrxF}c15tmRFh7Q=8q*)4?l-E=#Jc165uIq(lD z*@A&~3h@>ZYIw)O4M(Q#nm+%a^{8OpIef+O-eXUf&-#LGOLctr&3DdJRq^qGe_cQ0 zfy(CT8#X-Bv|&ThJ4=qk<~*Tt7@x6$?KV})GQaX16iJoPU+{W_Tue_OlYgkVZm@Kz zah{%ymIowECxftT@}jfu-zeV#FvecA+y8_&<$@A+lZCeTLC1c(eLveE?3Sw8Ap6Io zMtyAG@7V9aTb(F>=io=OlcZU6weVn4b~9aXw@b5xc@BONyNwPL4HnNqciW({Ebz)P@|RqeLW{I)uM z{z}!k;@*df+kAaP{ndlC8b5?THE4X}>uoVHhS-=;Lw;hYVDzbbDDz6TukXr7>b0vL zspB8%^S5k>&%OJ0z5e#QbK^H`fofD<3*5XAAp~X4H8j`@%ort?26mG4cBIAw`6R}h z419pJ9c5$LWB(*P+nSa*L0J!EkrG8Al`hbMVZa#(A*!*Zc4>mW6fnn5Nn5>PLv?LjWT&xZ zOs%bGydANxQ)k_yuN~MlDd!29>Hipp`d2qRw;|M?SvEgsjBR{v>x>z9$K}j$_rXlm zB_6dRK3u_jkark4G^Js(iQ)fldF~}?U}vdacpQa__p*C(_~T=MBa!d^5n5Hz?XSYR z?gwpF8uUndD<-$YTA97Rwt7ZfE4t_A{bDeh^xYq@kwTC`H{Ev;_0c_oV}9~CXtjRaO--3k^+xgVJH#CK^to+xdPZ@(VB1h z=ijYa^WA-QhiA+4mD{;%zje(l-|4h@R2FlCo|ptrt?pRql7`5_!M(YLnm1ZKC1lZM?BCz8(p7 zzvY;_y@fZvR`saA(A;4cx<-3t+<*}+!cz`OqIHo>NA zvza;SI?2mUj3LrzfShcZzV@b09u2qBUe8VCBOUM7Ys5fw`j5i}!Sy$m(QB}%fNH2e8lhZ89`p^M zSAHt@>J5&A5)Ba16JDz%H}r%~`Jzz^nV!MNd!Z7XmY+W-KmRXD1qFD^r)W5r^*>%M zIKltP^e3E;{&=+{t1&aPF^hejU!RYcG?UF0_IcGlsG^?RZ7*2+gp>`*g!I;C+eXKD zwmqA?pKm?KH%V*mzyI9*_kVEz{e0y8wm)sz2iEQK^dj-G@czR4i?BJ^Dtg)NC|dz- zAwup-2~k~OAmP&lK_B2BaZ4Q?a%x8hT%%hFLGXsEn|%k=7#ke=i}tR^ELEO#_WRGLi)3B<`b8JSBk>~F#+yC*tXN24{9CF#tRBthzwVvnpSwsC~tfXvw22JcXuwSDCHg>yQC6Fpw;6C9v~>!Px%H+@i5`$4Q^Jb+@&3FKWBm+Ikh1dU}KLp|gd(^T7x2v4HpA|9~fa@WBV@&R+K> z{6W&ysQ1SGDUc2lmf#@7omG3*RSG8OC*%(iHQFj}jOw=@k!w(p?Vi^-*8er|-W}sK zk#O_jGaX_hAtW$s!Eg3shm*{70Q;PlH|BhV{xWiR#CVvLFccP&6X&A6cE1sfZ&#l40XwI zMsL6V!G@^tD1aOw=vtQ$WH2Vix@8s{L*tT5-Uy10PK%0Qa2StDi;k37YU_k7`Jt?; zs;m<}o__v7RY39#|0#7P#cBD0?y}j{&l@6$uAd*$X^2Btr0ekxOin8-xT-;hqw{t~p$Mw3O92!p!fx+sJ3Y)TRW7O}AC5=7n!^ClP;S)*(rT1!b6lr4=f z#VrqO%$vJw*W8l!uoix@CiU?y%6X+dZqL0yxggqWQ!{p*-!UqC0ZW=TwrU#ETtUgf zurAbt-x@?xqR|&|QejTsK2CUGz)?oQPO_gwo|xohSLmxkNWBbm6nI)FXMlDS0+SecYZuv| z1C%%bM4WZVU*t={4ERk5GrLOiwg=WnR{HoJxrGynUKl2(4m+4+~kw>~WW>Z{UEoL!6f_l3VWJ3l0A zr5{-Y>u2OYLPYbEU;6deoUQtx9h>D<&aO{7yFTXZ+Tkp-3{Q8KDf7RwAN~Ber@G-7 z_Gu&gqwMO+CnWF=wwZ0_?fBBjKI9WzU1j!1ZuDaxlF`+1T~)m{oRGOC7@8`RR`vko zW(>1`mcK99wymHLc{^6GCYQ(6t62&(6c5|ZYGZd47H-{ISm?n|*e~E+_`Cz>ZFH#_ zG{hU|6B(c)<1kWy7a7Nr4K5%NWB?8Ihg&tC4x%*?k%>o?WF`m#>TXbforu>o^gt(* zJq2bU60v*cRye7TG%M0Qv}s;>ppE!s^x$$229wRLtY9yri>QeWrjw3xoy z8s{J%w?dCT+QJ~6%VepKR!t9GKKtOzMrI{{Z|lP7oT>8aeP}<)bE>_FWFK^VZ|*(> zQ8}~%IM7tY$j0y4Gkf>$*|V*k@_1{fRH__|$;^zA$Hxwv&CblmmwVW}*|Xo{FU`)3 zk(SbTK+aIhx-PGgc2kwu5LgW@5fx!bq2h$pHiTtEY7?TOd`u~mp1N6fgA^y`Ik3t# zK{yiDe4rd^X+!K(h^q7F(@5c;%l!E_((Naur%B^4_NbE3^&q-f+i3eedAU1LHY%fS z1HL|1QfwfI*C{1n_HlngP9|=H`K?;jk-J(szba37j}tgIqOs){<-Wo^FV&L$9jEN@ z+@rgXO5Z#1p@V?bW5ea5AOeu7B#@?_^bwSA5OfK8NkrJdG;gwKS}ea7&gz=gv8rWk zT20W&sqv$SBsqU0PLvxAvo!Bpx|dnHhX-!i61btl3^1FM0Xltr+PDz+zuQjroki`Z zHGd%5f0yv583b;}NyzY|4Fv`e{M+>8#@4e48nJ3KK)b{F$Sjv2d8Qf4jHU0!$G^** z&&I}{U79;(%5tC=UwM@s=e)SU7}`8q^CS{#BD3bJ_cb-$M_bKgT(W#}jrAAhS=sH8 z5qFGP4t)l#3r^!S9|OCWqIziQMW7n;Il$?+s~+TK#jpk#u`uzEzYeoTw_L%>kXsyW)V!aoOnlR&J@ z@muAyUOJgF&)<-EJ~~2VYkzmhTB)RXW^rb)J~XUiV}=`h+I-s|?i+pcsvX2t`1;=@rV&GCYVnm&-rAGfDTEj%&xKN+Uc3pqB z$o}oYeRT0AZD^$rvOZ60>yHf2y7o|Qf7Xlwkop@*qMuu;j|vrv3(1qt9Vd}uK5MmHHBKaCjMlF&l!U_s%ZA1z|GYdgp zY9#NIkL3kkSZg8}bJN-j19EfWE~(G@l`Z7DXr^Z&Q?rh0zUKe#urA%w-MvL_1KG@5 zby7*@8`+M1`}V;a35o=IWGmMnI8&sBxn;T9|5z~F4gv3Xi(Zv?L)o+zs?Wn6t%ik< zAt>0(?o-xKdm~};A` zkR0sa$5~@>?&BYvTrjywxefWhKQFE8eoR^cm&0krEiJ{;ZQ+JActRj2asqq{(hT9& zDZuL;m5yga>mz^_H7|f?PlRU%3@q?3HJY>}?nBlmGz+A879RlMq}9O*v^S$bst|Y- z`zK+_$nPPoPmCu&s7)Q7>X$q}+&Oi)*^h7bl!E!mq@toE=|k+TKdxN)IrI5! z{z((e{X8R*k_rQzGskJYJ&mcU#^AtoBt9)n;`b*N7ACR!q{5b;@JC}w!lsU4S7Cz- zAyN!053~Zkt3|fcE^=x15u&Z&U}g z%|;t+o*AU@p%^XXZ}o=rze{+Sl;SNJJG$VI&8M&G%9UpB;a?os&%f9sEjh``36_UH zsnH-%f7((0$j>n`KeLHP;WebL%WA)o#SC1KDtZyiXU9#1bWA?Ke$K9vZ84)ynghz& z@C06(SY(i*!lxP7L4#Ebk_$K~=>X)>tI-vUVx!`smQ+aRrD#JjE=>qm&LBYgpkW%z z0p=7gRj%=?%q4DNMRaUzbj3o{hx&T}=x+n4Upm1iCk&~0hu;B^RAFcp z3ogYFsRu5U7vNF;`M!;9;7nJoYTLLE`6!B0M~|L6dbBhVP(XP9a7LH5;g9^&ecSm@ zmWvd0dC|hWH}7ME|EO%C3+=BiSbm5%Q~L*05|0eitsA~N-LL=&9(p|LnkdGGALxVbDT;r$twT&AYqwBX=L+2g;=Jlqg*S|SF zPm1E#8d@3P#_>n}nT|S^qPB$VMZOT;At0436<|x?^+6#;csz04styEmx<{&mbfP|c z=?%$s&3DYb-a0blll!uet|*IuTU=MV1Gr^rgq258Dy1|jWQcgzj#RqWe7nZFV9hg2 zmo8t~Z_u2q$xG(kamSn`lat4Pr{-N!_o(0Xx$7-3Dkz&N#-B|#B7st<^hi}f8+{V* zz-Gb(7P1oDbvxmHg@&sRK&GXW}wv6(aQ_-auIo3n48xnzaaWWeXc6X z33)bBOTlH5Dbt3|L8K04kz<5#b)>M5ln@kd!cf#9u7_=E+ut@YBDe;?Ai0xs$FBKv z%iCAqZh3Z%?6!32tGQ_t6DDb*#<#SL4;VNwAU+>;{SpS46X}q2bf|dihUEP5)l=6U)QqtHD0|YT*D2M+vrD^mdZqeM^TB^pe-Ll75#dv7d@l;SkM0Q~l+G0(p+X3PuEk6|9Cc-RMH z_!$W$hTIVoa#jNg}D-Q#Ac*~;NcImWvba9>OimNx0{>azWB~P_q=mY zWlyeV<%RZ|^~a8_uW8pTZ+`nnx&%Ax_Y-zJN7rD-M$g_K)?~cMQZE{t!uC_!Xl|-w zknEOvp>GEdV}Ms2TnbITq0r5eKoBm4pr27-d4I1G7 z>Z8~S)D!%NsM_>s{uWE-GiqndNRMXQYG?c-^TPU_+`3tQRpTzdT0ozeX0rl>t*G=F ze7ZEV7W=65+S(bYn=>|*FBu3vxF-%CqYne@x|T=G7n~y>5iuq)K}nlp1hquOE}+F) ziju9n$n{08NiJ%^A5u{vNCQq*&|KYp`7(6$wj;T{t(m}Bt$S%t`RtL9N}k01u1d3y z!Uryc!{?1+Q`CM_V+#ihdpvOIM6c+K25-U?18k%aaRH{LOChi_GOCf84^ZP&sqW_C z$@y{ep=ibP+ebnMcp`{tmtTN^`3-I5W`0JV9+%&=*Y}0L?bCFWBwI(u<;ColGagn3 zgz??1I&453|Mp00t8|4$=Eqrg%#*%Xei-ESJX?&qfv>gU7Pvq%q-+{SP+kl=igXnJ z6wqWwKkCRw1j)S6b>8qDO@d6}A7Uo5oXCJ9iDVRi4V)QQ78H1wtSt}jqvQ=wleQP; zrDa;DecG9rsP&Ro@%e1!r?dN%`$OIHekbEBO&jQM%8YoipO?j)DJ23i?rdRB|GVbO zzA5;DwPCJQKUXg7>~y5N9>Ve}=B-(<`OpxUT+F6S=pJ2EUBD%|22YSL+`TJu-I0>5NqQSLRrae=>Pl3K5IijU-p>_%io%nlZ(HcEbNq{4j))v-Q(fX{BWo# zNK~N|0k9Ug*x}EwXIYVc0;peZCfy}7_qf;-%wKNiOY^I%=i^!SZciv$glGAm+9Qjm zXwe){DXgm@ga30IimCcbd0S5IvZc9<&3-&wS@~boyFLehOP7j`&s8f+YpEKm&Y-%n_Q%fud6$`+WVDPU?imb z$AF)x!ckw`e;~Yo1+Xt;%Rl`WKc@V0c9t}D)>-8j$yFMsJT8y@^<6fIe+K0i{gwki z-z6Pf9gT=^7ZN1Ij1U2rB;72aohLT z)z8k(f9vwx4Gj|;{=Da+^&cgF{>SE*_q@k{p0`2UT0NI#U%c?L^6m?JZoi#>_41#y zOSU)kqVvt=Sh`a*Wzu5BvQWhXn zNOd7-o=TJL8H&g&z=)pdO;yxof|iOT$de%i`APqdG{*WBWgtYx!l%iuafA%@wB0~& zS~Kv^eZ(7{&-JyGwBepuP2u~8{IxI(QNNo~;JD2ojjA?Rj3lh5g@q0OWLH>rq4gpm z)ku4+OMpK93ePpO<@_7AA|^9O8(Vm{wfH=LsgRv(FaxOODnC3M2mBs6GfvtQlS5;J z=7idIosd^x&n31QgI0Kq;{f7`Aw;Hzf_K#tJBiPbPrLH_U4aI((OP3P8v>={84C|DEGnl zstbdx7y%pO6roGDJyc?+!S!QH4%bL0c+H8COV~_yjm=!5c?0X-blR4TRJ!L_M1Ybv0QgQ5B{G1+EO8_>dV$B`uhVq!=M(uyZ+r4H!!;d0mP9w6XD{=F z#>PsPANTarZ?l{M{aIW|cQbTUInl$v{+ee<`)lWmzC*O4b|pA6&=YUmAImoWaT2Ng zs^MBz4VUqi2M=0TDc?yx(j2v3c6~{Ifl`D9icIiksDz056;jJ!=B%YoCNEsE_=f{i z)<1-#9l5(=p*bQe&72u&UTD!r#hPQ0=lyHt4|ZZ`&b1n(mvYNwY0-p&+LH3z-13sz zf(eWG2T>Vx^&7P85sSi)#QCi_68Atk9G!_*Rdw8n!p;evQbdwtHOC{zC{W=oY!4rC zrW9;SFmTZR0;v<$kK|O@?ni-Xqx#cJwei`(fkS8hX{H%mbANMoy!EH}Z1or?hXw{` zzXchmam*O@m!V_EG?tYSbd^5Yqj2`Y*}?rgb^5eupjf5pb)Ef#ajMWGSs$IFY%j+z z8q3waTK5XgzqIjag$sFhy2>FW-$4JK;-X7|=@{J!2_w`bQpK55eI&~A%Uanz%AvDo z&q~h^f2H=9U&d@qCyi?Q#z#k6{;<6EmEqG03+2yw2h5($bXC^KQ7>M-^kRDY$amiz zJv1}yj+~Jrrop7?Nn@A#4>8V~*KHBUPQC=(M{HY2j57aY`E< zFR$EfScP6Dd8DKS;Xlf>}E#Kk|daj^T4SRDxlb0`p5>POiI!^02Nl^=e* zys0`Tzqax~Rb_rowR_8o?zj~#CACHG7u8Dc1Q?fWK!oy}8S0^#Jystb92{NGExD5m zbX8Tlg30o%*yBsAXXU6R$7A)b__Otq4bRUNR1TDT02W|W2s`q#g8w@0ky{YX8ptpB zwzZ2s$VtwxBPMzVpP_7lThlhSO`1sMq@5c0_X368Bg8=M6gU| zUqY|N%(QC*w6NBB8;P(5Q~0Vs{3k$c!NbZ1xt)#W`?qa7x@{ZZ&%YMB#$q^7x3D~& zPH*-}i&|GceSb#yqPAsqOPIB)Zu?HYwr<#pAk@GLJqr(dGUalo78r)nmGB|bciH#lRgm+$E5Y9w8oh%1oIVX zZHSQyb>3bpb=4-;)^=~Hl@o`hnD|NfZ)K*0vqV$MFy%tWUpnw&uSl|@(8hKOsqw9y zMT??7{4i?K`gVG2FRG@?I@Ea@i+-uZj8btMwQ#kSjd&8kzGntssaBdfS-GTKo-Eb! zMfa7m!qPSTmrv@o6F;_|;gp0uy2QHswb$5C)=!=Hwj9+m#vS}xDQ^OKyOB+ZX$`Rw z2&5UgU9HB}R?CL6vJG-y_1)5{X|nE>Cn*D^*|KHz-qjY__C|B%`npUU0ZCuTCPskQ z%*8{JqDh(rf&d)Z7-@U}a6{%wa(INVC%`7(OsB82@O4Uh6?t>vem#DjZZsYkeE-Nx z0Ghm1X&Os~Ygo`0w!}IOZkfle(?;<2EnC!juv|R9LX2R@hRh$xff%HkQ_2>~R>6D$ zl2x#s4!84QCh`ULx*iwfC%vv`dE3cJY&-jie=F!_6`n^7YUrhEzZuf$I8aR&yDx)W zC}6Q%r35w_z7;>jWM>~Fw~DwN`4N^>&YxD^C7Y@26_b75x}*U|?J8YR@81VAPh?W_ zwck)1azjy+4JE|8!FJP|i;I!Hc(Z1t?dF{~6k2cnfh}jyFI|6j{m5soCqh;=U&Alm zS2p+}1EoFZiZblI_uqdH`EMOf(oigr`=4zr*mUS_;7f_$_4Co_Qp0>w)I3aDe{B?2t-hD} zx=4rje6e@$7kkusx&USOcuOKKBMznagK13%zfQA`{E7re4w&XsD|}AOJoeJe6Fw{G z=%r&g;+DJcCmrAMcFe)DvV$>Q5AJw7?rA!DyB*B%Xfy_|r-7b!j&v{#@;Z`T*{lR2 zvRb(LlWrME@1&$h`8vpVLcJ!xV4h~;TawmKo3=hBZB%yTG;_(q61;Gl%~VgPkIXJ> z5@+RektTjDaoYN6DT%phrl^vIn-`Wunpl?o)EIHb*5`KmM48_(ewa$3w7#&|8e!3- zz*dt>FFF-Cg3PBSd;rU8&gMT3Yi18kp5#EW#_U(xKKo2sI$lZLxs$O^KIt_^`-6A2 z^O-hog#iZ;)W!t}jMoz|NydxSY$MxLeNpo;X{K$iG0n>J-&XV4Y-9DeQoe1x+GL7; z7&U^EbePYOoy;I(W>bi!(9Qu-+6pW#)w~XO|4u5fhl)e{{Q?5T&t0tHb-b?TV(+NoBU48L_P}ifvxH-!F7M+FD-zv}J-WY2=a+VXQuL}vS zWb+06#R3cm9k7d7f^TQpRs4kx{z4UWpGEM;d8vx!b+Fs3`Ah6gX$gP63OF&hv$yz5 z)$I1=EWZlpkK@9O>70rY&(#(4W-<6+!a#*|VerSuCegx_VsJ1Ms7Nt5t##2s1OY3Q z2=$emYH2Ue&XAUr9$hyUFyfYbEY-mggW9cKRbPfKINe?`?wcy@;?@ZkpGal#-RpK- zj`3ZK z)PegR7IrcNAb%7lpH#JETUyqLgw4AiV6V+Dw;nH_KfheQy?j1jH!3qWYkFDtmFZ2= z=O+@TB^P}1346`@nz$exd*u(A<*ss{G0FKA%A#sf7uy<0R3(VK#(ZyJ(P;(nRp$WA z)3#BIqfwe9N>$n2h5c-K#}4&SbISg%JsuUJIMF4tQ%KYn;#95v6!|`yw*&esq=cRg z$@!{%gkq76!dea$At?$;%C(0;C5NL@s!b3+q8J*`ym*tO3iI!$0kam*3gDmi7=M)u zz)l}(GJTDx_~j>+Ez5yh$-GZ$zRV~s&2aQy3r`yYeD&_5%nMoeLUP&1p)|KKw=^M5`*`cG2U|7c zdo+=sr4&6;)>MX>=Q$CYJB(i z6PUJ%-L1DKvxCx@sm02;;;HiPO_F8fM*RnWu)1rs{88nOqN!5_Kc(t(`ho9j8Nbfk_{!dMZ+(%9aldA0Q~ zk>;)-)2bl@Ru%HU@i)mWf%^QqPRkYc7sBaA+r)fwF|kMlBzU3{&?XRe6>J(5Zp>03 zpbK4t&f6tGbE*}Vmy4~Xnnm4KxwhG&El6k%4{V-1_k-3V_I`%3g`LWXDs%rdNb}D& z>yODrZDpFpZLyhcI%8`?7a!ju*CrQRO+~TuSlf{Vqh$Kb+g2}zSV&C`_pbGU*k{^Uy0)$bv)A}YsZptt=r8C!B{K@xU16iK|JO&11m9mw-mTIHZ zxAQk=z++zUFhtWeGlicfO6rl<&50VFGk_0GsbMSt@8<9@y+*1ntf^UBQ&aE`8(mxs zrGE{7y11B)=AY&>H%M1*2>khlALqZwb86Pr;AQ>#=+UofcGOiN8+P~aIi zRPSIz*_cJ^9tkWrQx)A7X)Wo;hSS(!!Kh;$M!yz)L-GjJHF%LKfXObWPb(d#PqS~N z@sLW!%M;)#5V3Kilm;}+N77!A>J-zrKk`tyr7TVHX65`z2^qIURF}{l3;=CxfMk8$ zic9&4z`KYw0eVO#=r?&JksiTrrwGC14FR8_(O6HwFG@}wT82a|%7?hMgbcQ;lr8YJ zDDUdBcASK#SXbBXRjVi?+A0z1{Gnu2!6N}ULx1Q38gDk;G^BCplDwdog&s*obKcf@ z@nWZZ+uJAJd0QTGk&V0f_SH?!byqjp`cCENNpB}&7h&TK!4E0SSNv0)x#rXX>*@o< z(_3$oUQ)8{Tbvwd{X%|=RU<_C%0UbM4~l1M%hO2rbaK4kjrZyOd(;OqywhRKz4su~ z1%oP6#Q!j0qhbbHG!nm_ zHL^BwdkWfg-Ofq*(ZXQogh#B(-C=|XMLJSTY2kH%mf5n`VGv=M0+%8Q+04m`2Wys4 zWFrA;ViEtu`UX~cdE6Vy@~atXIh5U^JSQ#V>eZ`l(>LUrubOiK$ODo6b^eL!MQ*Km z{q^PymJ+?Nq14%>bDlAn*SpKkyI0|cLZ?M*lR=w0JB^>m&6NSoL1nvaiF zyqvD}Q*!9|TEBiy;w+nN`$}9O`sErh?VVe|0nzit==b*XlqkDf3W7yQ`#B z6jBti&uj(tMkBVi{`ZEJHjtCI&07&CU_ly zV`K<*!x7O9yaj`oNCl!L1Bkf4a7*wMv(rU>xPgDVvH5t8*|Lq9u*(1BXYkzfM22(9 ztcn*tsLR*6YQu}FRv#}h$dNjoYaiLoIiY%J*_WBlnaNMo#YPs%`7g1Fe#w6G)+M{< z?_B-DBcr3;bh;&M@WOJ=KV8zVPl7ovAtEct6~N^N2l+#Wo*x1ZtsVe{fsjFVHe4@6HxI;~H2>Aw+HV<6iKZ0hBw9GOYMhBVnL4ol>;|7!s9XZLQFAR$D z3K(J-K4d+Aa{B!FFJSO4PBbq+17^aY2f}P=IO2clO5w(5}T18r2u`u_8lsd)>~B`qv!<6x-kT! zi+ENVUs!TT1R`6i7+=0UAMFkq2p>z)Voio?5mbI~+N&H9-2apQ!6Pas?073wcb6_y zO6ctDe!sI*+I<%iz?9CDE@G$gC&#_$sXBu}H#M4k_^i*F>4RB{tFNz@c6WBJn>T8n z37aF1Kgq|ceJTQV%t9^E3*;B#SPkQUuDLl$Ro{?ZJ3yz2yhZK!j$1Wk=v~E=mOi_5 zQn6&cp^9n0)tJtC{_{pvE?rtVY917&^nBI6rns@&sE^fU9msd&uRw$a;|wUVL}18) zL0#^9#IhbdbmrZ(yJ-Uay_3Utf3|1O+>sglZ*_wdgKWI8=Jx(l8k4??7MqM@XZZfg5mrNr;OozW%7xVrnpu_tr$LpNs(geFoQ+qw-q|Yvt{Cvi zKzq?rxe+Duy?%=yYojV$IlW+xFW;~XH@}QZB(E!2hZop%D)ctLIpPXvCm&nn*HeW- z>(=GpcOR-DB@!2fWO`Q$e<}J#lHbSe|;}eN-u))z|NqM-r z8Q2W$`_@+NY|Tm*Wbu`seuTH2p_Q{EC?mL;ja2Nwbj92)(Npi4 z?CM_UDhK(wmbtl=xqAm`-Rj(tel$3-k9(cFtoL)r`Epl3y=$GjLwjZDP+-$FVi6-+ z(#wiLQX3LUUpJ4yh>@z4U65a}=4lFhtRupHLD4kmHf$5|jN(MRvU)!iyPX6P5 z6=KVMt9t*)4^fcn)huLYeTtVE0=bJg*q>R)^X%|!B9#P4D$B_}#K5Md#uNFkVxRGX;gltKB#E5=Lt#9)wuaUca7 zlr2>cR#iRtJnh(qA-?=w4-XdWJ4C7-;>%(^Jovl5L&7FKc=W+ZV&|aOgLj3uuWTf% zr&h+xsFi2UVr&L;q8*zxi(iB8^_tTR_8J0-=u};uI3;#qtUgd_A9J`zr{XN}F`}E0b zO?RzZ$X74C?)Lr&8^lKA8veR#srw+;jJ8bIx<$Cc_H1pj3L44>4>z6=`11I|gQ}LD zJ*2#Nh@DZkel1=8LDR$!5OfrranqG(=?s2MgG2RgfOgaNBf41mTI+4U2y@OB&u919 z8i+Xu`9L)gCZ{59l+sxVltFq&)q!9P~bl_&i^#b68 zjgc3o@n>}U?6?<0`>pI3`eHxdzFz$YW%k$g@$e5EVGinKdqZ_*54ZktITW?jsSDMV zd~Ak)W?W7%|3NQny?peh^t?&NA)$$ZM&_T!v*5Go>+ciXKRX_mAr6Y_ef^o!I*C)a zTqmKLC8$!0I=ykd1Ux+Dazv^g=68#AlYh^@A!lZPte!-JRo-5;Q-ZeH{|Vj#H>V=} z*%H>pmhg6-#M^~G6Wo}1yZod$mq?g%JNQDjcq?1X7jCuny_2f534na&G(Z9^b#S(V z*a}0L*7nRFe2_iNznQ}V*nm0wg4ppBo|9Lvp3Ga=@{s805ZxMaWT^d6 z87POUX?u5ZU+K}(x=YHyO9+&niMWVnu%g=8mo6!1$iFi=92^4xcBIbw62A5-c-WHq z?#~5#C-^&1S|?z8Vz^Vj9357c7-+9Du~OgVbdS?wrxi{coVGgc!N|0$X5;{vRxl== z1AI-02Qor)93I+Ff?rUgS&mNt$S>5!@d$D^km#l6qe=~zb*YF9gShWPB0p4|0nn__ zU0j@TGrA#Zn8Tr8L0|>OIWC2-4Zhc^ffKq^ZG3_Yu7e{h@+jeFEHTB5oB0aW5h*}w zV~1r~vW9&$xIQ-~vN$WiE!WEfritmXv8h2FL8-iSmD6wc^ayIq zE-1)u4D#@79$RV|S30)&hI8XArDLN)d?rktI>ATTZaa{|f$HS(Y;OHfw}7nTNd70; z%ki_EFl@pwyp%V*le3bB_VJk5%x(`dc=ahBH?CZg%Eg|Y?eFc~UwNGN(&e5D`Ek0C zH5)3+8VyN9*9=WEG?rBs7zU3WJJ?WgtCPy{++hO?vI+(c%e5a28{Egsz`L`OLz*Xg z^cl*Yl?UPk)7np93`p1heeHzi3+*A;MZsO*Y3l-fBs?dIYoXXoN?AgNi*O0KD17jc zT*9Tg1)r49FE5`zW!>_%Vbfn7Y01d2<9_71#+7w$%oTs?8&;9?*` z8M!xP{O?0&hO+OG@xdE-zStXTX@~PTz|N8O*sv#WxD%lKZ*{Xoiv8d|x4LHwzCc(A z`W)@F(KUBiEhu}U=ywo5Xmcr#v%rdR4`<)Fo7S#rKEuG(OnR} zh{aNT==h%tESAstyo!7^+$_IhTGjr~e?k~q$4zGeH7md_4UQ3TqNBe=Y1b;7u!qHzhUi;x7oRn7m6 zW(b~S4d@659TDTlrZ$#+$r?!M(UOqJ1f&AOFtDtXyv?%FMUEa;Rk66D;!Mfj?R#QJ zoNt-^WKv1esJ;j(Y2|0pksmlkl~b%%;2MbL;FBDf*@AmATfa3NJ=$3%YM2fliA>`O-)8P zs~@Z}x+EORiTD!a%m`C+sxd$ZDs)R7g(*UJLKo4O1?09EeR;?V-;kEMUR(S2-RdPh z~G_+;UqJ!4t1a*8FYzn{+2UzYU|7Rvz^P#zwBpuGHTB0gq%Z<~G2l!Qf#ll?5$MHcK z2g+8gm|}_65t^cGh$yevpTYGO)XO+Mv;se{7>&MAK}FS-9w8sy z5%u*Wjv$HKBmC>CBM6LGCr)5NW_OROJ8}e9;f*yOJt9TpgK~y+Md%j6)2L3;+*JE~M*ha>rU`gG*THg>ml z3Oxz=AzK^cFa{@rtGS&zmFB4(%a`v6ofo_$a>*l&pqEvRol7DY1~-OoUA}y4Xk)MQ(XGLa)}J52pOhO} za;zkBQSiLb9VOM9@0wIzKIyK_)g^SNMYsNHYw)~aHl?QKSWOM}A^2Yo!QG`l_(jUo z;OFFmM-q-t5c$0WD51GmfF7DuJfbh&yZ9def(7D@1u9#1oIT6Th+jJXA%8NKyRlzl z8IpFe@>qu4da?Y;&1d-=xa798wsNi^{>IsWNDcDcRr9l^B;Q=jKK=zTl)l(^V>#>{ ze6tUy_kGx_jK9729;!iQfF{_=Ap0M+#u2j#3z^yyVs{CyDG)eQYEg7kTWk2gFKUJo zK*~Y2FjmS2?z?i9tEI57FJBgGtF6z}a)bw#13FZ%lH}hh?czmkY$xi0@;Xr`lo!~E z^3H`7u*~C{)7>V0FPk^)gxIB^7bT#nPs@zghP2w zp%rp~hOnMDu;LAPn^0{>E~}ovp88{MX=yGiru`!aSbVL8zX{xl`@Q-!FIiHtY+1#U zC6*;iey>v2)@92kEL~z*y412{DXQjR8zT=pftwDG;ULIbwg@$zNj>7+!51Pf9jq%w;n1g)Bw`!spOUxGKZU&#)|~9@ z>1T+|Dy_8?N93CI$!YbOao(=mdQMkc63P++BMs$4;{yF$Wy#&oJ5j*M8IApiCVK1B zA~W?mqwQ2wP*z00Kto`HJ~EX0jCfkro=BQ_n@$jOH3i%ntjfY>9^$V{5}D$T$dgO! zcp1_=l-049o12w0?5VcqHuh9^oaS(S$<@rvt0nckv?U{>wKW5QqWB|Sm)$lTh^`>p z5Hx&32PCLo53PgfI}pk1ThQ}i1Z09Cm~1pk?rkOY^(9g#b+d9dL)8JP>#if7n-ghw z!Pklne8X-Ff6&5r_l9vpU8uc|IC8?L13Eo4SH%<~j}5Us%)ig&|Ax~i*(+>%ck;6y z49(_kXbGi!hMz}o%8eyTrQAvO17GB0pokQh6=0^8vvlbJF5(Q4^=Dd;Yh)C67&7aAx7cGYcj?wj_^q z$2L9hb^ixKuo78<;2Lg(KRN)4Q;aU&I&YczYoQWFE?IA_FSZ!uF3~)${GE-ze8Q@i zB6#QJ6Njat{C@eI@;a;Mllc?ujwE&me}dn~EQDqUC)eXYzig52YvL2O@HZ~n4yAmS z{q>tov{P0eWq){`Z>9YYfBDO6s2`09m4?umqbC6WQS6g2I_NP-POyL=6q*Har?2@o zjvsI*%{l%RtK*y0&uqq5?Hsoe_fqAK0q{scPCQ|jCR7Q8+(0jfxdd2e$U4kVhkWNL zNJLR5`%P%ckNfkT6RugNtS*?sUQ3Q$HibXS-mPt_w@6v$N*=zbBtNI9jeS*?#ebM= zj+4d}u(!l|atCd(e^@o$h!#nIks&1B=%=oZJdz!~?%Y_frb+{iwV;ROM|k99HsF6#-0A`t(^ z=BW3RW;&L#+L{L}Hd-(5MEgvlee_ru;=`2n$}Xu!KEPx73aLh_;VW*@K6`+N9pr(6 z5FljsjxMuiVbCB_NAqwG5OrCZ@+I#)$^1^@rZhLzKI>_pn3*@;9FFI3{8sNJ&2)@k zTSbNl={Ort7~7D(?0DBAz^`}vD7G2xljce_$}aW~_AUSvcH!tA$MGqioxM$V4h;b& zsDQs?G@*P9f#N?fFDU*+#2l4N&y%Wg%XW$00SrhgykdJ;KRC{Z*zcrlb-X{ui8WU` zuJ#lj>Ge_&RM>l5lBE>mQoe(m_`MRGu=%}rNb@P*qrCuJp-f@%NL51P;1{r(6@H-cQ-$7|*zxoDUrCPjU~e z8aK#SA{sE3`7&GB-%Xgf`wq2Ahw7Gn_P8<<`(=l3HpjKpDI+%SM21=GTIq1xA(3j9 zcnKTLr&w;0!w!?ZcQiK$y2vOO#K7OGWM4YW9_Qnf3(`#1Wi!J{k2lr4G^LRxB4H48 zf3V*?+Q<{F(;I-_- z)X6}He0;;tYtTSi1JwAz{#cuSvvoSeyO6#HCiXPbSXLGklreNPPyT`@I;ucW^>rVUtp`$QoRHo_mG*@DS}_>k-Kg?tIsZv%84_JGs(8FIdJ9h6|PsLU? z;VJKp73idV2@VKhm4qhXH@JYw>j%UW`jiBFfNBgt>kMR- zC2>mLnl2lIV#5zbCg`_mCAlE2azqZISKYmJL6Hf~azs#6TweOk=}$wtTSd$b(xB?XAo`UYg_WnNjfdo#6?QW_^VEP1&8b8fqYFF6Mrhfw)0g=X?YAdgOx95O+61c&gqCrdcU>}RTZnJOptdzDE_S7hx~(s{SQe&nosq9)>uEi-tUke+C@M8A^c2t z4XJs$nU>Gu)@|FcsC>C?+m{!%>HQR|pMIP4EXF(88vls8e*r2$e%?S}GNL|62jZf| zW(2e)qEP*%r|*-7Pj8=PZCf&{UGvm~a24y~KRo!ybLajveev|gczv>yc|7OV?;-iaX~jjC>SGs8n2;5o zshb(tRyu9N20jn&sEI{Wn(B|tcIVC%YAxMURCKjIu4-Y0KB%C4!^!p1%C@3p-jz{z zv_2|91vGQudjf?|1yFq%<_^)F~NL>KAN8!Vj38&_t6Ju z28H?u&GgX4qzp+9WtwPx=`|)U|KI-nf?eT#BxL3NuSUTC_xeKG8~}%?j{iY@H9g~% zp8rVXVY`v${&!;lCfwh4DgGZ05Y{q$f?TJM(+~8I*4KOao8l*IsQ<4=O-{BPI8dJ) z;Sm%a6BOj(pJU1#!J8WzRQd2aP6)-vg$Vu%b;lypqpSf%RrTxy+GaMO1 zynYKCMA^Cu8Kb+@@&|#Y*F)1p2})7Ez2tDLz?3OX3q3$jnf^)AD&;D2?wDD(dDh_> zgN^()Hl2mNvh)?av~xxzbze*_8Gq_foii)SVt4Wfl~nrX6`D8LRQ-h-AMFG?E5LzZ zCV|ym{7X;nui*#yQ#JcL6nGLKHjHo*?|-6(KgG&wo&YeziPg(ji!qIz>aVO~B=)`+ z!!qnb_-WFUtE&0C{B-rIo*QIwynh~QW*3QzF3tai6ubewXgs%-DI|a zFI(8=bWNJCtfYRP;Fyph z5$dnLv1bo3SLExE-#SR|2Q`cMP68%nQ|<4hx3xVFJMtDJKk|9Cvp1yKA!QlEjhXFT z#7o;VxloQA+T@SacXqHhuvrV8wubgx_Aw`C2-F*Kj;Ay~0ci{+dQ%2^M2^ru;?9jC zx>!Jw5{JrCM{2x=pL%}WizV~SnFba-a%Ez|s*&S2-H~H%RR(8iI)``vF#OaLBcB-A zJgKg3bkXBEW^>LRo5t7GS1**#Lt`)a%vOwXPw*{R`)md)F|w~8YfdeH5t*ivVwHR7 zU{Z3d*3)_#$){di?$26RDu0>09OwNds931}>NqCca8ZB9y9y}_PK#84X^bXwjM8Dd zqr5I6gdYnYUlXgm_K0T3*zT9dO7r;v_0G(d{oQ&xc6>0)3W-3GEqhUnm^12HNTVhM z&&NJJMK}}rtJ3&E%pUj(!~&!kQX1lNa^mFgX>awG;@B}{BkbtxoZH!{c@d|66kmJB zk$`$ENk&paUc?B!z{*Dze zS>zR`x>CQ`?*To#?H;J#_1{X)%CFadxv2MVddfB0tYI`P?7x*8J1h5fPTaR|V&}d} z`z>DGSJ{cvVlVE+pr6&4&<1e&z5q1?`j`Z>+H6+Ccg_Cg7tJ)ji`CFUINv4CD37xm zaYn5_TZP{f!T^4cU*ir&9l+6a8n1J};Nr)tmDT5}`Eho8wRHSk4FFn>*PJ_7LvWZi z;#sjj;P?IlIU^2tAl_G{qOfKOL$HzbV5ERD!S11@!&pgJKwN-C_|xR2$l5TjY|J>k zEwvi5D|5>7!gAUtCCcsb*@=_dm$pw%(6c`*tz6L6tk*YpEvQ_2J{q98Q}?IKiIZ9n z=0xYUPD;d4UOK`~ua8rb0q{IjFc6}vP?%CUEp(Zr*v22jrjBV)Y0~{-zR(5l_WDlv zRyyQzzcCZ{jY-TL>);N_8?GxzP%(_@2Qx3^s6fO021`KNM<+BDpDQ#`jL9?ntXuI(Abm2}wR?ED666Q}W1y1q*&Nuq1lnLe5$^1$DUqXSEPM zv$^njRPzuRvA1E)T(lwO+AML<(u+VRB5AZyE_$-H z`a-r2!MhG&n>3DFS}(O;M)qvv&t7|({wQJ-f7>+Ut;S}Gr99dq)so9xO6#Q~D39iZ zT3#O&YZbFXgaH7#RQ8siV*_y0UCc}BgdkjcNpg~$tq;)6*t?Qz5MXms_&NztTQpzn zn3Y5+;8F$`GmsiPUga%uDsPEUDe7dumkGCa(ZN{_PHN<~2H!OJq){}@e^-L%bdMdS z8`hWZ@R&|V>o?%YUh30vZ|``pOGU_hd&j&7^(!(nSLh#{XFCerfj0HQrqTggEeXGO zC=g>t3hklb3_(QHm8U275~*v1e+cEu5C;@P;mAWUyZnocrGow?AaBR@LxZMWIjm2H zf1uV7AFq6-PfE&5N@9x*@tWk^gUgr=q3pX2HY@-e-Mw-^5W0X?F{;4 zJ`tbe4Po&P{E;*CCwh1%q~Pg*vrI83nN^oj6&W2?Z3OUuumdI?=%}}F8F#O$f5r75 zIaO85Dl2mXBO{X|BDUY`l5X=NXK%BqhSCBzIJw{#IdFfO5FU5{@gLZQv%lZ$wtn5k zT#U;fF`u@ATY!hFT{|UIGJ-h-+5OPEH7+kNj#d4EZBERyhPKI{EOpELDK9}fnvnO0 zyaeTW_Ad7##5z@v)GBxPnQGkeG2(!u!rV0|eGWuY;r^i6nw13^yJ3)&t8OQ=5h0hw@iw*SCx zW5-pFACWqa+kXU(+8-FXiOW0`^zy2&z-^{0SnBfpBZF~y0~!^aE+0$U5CKr(6puxj z4+!_(uBgb-ca30(Y_Y;~8{H2+=-#;Q+Ywc_zxB^|e*4>Z7SzAGFnH7P_Z|#-mL!yKMd{PKeW1a>|+rLk0hzSdhlodr=K5OF+Xo|!-C@%jxU(8Z}#!y_nuwKbHx6k zKZgw%5cYFue=#Ggsw!(l;(&~d0iZFY!&BbZ7d+Vj!gpgfd$^wF8gqtSo^#SIG01$a zhqGBmx&=Vl-O`h?$%gz)q?Tv%GxH7D&f)H_)V9yqYoFQFU-9ddqs9{?fQ_&^QXd!} zX|+bi2kLVZ5=>Xb#m>e$lc}!JxtQ&{dCKiZ^Mhm_zGw8NKPaIGw^ycHKDVBE$B!I& zWaO)_VTI3Yua5lHNmwwy_FB=AB78jCZgrzV-Si{$Lqf4Mso_TwY-N#1Y6pu(CxUU$ zib-P&7xUGNS^7$1IrzV1#$&g0ah9JEk%#=lo2n*=E??E&oe2>(W-rMMKpdlyz4D8? zAs-W^-3UvWyh{k9DiIj1fT)zE9aB02BkdSR7PTVGr-qAZVHPz_c7P8++GF^j(=fwA zkQ~ERbBB+fDru%Q>>Jjg3Tb%uS!*sbfn2}Ruy3C=mmTlGpO7t|Xiyy=e*MAWRa1qZ zryaTT&O4ud_ReAMzrWBh^Vw$`a#g>%(_Pmf9Q^w0ua$A(!7~qoZwU3SRK3in%0t=$ zM=J%W1kfJfRfuN=$~n9Zmu#@}83op-~_Dj%~OQr2!+n_{p(R@wakMWZp>SvIpwca`X4ID^V>AdXzKL=*Z4?L>epCRaUNJ?^Ld@s90a=IjL&wUdp(* zW{q>(o^1}l%Jq8)=L;*(iJoQjAn0kv;L@UZ&`opo9as`88!ATYmVu9)YVo;Zmwf+ zZtgGYtb09WCoFqlSpuzYZdawwx+)5-=50r{r;3!8rWWq(fw$~*>>r*wqo(A2yXx%b zZr7vE`0*Zf2Hvo<&qe;b(IERM2j05-FPL6YIemI%#q^t>%*$$@NlAI;IIU#b-uW!* z-(*+1WefeM9{wL%tmfbK^ueZmXWc@a> zGDNk2@3`>|c%U|DNPDp;pqXo-w2UHvPw+rdF#HKo(%BbZ6ru`TY|e`>@{P_>eB>yn zaO}myEV`h8e}4Ey>B#88gAs#-ap}=pDhN@ew?y2Jhg}Zy+z-)53L;1p0Y)+`f;o2> zJ16^b3~-e4TEO!Tpd)sUKTTmY>~l5TqSwY6rAp(#lcjch>B)gc;aOwsNyMOkLzyrY zenQbTi}2YAg_i=fVNg=}fTvBv4$NeBz_V$|Sf)~)yuPwZ2sr{ZGGkTJUkE-^J>T7Y zQdPNjv~-zAvr}vMs|)yzYH`M>OyHt`G^LpJbQqoF~8UmwXZdU9-rDu<=@BRwxt zub71D{rju-AE-Kbu)@s>b*vqy58#9E_p{ge^TM)LX&jqRU`^<#HyFJk>{H5PCEN?+ zV72>_$da?hS1*=+4<}|JKQJgEF+lWvSM+u8(V>2H;3piz5xXdzaK7+7unStN-Jeyr zA|Pyab!$tuRr>vsu@kbbqF~K_M&nOJaIi# zz2Tw2-68lo1TPW7v5CQ%`ll6BCD8t@ZbGNcj=T$yrvb&{SMpJhC{^`N3)K&YA!hbSy7%w{<98 z$v(P=?^kwZ*>(=b@c>x!(4A@NNt%f067#u?S`GiM#Qe3Hw+08l=jXTOP;}a;<;xFQm&1K{9RItY zA2ax=M=iG=ieS6>m%H+7J{69o<>&k+BHA}1J#8loeZqTR-;#;Ch#`X-7u5{P5N>N+ zw21f1nU|A4J-?}WLjQUpv8cZP1U^7M#jf?QFKU!(_?Iu{*8Eu+PYn%=x2!$e_H3%V{N?UhZ2*sUH5bhKP2K7dkB?LRT#_-sv~`1Ioi)BhJUUByxklKNEjhDf zEAwyrxUQhNV8p7rj1RXC9Vhp5g@+a~)`@?CYMXT5=u0Gc!ZLt=9NEzV!tB%;c= zrwoO;^R}-9Ub`VU$q{Z@6{(w{i`*_9?B?*x2CfmFePSNL0S}DSMJAc-6=?(eRvVL? z^PV`>-2s@!YG*zx=tl`XP!3M-%wYA)#8vV;{1f%N4cY^X9E}K89#dqb1t=fDW49v? zD4Yy>|IIm7RZGj_=0<+Kv3YSz%hCl6%)ep5(*N?D@R!zXr!%{?thl%ggf1&HGiwp; zOZ~d`mAOf&b2WMc&F7eS!Xv@4l0O)9mVg|AZWA)UlG)snA%fSA^lEg)Xlc`WHd1i9 zQjHlQkzsL>aY4oPd(4Kc4Led&uBk^d#W~jd+zK}E)Tv7G^OWKJ3~{x_J|}tA zdSg(1@k}=4`SnZ8{3M((R(!z%zgW5Q3(ywmu08Tpm(PAbjNo20(qQ>WR}X$;O-FKOv!Us&d*J)tFAnK6B@lBS)^Zw+l04_3mx@*jT+dSs#0auSZ5G$le6(hJ}@%=@%W{PwL+X zp($ssi80b|ggNq@+No=#2+CXN0u}4wEp?94b7zY;use&rTEL#!an6-&VDn0pXLxlD zy)ml@a-tGAN}~&?%6T}~SFzE}Y&4%MJ*xUZILh_xA60yxINSX&8!f%o(te)Z292Lk5J&W%XvRhhI`?;P@jcP&EMZL61wpZMA57>d^3@msVxCkxALoZbEz0G{D z{Lp0Kg!irwi?fxx;yp0lJ?|2L1N;tFP#A(N+`^(Lp_d(C&=|U|f++ z6=*Bsw@;bEjuqMXowt>*VwJh zpVU78i3WbX$S&S@{yY-0a3=6Al@9agBpP;|pCKSBD70$SLr(6z_#QtOpJ<>ihg z7o?^ZBr9v`yA&a%*oqbZMGuPYue}rAh#*A0Z}gwvASdbAua`G$Xfkj1wgAdo?`?x) zot2NBZv92+v6Ls7;ov*uImYP2FAX&+a*rKuOP?~q1BWzm!-oQ^%R0D9|MGk*={ek+4yoE;!Or5 z^&`*=Rii6~A19PnmXYG(DfOFY&)!@=fi5n#UlHnDDbhwcBrdyyTV_LfQZygd7)7U^T}p3HM~mDPY6rEKzu z>%3KY;e!IhwaFZYvRaTA8KBViG$^wn4^fsUg;d;BV)tS;I^OC3m1zFT-x&|aVlN%J z|3XKZ%FEoM$m8n*oN;H)#5n`%q>sDy*?i?q6dgxbxn(Z)mL>l0EB61VM#p>WuUkzj z^J-U_;4yTo5@F`NWj%RY_7;`lZ9k$X;8#5HSfJ->t;R=o_}7?eqX!zB97(Mw=j04~ z3gEna5$g8~~=7Wz5`IBr5t(b2&0zH!OF=Wd6qsBZGr4UW8F6N@Gc8Ey!4MD|_m z@8g*B$(*VUS0~RbbUC>D_j%TE|D#2>v)U$CTtY$yG}L{KAtC;oSW}2GCL^b!cGuq? z-#a>ucl_(c2VQ7$^yT+%@(&3y_HB&Is7i=&HSso?pH^t0;#EQOBEiyPXkxbRJ}Jor z{+F|mSYTg!wvzkZM8$tePX@kNSvfR$PdC!nlj13KL@A3hM=DYBNEb_-gQB?TiqMAU z4i=jz3s?y%C6c*$cN&CG_jsrsKPXR(A?(cx7BySC?wLDUz4PJOZUyS3ar{6JO5D9% zUhaWpV)%XivVJg0M48j{T}h%lr#Z1e`jB_@nCYZ~vv5U!^4J`HnjgGrS_|U`x>prV z(l=L^toKpsiz04KWQQZ3{}%J|uN8@(lK$DFNWA&hr8&zxx;5M_%0fJrQWipEAw3kF zpx7;%4vb(L5b}MZ?6+(@vEZh*OWx!Da3;I`Ker#|(zEh}|BLn`{n!y;9K4TM5^pa@ za!DQXKd@4R3 zZ!@)|7z|a0x@7K`XfRALOigIiJ23yI32%LRj5YJ;_h<{J$K@OAtQ)OH1OKeg6zlc` zqaoL!-(wq&hz><=Q1S%#mh+*6K~n&j5YqgCMWFal%wOq&jBp8rG=Q|g?kPM~_e_m( zhi&8aKf|I}^Gw}Vz5!(?5OEtu23Af!F; z8N}0&JKKt;NyU{^-@UxgHiMTMhJJxW9(cY2(+}*q3;-^wkireIs395lFa;h#r??OL zppJ;Wr8I6Z$Wk&-)Q=U#+j@PYZHEyBb0TZ`j?w)3rrrGfQychJlpAFM3gE#N_Wao; z(KSx~kt=&bV!nOFL3N^Byrs>P3d^Xp?wyszlbTilh<7)=MWFmrcwaGk$}`hfzaM&3 zTa#HbTYO5-*Hvz`KV{3$tkE6~MW`XoKZrd3KsAOq2OZ>13;riS?I8qI@xm(z)l8#< zlCfNi1DXHr#A+S@uF~17ycdKzX32n|&y=33hbaW6UC~CBZ)CxkpWq(+pT365TfQ9O zdh{PbHUYEVj$Ck1_nYXJ8utBN&MCeY!?k3o>m(#xnq^X#q`fJ-*c-ri(8i-I(+vaN0n>otov$aRXL=Rw!?=uS3MlG zuMt<@r`kPk=^$g`@sX{GM&kqA)Lb*NPi@vL9>?D~KI_mGHc(jOs;zbPsY#!8bseI_>?Snm69Eq=(h z7{k-!oVDrk&dh`~Pp{DTk2hj zjs!#E;N13XdxAbO&JdsCEPISS^i0r^mQd}sl*GrJ&eql=M_TLcx$0DVeuHq#>Ue5P zuNxaSa=s-mWx?=mjke0T)a1A_Tf^-1(T@D+EU0l8*<9_jBZ^vEor~oE+|`caA6dU^ z8}WMGWI)38Cy5$1JO(3KPq%(i=6?yG5x7U-F-`c$KCd@rg-N~IB0Vh3Zn=7O(Uq2# zD~oQ<4I}kOAY+~U4YJ4J`6MSOxIlsQTySd8Od>BefUwhqKd~J=Zy(RY#^*Hhpl&`b z96KaED%2ek4bol03jCgQgoB_Xti~S2l|q&Yi=qV?ouX1ycU<2vL446&xSq76>gpqW zDSdi8m#o6Lmj0DzgT+vuFNUx>Jp2`<4A|f>M=6KcfB&IF{0TPc(4qap+n%zJT|lv) z5_%71TS|hDCKUAAG@a)kURAQ|Q*;8fLuspTeP+ulYSZg@S7bjG#d9(k$Op24Yye+Ow^&MZw<|_*_@OTg8WIX&t z`;``X#hz=I`5i^Su7@|6Y-J0kK?f5MMqoxTTz!3FBYiynI2fzoL27CaH#Q!wIlPH2 z+=z{`&sW1Kq2aaq`q#dAZSGun@lQUyiQl{N@Z^^p8(+pgYf|>Z=f3{8*XPPBR8zO- z%ecl0o)aW2LjS=`EjJ-xp#Wn*JlhNWttQroKPBU;h`uX%EfQ<8HtEmsK@grL+jZAi zC0&L$I@-%Srg?mX5uKuq^69B)l_OR#MA56$(yzz~ZoZ;5Swdis^6FPysmclGmDVd1 zRK&HimgSq2;qZ2Cm$N?)PiY57*S>ZF{^%X4OkO#gY=&vzuYdun1AQh93+3J-4NKI2 zI3{#|(%941d4=3=uMphZACQejPRU|o@6idIHJjZSa_mrZGkXq0?}b={dj}l43WrC#V|M%V<_B^SO{{yEu>xn&KDC1KnFk#V9&?24a+^L|FPI$!w*kGAc5)) z@uQG_0T+2q)Zmb3gMIo04GbFk7R!1wu6k)u(13xWI7IVNRzO(5rvnB&8)gd$2ypV{ ztQYbZ7usX0v;4$?(BR2@sL~$^OEMa^U+{0;oJXOEyh)_(lx+!gy1VOWGn8XcJ@M7? zay}kmiJ~mKITl3vQPI(KU*EDEi2N5iiz3I%kiH(lkP2FU=T4XNstj};pkx;6z7~#o zu&jUdKw8I=y35X2DVc+WB{+trj@kiq?S=%pwhl7mkX{9_UPW810wxz|Met7|fnoqx zd`tB*ONBM27WgB|`8t7853d2mQB9VesMz8gMni0xEyU1aabs)95aoY#~}1vRr88)wy2O_;zY&R92X+PWDl0z&iGXGEqX8j>7S zXH0l}0zS+CdiULb<^NhX(qT#(sEbLOFh3@IdxN7?wYz2pyba#t7iUZ!{l(8;@E!TM z#nh?ve#D=LVQ&5{Nn3E=l!pR%VtL-7(0TMQ**Zeij8wa---H;n!{az(LwKZud1>{uorT{uc(5u?&XIFBKI9^;P6=VUAmUxE2bM?{?`5*G8m1v5W= zOwq5!=lNyzap)bGr*}9qw>cd<>{_QjJ78$MFw`$4J5G$1qMOYDPIH(6J~1uUT(EF0 z(Hd)f|77Vgmra~t8*UpuI@_@$)3L+pC@xfeYm4LGPALj?c>c6SwJbQ!*37?+&rC3~ zf&5dKF(RJz=4T^QY>~bIV7p+pr$q8A{G?2s2H8c?DgT!0g7guJFO&e<f*GXcnvj_7-Z5Sjj67uvCE${E-B`;s1$|8YTNzJ} zs4r$>WP<^eV-zKY>89oe7`aJyZL^rdfVB*?k~Doy8EZ!k59*g(;vj=l?NYG|2FL5j3iv>a921-jdF_p@YCgm z>(}#QT+q>V`TY;d^WbEZF< z%t`tQdMI6we-FwPcv4I-3VJ1eyI_3MZGQTImnOtcnvh}2A3LaGaK0f}vtVq|z}Usr zL!Cu~909wY_OlnQoH}#(U_+)oSd%zNXG$~~2L<=dPF~=QH752JE(M!(;jx2qdnY5w z%mke&G&Y?7bpOhHV^IH$$kF1g-7_N=KH15Nt=Nji6&V`Rngj)+VNoQ^l7}u9e!PZ{#E4 zwvn~9Ja_WC+S+vx@*&IidIYrSM;YH*nR{SPCT$C10V!Ew7hr~W8WO!btaNPKc-y4A zR^Bx!wR*Ggfmt@H@pDiOu7&ljtg-P)B&Yom7Y)5@VtV?-yM`kF6%&%|e!v-g_aU&Ktz1LJQ zbbRUf?bo-LZmmbGw|-tRd$n%T(vH+Yi>WO<@!W)oOp(z9Nd+#1{$;-w*-m6u;;(?; z2%ebu;iJrN-eZr=<3BM!b4G@_ibB2FH1`?`^%fUAKAUfu{rI6&Gn-~kl`i9@RX2FA zr&J#z9wr;|Re7&*crHl+NYN*Qq=o5y*bPi8QdEY@fRA8Kk?CgfZ7ON6q~NK@;R_h#6QAW7nvY!*n^f znFp5XLZ($Ls2Yr%a;X-ZWvqWtU3tw@x}d~}bl-6yiAla;mC-r9!}L&lD}6!1Y0zWt z8Y-g-Myq7tMBs>EWPd_Q(f9hmSm+ zXiQ2Tv=v{k|EM^x>hgx_DS-FhQ*&a$l8pgEpJ-!*F2#KTEE$)5q$$Rz9FHp*46}5 zXrQ0S^GvI^Ek*pQXfVVE`ECx>g!-WmBtqBr6m)H*pCPnJ$Q;nn_;uPIb>1=Cspbdr ztRG_q{O_tJ0OD^Pl$kjuH}|#7va;qeW5!HsZhi@f6w{eO`JNekKDhd_kBiTDR^{ea zIeE*NX1bF5EO~ATKGGn7_@5;w=Wg<2SH3l(c<^SHUB=(v^u*rqIb`IyrIDB=H6JpOPm{!rmmr&ByYUuSuKU5avvtJnqo_SA+Q&(c0Es(un%e&bo48BeNCvJ#B z!APG)PAuO21~0+`;2eaBGRVUl{9t|kS^Npsh6dWIejJ+UzMB97#HEQt>)m&YOKIW0 z=Y*MX!&$3rWFDXb*m!n1t{uwxZvBB$3;-!j^RmR|jCsa=_L8p0X30wCR z|NGOY`KKRUTsY#64eL%k{YO^F3{UM_cw%9};CYX|&3|CM-+pY~-~ybG%c#U)kiSeU z%7`di;?79ZV6%wuqJoEe6!boJu)KBzHNg8FJxR#A!e95P%oHbNLX&z&Z~pDcT9`V& zb$>VK&dL0f+3e~c(rS;_rX5$e4ZB_t8aTMJa&TZMtG{Cet~({};&=U))$f+_W(%e7 zoRqITDVGJdJoWn+MWKWMLhOO3C>Ewh4jJk$U>0B=CTLD1vw2cgokN(`Dv;$SKw1Rx zS2poiSY9c!m#W`){rqL$A=TAG`l^k!ZsfH?7P~fns;!Ns(){GHlX(5cprwZ2lTW8e z1dX#A{Zr>zSVm5DoAR*g9I2?S?eAN*bhNcmMo8()N2M>lu&Q!$NlGxu|3H1SYyMF~ zPJtetdLLdy{%5a?I=^kbFoOYA6}05Dg*cmm&>*%&L|$LW-B5!=W^ zV?*m&3qxy{n9WP-w1us8p+bnq!Gz?lp6>}Mhu+cS3kgMmp!25n1HOmCIiZs(J8B)G zcgbfm-Hyzaq(@PpbjXwl-<+8)7n=o8{aTkx`U51&+Tp{6$YRZK8$W9st|^vZp@k$( z(rfT_bp1@%71wlE=ck=tG7&1jiRpUKSh9yxR7Mt28k+zs8DwsaaC6CF6W2uuR76bX zc3meS=;Z3)#q-fNzq|=~e%n4`mwUXxr|mWt74Ou_#WmV&fyL|q%8J7AJZSZ>6^=c_ zZi`QLI+Nr174|wM8S}o3donzv&NxtZF`zmHSr@+R0?|-CB6GsEh(JRzEfDr&wMvo}k~SH#e`JJ!a>1j%ZpP~)7cbm& z?+$+9$?2Y57QW-I_nRt(dz!W^!d6<`q<+3^#Ex;Vzt4YskMDX{*=GUovFdj>;)grl zY7++C0h?q9jmq z$?>ytK)+tjmxdLB&Gl)qYQ(*ydE#FvO%2{?55PzOJ z^I%=w!I_2Y<~W^m))l6PZwTKsFXIlw-=o6s$l$$ve3q(IB|bhc`uLQnR7-sb9d(}3 zP!XP*7G4n^H7`SI6h*hxGo@`u?ST&u%yi6I*LL3=M^Q;p>EM`Jf(n?jFRsXvoShiw zN=VH}OUzET6vcH+j&qdYnvx=C++^ekC7SB-#qBNIV8{zksRuIQQC4N|ks@iqS^)Wr zCScNJgQg>PLxy@Vt-rmZ;`Wa}{`e!>uFWhj&xDT*oAlAFgdxoN@hod*rd2h(Jd=;T zy<$DvydKer1a*oreIl@=om8*f%Z0@RoMymeXA=T!%e=0(-b;7i|xgErIflaW}9M7}rK7 z%JZlUoJo(23KJ*c_jG@DIo)+lzBL_kop?7ASG2H8crY+k+HrgABbkN5J1gUpunMBk z)4I5bPU69^*G&nOp~k57WIO~GPK83Jg)*q0pih>P#W(F`#SV8C)`FoMI*=IMU56|L zl-u3ej*@b__=cmTMF9y?V)gOvUG%z(=km684=V-QS4IgXlN)lJDEUo@IE#OEBiBna zFFV81&fElV2EbVJwQD?rT%)=_i*n>fV#JX*6#CB1SulFMH~IC7itg1!EqUSBUfZvw zAV$z+seDYKA>_iA z5kkZ&icp-_M`nIh_ik*oy(uNg5xJZHD{lRX-R#ot6Vj%pS7W7;*jI(`8}nG{P~<5M zJRA9u===VTc7Brdf^hISw6?w;^??57p*t$n0!1i7xWpt+)^ynl4I}{#h+qh^B7p<~ z`iY;qi`{Wo%*3T_a%zvZr4!qZ?t zEV3v|QY;SAGh$&VKRc0tUFJQA7+1()foMhMGbhi9%dp z=E|J08wwSPf9fTqP`OxHj}^FFW#6LruNeW>P@yPF+ih_w;B?yi(3+c{GsA*Ot1z( znhp|u)j@%g0sf-eV0s2sEZ6fw^r;Zc!baI+gDh4ci#?5eaKooA9j0U2B!r%9u52u) z?90yb zeDXF%R1#VirZAXy$!4LKgEr+Bfd>Y<6Z|xk<`OA7fuvc{+DAQPe7SpS`S>Bm=svlt z9JOqk;K!!bI#%WOiT?fQ=H`9P&8qu{l;76t#^%j82F;3gr7XO-v}5P#SxcABI=!=F z>BWU9E-7N+(+lzO)PYA&=ZA4lma|T})}@=1ZQQUlqFmsn(m}!%G?`y$>m(=X=?;yk zs~f?$vzkK%GiIok+@!PPPyU8I*b3^bi)E_#}GhJr6u znk+Doe@gf1OuNca3S;j#*p$Mwy9(L4X-_^}g%sw-wQEW<_&;gA#!)7ft`*E>4nCdI zcd*TlvbB6V^#zuTG8ACXPqr)3!$?<^-ucorpQNLD2B{4-2L84%oy|D&|NFv=OjPXbuYQVD6ujJD*gyvzOax> zZ(^|^r}~gt95h$)r0i5Evb(Cb^Ow5j9{$qys>?h?jB$S^zK*=THW;0ijq1CqZNqKS zqZFqg)Y*n_tGc{`{4}D|&F1vzc1jFoGj*H$;^7xT$VViP;nA4yZ%4c&q!6--Q(qx< zzq}V7Mwr!dKY~|3T^nUai<%Yj1^G#1NnAtb@5d=d-DFs_#V|D6xVe=K;;oyF*+UIm z78y+LDZ*3ICqjZWPF2+|eWzH7Sh%6srm?vU;&o|bvmv%6Rg{q z*$yrMw%XbKH1^`uKGgobT0nP#p`*~saTDI^>(o4(!DR`e0)OV=zfce>o#a|<@)X_V|uSCy=H^6{Ey`%pqQJBi6INFJk?Gr zj#PUJ66m6l2>AwbBy3O=@C-Krn#B>F4(3%6dH(&&S%2|v(!(TvLF?$6ZJIDX-e%4B zH95Se>SAlg#@gxBB{F{SFz?muNv#Rfg+uS>7JctwF6v9K^2RKH1_7aJLciT z-q<6@cI$$q(4+Vz!1akS9L^ z;m}|NjseX~l`~Wk28fJtF3TS`yYd4a3cMlQ`LXCBntA92sHs9YZVIQ`<8DXHT`885 zwRil?{d)R?t5Ok6mE{dmJC`{0oD!kt?irazvQbz0WPko&DVxuKRi-`vWl?S_hK$vq z$P-;L-yRJuLqC9;7kL zC#dZwPNJNYpBbKL2WbBY<)ugNHLQgMN@L9~@e{zdROUm>iB5h(Wq_3kmLggH{1^J> z!{F?Ck%1@OOpesZ4GG!<)k=CaJdQKc)c{`*>gML=^Yu@yJ=<94*fF+xhoi3X?AoXJ z`utq>VZ$TawlDhOv-TC0&J?RP#aX$c{j(nyZQu5Y@@{M*o{@+aCcN?VUfCXWNw12G zQq2SkG6~m1xj@7b98|QAC&fY#3yT8Mo${}i&F!**1-wr>qR+sfb>gnQh$ zEUh8HCoIyaHD0h3{6k!$O2n{0!k6XU{@Ums&k+61ZUY_&^0(RcReyW_>FsxF% zr*c@sw91mo5p~k&nIkGyE0-Txw(Q9AIm0Fo!zWXLf#wGc#w2^eo;?NjB%@(YSlD1) zW~Od%SeUGb-U1%n51d{Is1|6q4p6r$xMs(wu$M}HPe4NH$?PDzZIo+H6LYd5O>;K# z`Ml9Jr&_9>Q+4^0@QS-Or`oHicGrq+>VP>-<>k1pu8u!6ry5r|oqQkE)?fy!bA*}B zYM%CYRGZ8Tyox?_3K7COneR-cKnTjW5o7oA{bu4~WJe;I6%hQ!G?m(yK74f9GQK5u%9NE8p+bZFaYK@2 z%R%s0h(rtFMPYnEKZ61RiF{*q8bPm)3}8@Re<05BjH175GgxU<;9)hq+5Kj2Qn-8QEiz&KdQfbG+iq0?H}d- z!-7Uu^HM2j_}KD#mdH{DR}{SID$jfQ`TuEO`d_Ev zHkMf72mfqSrUp7`L&`~0Kwg~7kZE!Wcg3AYCW|8%CX}5=CX4(F6S$u-&tS*08v5jD zvCvna61l4XP@~;A)HunOt52va4DgGO6eE&DRzW{(T>p?5S{oS}xMs(N@t%8N%a46E zFKD)Zy>?!-OQZISyQ>qO*8}M+(PO|TxE@tv zaaC1uN!GAoStWx~QU(?0ia#P&t?nbyQY5RAnXaoqMmOBx}dZ zJF?0W7p-2DSd#N{PU6ssL-Ao(D;@50?w9wt>00q62Ylw`v8%JSZtyDCL}`e zY6N~v91jU-KGErrhm<3nftJXgk;Mk3kR(JZBghJ#pTKV~6c!E7MV{{vY*{BBv=!Ip zSK2eG@~0Hr4kn8`GAC5#)i|9~^2;VY~K z6P!D2;(_$y>3NlQdsW`l;`9UJqGVU3sq4h^DL4H9@7ra==_BhayJ>>Rk&g7|q_afD z!#`M0ppqmS!g@oXfUv=!T13c69vu;1eLhSdX)s-dLRCmCtJ5@_poKB&lg-T``UHFJ zwq`QsN&RfDuR=_QBa~M#W%wWSat(%v^td2{)oO?g49$(pF6Q+xaME0;v_)_5d$Olk zPhp4HI(?_`MiRRChWofTQ8W^73+^|0)aa(BeSnn0v=Y*G%ss=~s zrnyhD8>cl>nnz!ISTh?5YJQ$3rX4@-DW@k6Pn6NEP)?XMWnBp@%osIF7AbMkqD4QE zONbK%y9lfD0a0iXW|H2nwN=*Ixp#;YmG}1CFA#Mdj`v1KhffvmC7Z+L!r>9ne7ks= zQ}uxp=^;zm0ba_>00}2+0z2=>E|LjcmZg-qdjolnkQ}WCw1DjNkA4F!Do7+`1WPOu z7vM__Bj{V<00ECAgkfc*>+Qm-r8b+1)zp~{Q)?qkYd>%3pR6yorS!KsrP|_0vf{04 z|I%Qz>I?03>UjNyVs&Eeq_upz-X))zGP~X{)2wY&e%@UCm_2)*d@8g-IkmLzLNS#U zdI699lv;)4H^?}E!0SeMbOa^`&rGl8w{u5Sbtcx%nJE<3NiPU}Ddje=h8<->ULM<) zoR>Fo*f906o;kLK(pp^F!FEYUbEXU%HYJCr=1k7Zo1BC4boG6bLj&O9g7`&kn%aUD z!vdgJEyDeMOicgw+i$b{x^Zu_p>Mx^xRK>H@`Nvbc!BLa&)$4Ph`Bs=H2aRXye$?< z%NqG>jokYC%WTWr^v)#fD&tE{d0EVGNQaRxRhGDedkMo?(g*zHA0ymsE`Nyo@rT&l zPlal>T-qgkj1#_ef?Z{EyZKPi972A0M6;pjmAB|Y6itV|}|Yc25MPnjA;T!G=&&fsnb~C4A-n++eyQ%tZJg>$k}Lxyc~xxnh!|Y}oY{lfnJ? zHJnN`n0}HzX*ERuByKZAQ~lid4l?~?XaS-GUL7!;9ck){l*M+qaHysw=H!gY&R)%n zx4d_QKYF8S%7ZKGt9ZN%1&p)^g^R0{919KCI4IY`gbE1U;N`^`85$OkG;9-)qHKq z){DnQ!EY{qL3)orH`Hl}SoP+zYsXY0dQ0yl3^r7VceKnL-}}o7XYbw>gO`o5)K>jL z8~*c~-|~yh_^o)_G{#`KvtsaXkivxgH~Qke8=$)<%ug%D_Y$giB=9kGF_CIyL`~Ns za#jcDFFl3#TJ&--k=@5+K{gt_CfY2oRUhnz^YQcitKA~&Cp^psNPlU3ZPpiD-JzL# zq;b`%lWR`q7OX1BJ+=1aFg`u^WI@46)>d%5py0T$bT>b@b0-_HTX5}u;`*n-t4=ks z>vJ1!!fw(ZQe5LwO@gd||t|c5c_D!;*%n&w7FS)&O+up4>J9$C2 z!BmVNV;fuO6mB{u+HwPU$?BiMHPTp@ZKgEXiK1jc88`qQG`wl(z;6Z)<%`+9sr}f! z)AmjimPx&ZP1YeptkO))Ea}Ifx_xrH-PnqIT>|Cki@RA_q|C{HRKOjd*fsdS!}OV&1(I**$FO#Czv)pG$$Y|EdjC&De4N{Eoo8t0u3M(CJoAuDaXZ#?JcZ z}3&J>PC@=l@jt+YQ(V)DL53GEmRPt$g%qQAb|;@V;i9og7J>PL*9n z%Df|dVa492^@cx3u89%yuD1hi87en*F}ICa&m1+c|Be5Ne^zj*x&;>OXN5vz>AbSC zd8K$3@jr;iQ11c{p!j@4%Zz;B=q+$pf)i0JNKga<7YXEF8x;;~05W^WK$l-tvN+J` z2n?D3K*jY>Djt|066kOSE-n#{ZoJW}O$ds-o*XFzwcY5oQT0OjXNHg{r}6hy_uW_Z zd!sWd#PC_T)V7U(|8$TTGZ9e(?$3grW;E2~c~GH66Q(}s=_s$%~1ce_Wh z7#1^P_W@&UORLdhF?R5B{_=rX<99|&Y;WVHksTXknxM?tiXS}ryAf_|Hp-XFAmf2#?_h0bv9%B38os zKP85eIANTCuEgaj!zk-KYKUT{6 z?b^k^V!GSLj&MxA%fG`hV(e{={&z|9?Ujcr?X$n!B6@LY|1prF8rZo@7^Duc}AFqGk(H9q?ecM{SjyOQu}GJ zc<%pnTdPBGj1Tx8kA=6>U!Lv`b-9FWoAd})+j{M5lP0a4JXv|z zGA^m^kX~jb?{P_a=CX+^$&Ml06rY4Gp#z8rL*f5h4)5P7y=G#*r$+IPq|Wh0EhgLD zsA=@!@SICV#H$6|FcEEPH?p&+F$VFy89zg8oIXQtWgp_2>85I24+>_{$c=1|bu`>I zab#9t;J|^sZB>V>Y`q5#3=GT~Iq|lJKGD&A{@s`CiQaMJ({udU$bR~gtYujx`ZxCY z=cJF1>#dyUhYUT>3vTtq?e@uGNqu^UO*5OPh4t=}6gJtueWE&IP{hCaDkL>#y`?ed zF5gEChDUst`Q|iQ*2gTm)k$hgveSC;CX8|vPZ}(ES;Rx#exW$|@JlgZeO)lC4A zOZ6-Etk5rA#4aKwKiPK z<(f6(gKK#$L6NM5FWOq#NBu)KVW;5R@hZlo62nF42A!zXH0RNMy^HDtZ|Y+4uc@x< zPhY*t?!0!5&A)n87*38?q%259CE-uudGr|b^D*WL>!vGStC!-Gp*UyA6Kf~uW6PlW zB7TqROWCej!$RR;r(LrK*{ok9oq#*n<93H|np}9_v9=xLL%dc!9$5#D4+ak?W;n|D zKS?-|ms;;0-kIhAh3?Avhjp@~?d80He6KV4!~0N<9o7NCrSo}W{HeV&W=OA`TG`Up zP5JPuqs+Zhi01Dx+bRVB2KOhvdmP?98FE3Vmx`RbOlBaUZy{VYALY@2S4WZ$i%6;o zuS5#e7sV;5Se0MA$bBHyioLbW!B?y~3x`!(s)z$86Ej24$n# zS$zFSSt}GWb;)^tS1w(u+6L&_Mazf-WOl~_tEj*;#}=k;RfjQAn+d)b*N zN?v2SCc8A;B*kE6J<_-qX(;njQ>E=Og9Z&xP8NR0`mUdP?^J$r+Pza7*a^O?!68f+ zGtNr6-H{tbD?h*&bUO1e?USsO?_=u}o+%dc+%(KIw~-``_r^4(W$96nH^QP=4IEM+ z2Jr3f`w62-^#S|4pcUpy4@uwf?G#R~)TOt78Ra|+vPer(EIC7gHI>~f5I!J-_^3_D zeSiadnh){`%N<+pbW%s|jFU5_&&Xw4?rN=>vEZ&vJv*H=X!>+!11RLlM;>9DA9>^? zx|}@Ef=;N7ko--utVfYOY2DygL|M^COb!St>A39{F+OHLAQ}P_H)Q>-OAtv~f-A;%xI>ixMmUeVh zxHM3BCs>4T`=p~JPieYH_Ni2MP2I0Q7d{UURE(KND>+3uB*qdiNFX-CqcBvwd zC^4YqiGp4OC7|5u(8I{I41GxUmIEJaQne^5#wzAV&Q0#$2uJsi+c$2%Y6Tim0p1R|rAIc|ZQse*DSvrBZLcvfe!bc+xVGJLW-!TF5ASv`fCqU}O~vqC@i{ z9S?#9f`u3Y=7Z?pUq# zgVh~-aS8C*AHp!q2U`6(<&fR(ftM&yMxUq!7m1-Un_Q>$`TX@7UWO5Z8Nm*9+J54n5B_z|EBX4!i7kw99?fEKsBA&41=U_tt1w zpjyqp$1%KTG&tsD6enI;$=4Jp>p)54K#0By5i$X5GYZNz9jS&r{}9Dw&rNdur=VC$ z8%>L>W=2wotVqENF>;zpX=(^qM|5 z`e^hS>0A5xF9`};A&T9<>ecf*!RPhY-E~2R&qDo%Bx!f`>$gj98R8fEnIWhyXd;$d zf1%7_3MP~fcqbYA7oM+bvs%l*2A-A@$>O9>WIitR{|XU#6a@) zOK^ooMyO+?#&M4xesr8PmH&O|)IqBLFAkczROO)GJUnY@So*BQSgYdUXN^sql^!Pj zkTy0weQesek?EBI_R?|VO6>ua>GC|Kj6WuK5yN6T80|$bbKq&fr^l(wK zTU1r=)bn-q?{qr(OB0y7p1VyPO8RwY&anAs&ZwFwoDYU6a_$E--Xa>t{P>nLXSQHL zy+JSH;r{}m3ywrBTA>nQJ~|&*eUV>L?Gt4IUJ<5ej1A(iwPJ)Oq0jsLQsItcg^pTb zgT4>D1D>Bw!l#6pNQ?$CuA`eU$G>F$c8x3G@zr0(C`&RY6JH(4$UuY~o846wunOe6{Kjoas_7O&k@;& zMZS;67UR8-OmYFmB6x}^ywD++se?-7uI()8vpf}HBB=}uKPB|tblr*&5t*;<;;lS6 zfp3-<$s-+E3~8!`?JNpM6g~q`e4u4fASzxXEnNoS_Hg&dPe#SgSTjAAz5HF0BgQaf zhNE-_U%iHnTGNx|;?v>{{AsXVRfhP%Ny8%3dOrZ!#5QBbuwkCEjZ*zdodS;LH@)(J z5iBj4vjJ1$7wTt+KTih6eiEC0#bhmMr2px)2H_&!K3_^5t80_kLABzSGEqF^S@!o_r z3KfZ6PoUQD*gze54)KL@iP`fj{N8gX(h3N5^G;R9$K_^a+5NM#{q0#c|=oiN}cwYA6=-cQCK9F% zCm1i_FHf@%e|(0y&x$_g8IKRQOYOrm)B&%uj6Om>d_en3NBZ#Num1dF1{`gOw|W=! z?JbN_f7}r{x9nIfK7LHRddB@XUUKG7LV?u&r{Taeen9o+8TS|LAZYessr}P@epa|2 zzwe^Wiaw$jyGeE;KLObVw7aMTeSrAdDyd9(uIG5Y-Y&lCJ}w+U*=}6yWq@2X4^Mz) z(+s+f3iW~91-c8W0CC?$@EI6iB&FG6A&TXRudE!gBqsJGa=4z1b^Q5lrz5s?gs^|! z_U(pM!u}E2tZL<{Q!Dw?QyugET9Z9u`}yru2R9TsK*YS(3rVx0SPC8leP9NW0rGsN zM?gMMD4leuG_@T)ryO!B=~H3hr{|cXbQl&GDWu}ZupquomQW#1%}_-ZIAmwvq5zw!W&xyi3o2HVh6eLz7x22Xsk%Af8qhi zDjj?uVx*VUEnE^mc9!oyEmYD8q)4z%9P&C`D!n_r~^=Yz9a_))g@cQW76 zRUV7175GmjviFmDFK}f({*boG4<+s2m+a#iX}tAg8i>1J*qeQR<0|2~Rlin3_wnEH z-?E$*{w-@c_-FPxFBFF6=6d>|hc}}vR6vpKa#|wcibxV5!9bR1W=B%oD4|Xt`9)Gr zPLdc5B&X!_r*&b{MdVQv?{+U8Z_@7>`u~`F7r3UbtbLe$PA)X;n=&pIbTw6^oU-~0Z4-y6co$w_kdKKtyw_S$Pb>sbk0S^^lHoaYj9-}Yy( za*rqHHcPsgdoAr^5l5y#>68$Ka6n1M+uI7|(F(-6+3Y$$`|&4bpW>37@3B`ny;#nT zoj<7ouK~AIGiuOZmkEN!jr?IC^#9o__SeEY2cSq_EphSmcb5hTJ3Wrhp-X_GYNXP@Y9l&d z+_F@3#hR_~Odp?3*Q7BO?jzxuJvOyC{A$T-WP_A*T&P@B zQ87&TGt+;=O23xPoEV;GOdV&vw|rt&xO~%v?J|DMdUhyl+_;uX;m_-x&pr9Q{F^85 zJv$;aJfqTDa&K{7apQK`ws~AJ>Or#gAY}ZXAf+%zQ}Of%;Tqwdj}ANkF28uJ>X{pz zvNloQ9)jC@KEn6dUs!Gz#- zJE%YHX1*Or}HU>~UF69#2Z;IjrL=QdbP zqgX@K=mP4WUT9%2=ut}{5e6f}O}WQpcpC5bSmv?L<57H;VkJBgIx6y&1B?oHAvtWY zgrIKhqT2CI)fJv@y0($nd)%t;HL}gM4bb_k-Y>vP&_e5Gw{;{_N8Dq z!s_et0R$+4`^7rS6xHWqf=2~r2Ps05Yj|5Y3gl4v+c8?XPqd+AX^H3uklTjNtkex0 zDI9&LaO%``Q>QXdF+NiE(&ZB;F7tX_O0ueC*(0JKASgs@OEjOj>_Fx=JcYATbR_j{ z((k2ulD#aoe?5^Y9$A~r8Gt;{itxWyLwSsLhwv}pGF5=ys|vK4DZfxhi-F(U-Mx2j zw^<$jGxZ~zspRLEY-$vlmPEDeGnBg<5@bB^n``uo@zPu68)uotrTbfL#@Me(1Xh^IBWK_8%76s%1CEc;P{<#M5J>w=8o@M1F zxx!`P39(l2f?dr0Co^_dE{)0kr|?I-vO&;S?!EW(Th(;*tC=vl^9gOPd1XcCZtd`x z70#vZijrMQT1)uA6D4Xkw^?Z@8#BTKu#5lz0#a7u{U+QN$y_*r(UN^6XhM29VQ@>P zt3#KvwBf_k z0P=ddMZ~vC>us!X{6&RN=h7>UunM6@mhO{3W5=qG9IiSdo36;S9BUWes9WVJx2M*mCTTo}npk4{ORfXPB*CNV z$dRgJN5&sMJpPC{&%cKHy#ZUYH||&fp=6`U&1M89lBi7RkIa=kjEej#@Wijh%y-GD z=AxaS&_CY_jKOOpo46my>3(i)9&BSk`+_59bw8gU`6Uw&w_Z$n4Q^wZl88|yDi5d$ zL?7N4L1J`waG1idz(o^@Ek__ov|Rcv7||U(Qmx=U8()!gX!42fit($y@FerP$#fBS z2G;bwp6ZW7^7KiurrIP!jN(I`*3;9V;hO17(b0D@M1dM@RnyA_Lvz{-UT(sE2a$Tf z?JjPg=O+fJ)SB9wm;i5!VZ3K*kS2ha=w$A4?W3e@S!zzAY`1_?3+8xQZIcR!4du(| z123h!g^v!LC1?|3kikV~qa85L`?%h@21=86E2~Far*!Exy}x+rQ|NzXmrVsX%*^>`co6>p*se)`(*}6x{2&N?(WSK!I1cX72!B~{ zL&5x@sZ&2;+U%s_9A|h=aZ)zZelm4x(A206S{X}>wNmwte&#sdD$zvleI+fxxHc!|<^N1Y(VbJTFFy7U`Tor;v z0=YHdR0A*+10I;~Xfg@fqM_WAkBE4=NpXlai{>A|CB=oF67YHS+em;D!4*aur9YHu z^k5s;5GJe)R&w7fgOT{Tg&7SK4a_KPNX}CT7Yy}z>BhLsyp#+hOXTyW9Xb7Aa$K0J<>tyVgl0}X~iZoQK|WiUJ?bmyfQpN`E-iM4yN z$%>qsyu`y{DS3G*VTTj*YH}399xr=rN?z>K#*{o+_tAmIEFWPTe%#FJe6oxK``Z9~ zMIRK|yza2k0EbFW1X7NMu)cYMl3Cmi)z|~?LH*j9AORz+Clbi4y~A_hI1ORA_25Ah zKGd7)&(S@gIpJTBxtk$zi3J&4=>dT-O2PUV1wB*TwIUUmq-DM~8flY2vW2U}WX!+uZll`UbKSd+gmr%C6IZL)Lv04V1G~|FmgyEaf9!gL z?D%!PE&z+|KTa3U82IZaPhRg0F+hBzitB5Sh3hA0kB z{r%=MD<{kf8&r^b?AU^%N99QcX^!8g~l&M~1&I5dtga26+z!Bun! zrzxE^fBVx8b7{@sLTkeMH$Iv;e+5$bo%&?(yp?$~%Z9xLQJ1ugkFy3_A9%bcJ+R`> zM+RjH|168Ec=0cPE;CoWbN;{>^#&Z^s48e8i&ZalMbBl}0)r*)+{Yje1|goOPeA@$PRJm(|gTYfi~id`wB z=tWq!@$^PK>7GJQ?1#m>E0a4*hf`EzL;?{Q>!E>IL0bqfHddV`F*jX*h#m{7&!4$1 zFK^pSc4%gK*32Be(H;lAw|3TlvhRqF09B`P8Q)Q3vIV>C+0Go-}R`W4FbfU&cx*TyIODjzxm*NB4PA^<| z`iC=ZZD*ZRKm1T0*m~}}GYb}+`R-injeBIf>AL9tUxiHQfi;TkON3A9r}shur%b{F zVM&tgNU$w|jG7EcQaMtY{E6Z@bBpH8DVjT{_+F>JdD4T24m~)jncKGbd`HLm8?@<| zy05l&->bCYQ%BC7J8}-bdT;TZ*+=8=O}Qd`cqQfD_@mt5j`RPfZ)4*)Gj-o9`=*MU z{7Gw-7$BO zmyEnKzy=%1rUF)C40pd@-E1~iK5sbpIf{=<87@`J@g29bxw3n{wW(jt4seeP z+3eNi+#5S_J*buY+JvLrti|u8HeM1dhw;tkp}&Oyu_MN@nlZb=rGTX$<&wnUwgS6@ zkrSbfqzyhIU9VRNtxdv}rq(5GZS&T&FnPYgTyJX^A5y;>iZN7*`b_ee;xXN0CiwvF zQmeaI;HlE6W1wWYAw}hOBRrH%$)ovmR`{yr3z~(0H7{7+*0!XTu7s{BI>fo9m#zW- zdQi#QvuU4Q(dkVwzB-*r<*5(xRA?-Q zdA_Z!{VM;%CCv}*ZEakFaLLo8i`R|R83HuE12lSdh#@yE(hhRnssI)xL=PRGQ-h2@ z(N*>;>PL`yEDHCk9y%&mW}qZhcm0oU&aje!O< zm{;1ITQq8u&H$EwgU%$Y7Xn&4P?L6O6yFE|T1`@{Et+6L(Y9C^c_53Nh~W*I~Jk z3>H}Vu&14&6#NAyQNoHNeF9M8{R|iI)Lyyjx(_$MMjw3w>-G$f9Nd*O81`Wd)dPt~ z3os>`LMIPI9y%yRsF4|=NJGFg0gpOD*QMstrKU%u5;lY8Np{aLYw6t5%wZJ^XP2%X z7tYcu_*_MCvY@mAQeF@q6UdS~i)YV&v!J$MNNgwD5T98vwLl&g9i3TPni(BEe|L)_ z*YnZvNuFLpc5*>1d#)%fm+e!u?4JJy;}`R(BA%sO(9xcYLR1iE7^}gl>EMI zfv69P>v7EdSg}i23Ff42&G{zz8mX5r0$5S?tmJI7@cZFvD;~$URw=56FjClnf2BCGsO4 z*tEFNeP7*%h;80uJp#_f9HEWH= zwKcYMTdmDjlLZkf=_dVgrsyB8z6om@JWN2*^*QgchU`O_x=^K^;de!qy0N5#vws## z>MC2(i+nu{DX0!EN@fAyiqyQoF}cXLS6PPSQlM= zA;T6y_%2aINh>T~9^tRW=(xp@(r3Wxt*qPK(y-H;$yANo8&wFW5zbX1ti)>X3Tdy< z!_(hVQNi6biR``zde7ExsBYQa-DofniM+wkn>vy`(}BFn#nZgI=({ZyT@rt=I4^HS z$Nmm6vy$Z)ICUes2j(@YZPH;q<~8X+D~MGm%q5mP5OMU6kiz)G&BFS+=g|w#{S>w~%`??@;%J z8Kmm7t^E*tB3=)&;btfNEHcb5kr>xNeNsFwlqNW}Fu#D11k*p#rMa*GLl}22oAA_B zHcmJ+^(oxwJ!sf$!K0Qr1BpjOdG`~XFwYuwLRK zGkp*UZ1c%<~XOt6htErYdT5FQ+3a**FS_kH$zo4*zop3(lSSy|%c4WmH;wbQ7K#>ikDVkE=5po+|OU^ow9IV8#Lpbli zzR8o{v0=~h*{|<>XYI5JUie3q#5Vuw7~$d`;o|vUFRIHj`^z`J;%ge? zKZZr@VG*|-b1D}dS%jygOGxoXYFs&1FT`M?B;d2CH<--s8C*_yOt`Z#vB3sS(;HQt zAK0G-bn=Q7zh1dgNQ?}fs81f5X0Z7C+Vs{DiQ&~DT&0c}K%1M10aVuvhEVW?9?%C> zM%n8}>a<#2;VgSpWl%pInd)N@F*#|nK(v(%J}}e3j40U9q|8n>0LH{zPdq}A&8ec7 zSM=@D1z>TEj=f@IXR@ zzYp!mlX`9lpB~)u*=Ji0vZxz9&d=@M%ctL5O1ZQkJCMi_e~=z%F-)gcB(kxxr<*mtQwr<&$GUB)$=e%lBp3fh)*_rO zsL07pjqUBtswn7b*7e#?C%APB7cYVwzIck9A>tB{fcQt)pjh3>N-2BysPOSIknzOv z>_hWZ;qmDa2?-HgR0Kl5Zn7QDXN82z+$#&`&rgnUw9`lY$_S`&(i|oE{BJ9V`uQ)E zvr~xsxnj71Z0j$U!{ffv^+3P4TM5#2a-;52LN;9^KjiWqrx&J67bw~S?s6^vgEpJb z+wLfg+KhA^ph9G`#5g!<4i~Z0&^!4njvwIb>9YY4zO$Ytiqg`|AD z_px3}2VrsFKg>OA3Cn^P{v~?jfFnxUTfKIz@XhMg&d*?sMKme91{hHn7tzTEc6HLO z^OLT%ot#MwC8dls|E2o5=SNx!xc}Y9$P6OJ8J)h=+E&*(y~jZI#V0=uPeo6yK8WxS43Zlk=nOf)ZLzwQI}3?JZEL+ zTI{0%Q9txpYC=i2Wk8px#Hy9DltG5V;v=H3az32ZNS~KU&NQb4mhbJ zZ?$nI#ajq;(WpNJ?dLzJ9V$0Q>2;JrD6Sy!{3elL?Y*OAiYz0lh$PrhR%-M7NNdj0AdjYV@#SVuTvU^#By4_!%%8Y(fP z8o@Ii51Rw-7X2X~jr;bIr9+I6r~8PWWhJBl0$kD=rBV^&WQ23X^3Bqa0;YPn>tMC8 zZwo!HZQHVqFDt9I-$=4omnj}|{@GDyuinBvw~bZ5?5Nu&q;I2kB95YmA@Bc*nK)9c zOEPR^LlMbB+7cop;co^*Ak_-c1?_F=7Bpt$GjJzckY4+iG<{1^ex<*UbH_#Yf>x#S zt#-yG=VoO!1N*|tuxWn1($@XD<2y_v!Ta~Kpr$4v2T`Q?h$ekidX@cifbbaORf*aV z;b>EC@_~y0v5cU9Hrr8oz*c#H9$iuhsk9aEy|gaVNE+##tBeTvK?wT^>zNg6A>4YH zEZokJenb+2radQXiiRy~Z+}oTC97iAtO}4u*dinQ@kW48uR~Z@V1tRtme;Vev7J7* z8L4fl4@&WFv5?03{nn|Xiqqe26Cv7nT-I77k^~0g=jwNr@F*8nQ*z+^5uqwD z;?)GO#qDit0&47~jg6&xgCWac0Lh<(QZa_L5dlV9m=Q)G!nd?t&C6=-=*Y@z+|k%! z$TZ;Tsz1Yeg}(vMF=?#GmLw7+q>9k+2uE&luaQR*S6 z^WaR*%R4*;k8p1Eyk28Vi9$3q z{%xAHzz5__DG5vm+wl0ILviiYA0)lU)8)@0qo!yiV6ah%gWZKd=cU6D?qlS6W*XwT z)bvqPWUXb}MCMD08iW7v?Agk;wn{buIj15;s*KOTQgIr_o+{xAMGK(#esvg#Iz-Ya z?}te7cY%5p%sm=7?}n2-rKLRxT@qg^a*)UYIe^l0#C)={meQVA-#xjhtZdWCcVF!( z6#^*B>=N+CR#V1@YQh`4aFvn|g>tG&JWwQ+?NmN^2*`v*dF?b7PQ=u?sY2wCId|Ld zg9vdA2ZS%cGZ)4xSlFID;JNti>C?<|2FW>2pLTA!`~Ex9ic;|gzW=1-+>_E7p5)V> z#5shS@6e;}ZF)%C(-Oi{Y`ZP!zdt~OrK^C=OT25+JtIGu5&|WOv!+WPE2}?lFWWk* zzP<IB>b5cv$>c>}?XR<#Cv9f>EBY#;@Lqid(9aZoAZu-%dfzLiWu;u9V z^3|h9uP$e`q7R(<&8>22hW$_FlJA1VHN@M`l~3OA1;_q#4UQh2f9x2>?#-(nn`NKK z{smbOifadtmcLHJD*~f|P6B)hk$OsGXax#9&4zGVz(_=NxB`yJA&ehczCOS#J1Bgj z&WZ>P5Q+zxxdALjWse9BWX~j+9Z!PIC^aHteL?E@-!s2R&R^J{IO#O^YJ_>far`7O z*qI%L-GE8#{iw8vsN^VTYgz&O2JJ#10|`&@b888=F6@qL80%4W%j-hiIZ%=i;UPAe zxKF?j`gb35zwiJ0-~EhYWp5-Sq?bgB_v&Ofkm^Myn6WhF%WagH3GtlV*>-y0FHintf)ak2R#KPPkEU@xzN z0U^R~*|-+rkTh3GdJ);oBA^-FvNEIMP_&VuPqKK6)VgR(vkf%3ctwgS_(xYav6q_I zYT9>buyWRLJ5QY|Td+WwhE3TiN;B`QMOac(6GC>l#}jg!oV8s2$=Ayk%%4~`e?i&n z80LNL8;m!ExpJjN)`(UrLQ4WA7a<#AAN{qk=<mJ#(wW{$Mivu&~sA#H_! z6I%Z=YB<3W?4xELo>|ypcno7%@FZLGv2{g76BoI-~(5PBUsjz0B91PEtyPwKt=Gd6Jh=aS0(ycI1n8fn5oSf z)B$l$uAyP`=C?O*o@pI5s&Uk)=e+%btQkAJgZL#1-jlc+JbA?uKFE7VhBe5~+vDah zfBtk(%jhjBon~`q%GS}%K~sX7M{kwhZW-MY#J}3}P7j{##j}g?bSizl_i5v@((qsrCNUbAUWMPP@Dx6pt<6kwwy<6gY>&eTT@y3k0iZTt{3Oqz3+2dR1{=X>qa! zVL?gyR7+XBQSGTv4DikN9iUKns*UkwmQ;OGh_^&PcUc<#rOx#R-R-_ zJNWXYR9}ms;$eGzf~g?Bs#Kqlpf9b8FEAz4+aInlSbS42y?iju=B>~m>FxmDSEC@) zBK4V@@JGnsz#eI89%4^)Yb4RQLu9{(^&k4C88pZWtt^9*X$fgLlMur^$yv4Y-ue8t z`S82aogqY_X#b_Xf}T^R~^8iJ8A`9v|~UK}JTw3n)*H5=t@Nhr-83e9IP* z*#Mw3n8byy9sY5R}ApB{dWuN&KDUHMW@KIv&gi{3&M#FZcBu6rDAE()zJO zgS{TFSyfxRs^)Nf8n;V6ARshl=%XQlDJg*=c{Mf86+?xd>~ZWjvu5eSf}_K*a9H$&ylA(T<~fSJM@zZQ z57OjDHdtA$LqpRTf5knS(d6Y=OcA#H@&rVZ9Ka9J4pQGS;SIS60(B-chgBM4dXUNt z)0YxgiFP1gOQ4R!#d8g+fWp*@(&p@?!pn~~wKb@?s+Lk-KCNx;mWGhp$ql)uYwQ*B zB)xV2tct8;n{dtfQdOEIAU;+xrNgtkCR!h0NvnEASDF+O!yb5f2^p8k4!s@s;_ss5 zh0X(4j*oWsvAceS& zzO@k?MoRdQ)yyC=Y2k+2Oc6@0x)&0 zP_WtR8(99;9V$Nz!&ycA_L{4`LV4YxY10m!IW(=EFqU=w5n^qPb<=D%#2`p{+I{Pd zKTh7x6*XYVukqe~)jsXeY5Hv);F*9~l6;o#hqQL5$g5&p5zJd=jlbLRbqm-MVS=&U zeVEo4@RuV{2QLT<#0`w-+Y^&X3}Lzqe#YZ*r)@2J_kR7v6G7no8kv&f{Fwc2fpE0a zMa;K<-xnvlv%-UHx=0~6GRPJbp7q5aBO@2cI)h(14g2oPy_+s*509|S&_+YZ*>uKe?F`EZF1d3ue@MJnZZ07`A)Ecvk<$ULyZ*~) zC`h2yAdeqr4GHSn)(hID_Fm!=au~7Ybv4C1ifhQIGOMUa*3yAc9yg5;GFXS^*i3r8 z$(F;e5Vv+6qI#r0<}MrSkGqx(P0-9o+*ukoy?u)9;WONqcNQdkdtgb-Y2gQ&-x=(K zGA%}9ki;*gfdYj;$s#~lf_TsZV`XVZhSOVIx|QOCA4pcU+~np1&Q4Y&Y_qW|ug?+Q zX5}txnpXN6+0PCn=U%MrvQ>7y?&e*iF&qrJ*(_#v0U!@)-W5t{d*a+CN-HVel;Q<4 z%&GX)S6t|&V_1{W2hxITDDAA|M;H_1^0Jm5KeoaU7nfuA^41${LfwooAKso57iU;; z?D*2GytqW;2)?pY-dw(N)Vzw=5PvUzzjGJQ`vimq8qDcgc_WrBup7bxe0YABb3gCp z9})}P#maJV?sfBRAX1V5R$`#!>yGt&Gv6%ABG|2DHz18Yq9rLyC=j=Mmo#Zym_o@l zOnkGnBQvjhdrid#i*-Xq&GzcN%#PAG*H;{`SON_X?+dfC3h{Y!^Ry)u$8mG|=6za+ z6a6@yiNc?0f^?lX0*zs%R5F0AimqnD;&2U_RT<}#OQMpiH#}kj#OD|x8e%Qr1JDn4s?N!fa$`yH-VcGCfF@{i;> zSc?(IbO&nU7Q@lEnDIn0Of#pn9ut>ipvH5p#()&TJ;xw)k>lz5PGNJM0+FG|`c>2KaL0Jk=9; zeuCO_9OpY=R&*pjIOwUO4>kC@x|(x5YRaEAemE4dQf>FhrP5Hj~X_wr1E;k+TaJ zBO4{}APJ1=3Wa2(D>DM|!@vyuCQt|24ELuF`7=lZH7Np(fjZPJz(n5wEl@b7F({`g zky=DqQhE(@fHqK>VNn9@qC;hr873PLpK4}Kg+_tGsia!`lQ5LIJYeU18%5b$;qBC9q zqvC@!N~J~_r1dg-Df!qSWt@)>GN-G1lHr9xYMGMPdhub#AYKW?k(W{?Q}bSG zFT7KF`6<;hwU-wkikbxQIKNV6@frL23{{OWR;^SAXtlMCmbmcL&W-{ZFXQ>9og+;_ zY9ECL80cQih9HX+sS`YS2miZRe9uh2<8h6bnkcLWANo+DJcB zs7jSOOyi|g1SnN9oLG$@Ty>aCsX}#lEgxG_K0ZhpJH#SuOjOC#VP0yPMjaj$rc6|6 zLRGS$L}Q#<8x|g(sE)Lmv_X-<0ZK0~i`VcllTukUq~v~O_+X#7A$(YXDONjVX@ShE zdaW%I*NFB}^SNqufS*?o%-@n8DCyX~@R(u-5j`0cbRn|t!bzc31}G4$EJnENN&kQp z)*@U6$SE>l&;py*SqSWv0(L60*dGrdZv%*S6TG2{BX;=zM+^zh>IV z5?g68mJ6Ou@+9Kp6(TdoP*h+!es;65!VsXBn*#je<1LXpES61GZEId$)xZ}tjx4mX zmAZmjsyD5Vr8s>KSQ4;fA%Q|P=(a=yhN#|S@oy#sB56#B9N~^rD8BP+ZdPBSEH3zH z=We!TZ{4zmFGkHtzRo|z_Ra5~9?Ma-@Cjkg?y(QfF>Lsa*jBEXSdoJU$V1TY5)%!0 zxjq(g^53&&Mq`GZHD z>`(F-Sl;!-_u-!b2}EhwAduwPhcu-CMNv9s5EHBta#VE5z*$PxV?z{3p`!*zPAJkW z8l9xp>D971(E`o=CwT`{f6Z- z-yLXDacwTyu{_Dv07hr%#{=O$l1E^%0j0|r!F{>v(keWio4H0>%O0BM+$=lph?Lg6 z9pV~Soa3bP5brkDesrcN!rYUw4J(TFe&mt~uMvy;hFEk<&PC&Z@;H+F(% z_rBsavuw6mYl;y+@|Z3rCe>)7;(E7)0Eiv3rMJV@(6ynf!N#68C7Fz=rha7y!Fw8y z`8CjwQ;McAYG|5eKt?7OJ_?{ynr3qp+N<)t9IsW>goju#P z_v}2>#hrIo;YHA+o_(>Q=AUtZC?&Qr+8IJq4WCuB!B_3-N8hM-a?J2b`-C z(Vm>UV1BNqHj7Hk!d&jdRXLyRf3@rxTLDTbuzew1M5>#6+~+4-iqy_x&IIvFBQTXl zf%ydXK3uif{UFma2GXUm`+5%TWKlIW!lyeA_4M{`J^Rwb55IJFYj2M1xO73qd6$+f zxs+GjF~4EUmWKH+vwG?mWYc!{3j>%}(6gmhMIv%@dSCnAy1yvg#ovYY{YeYAO|fUy zEUeAUtnFR3rWTCubm3LDw(*^-rccYNiT3l0uF0ApN=rroveJ)u2fU39k^V_^2{2Gm6T>UQzW^CwR}f94|Y{?5G{w;$?q zH&Xw4tZKP>wPh9E`WLHk>m~g$Lv~(15*}E)nCX_xu4+<6peoV$$3jd;Y78kOqM9PI zji4%Em&KPziNPC5hoP*Ex(uv`GZ1NcEo#ub+Hv!IvqIAc<)yS|TZU?*HqPumwf~8# z!fdUt!rS-h1xxNN3kvef$u9KrTr@5!J~1?cS7an+g?h$V_{^+0zcKQW3cte4C%SV6 z4blz@tIx}rZB~pl^95sk{pL+wRWvd;D!e+%{_2DpOT-I`ff?Dh(n2Wbq2`pV+=wug z9p}w!y(4nO`IY9W7oks{gB?Wd6_hQ$&k060RB`^WQtXR`iK;#;(anIjq zE*t-_;M~%DuB>_dXRX33e1!1Ib1eGFX6Mf8-R*gK?Ypa6-&mC2zN_l~UAz9eZ=d{Z zOWB#`tv5X$9$VI2HOqJJV~_3Cy}^baU(Zy7^4oVmwYxq4{xgfljgD^{)C$)xH|+g97fsw43qCsijnhcOxVT6{IEfETOcFUB9Q zPI3;Tu|V^kJ6@jn#bLn|(Q=R>P#`c}!T>~ACA`7(*B3p%rL55|_}d#xLn2!v-BI+t zjivVM*MR`)hzzmYbu~>Q$B~%`HQz-r39`dRd3fTwFa&y= zFFcDHT;7WV9_&{k`sUoaoM!&8kiyxe)@-{!L82@6#F>g zu0-@5y7DbH2v8UxCyiBs`1L^?q8IzL7F1Ef2K3?m`i}Go**mFtxR#IiUf=t1X?O3L z-tJPzJIE?hn3~FUORs`=q}7Vt^Xx0i}pO`H>??@2seklJLXf;|$6 zgf%=oi3B9)KZQQ~HxURVPr8xR!E)H&P9ZLu-6v?J9PU3~Ubnlv-k&WG$b~!0yH0`E zcu2+dvitfKcek>PbZxz^qPY9+eqBZlm_Kg6uAJUm#c=oa_A3Q9x?dYo3(DTb`EP48 zvhTqyOrwp^_(1C*@A9?a1GLO*N zWLqdPy`yLpra5a~>aJR-X$t_~{KBeAHieSD$`jf&kNU-li z3$<;2mAr4Iro(UHk*e+&*9b!I#;T@DFdu@aT=b9Q#>iUHN=o?1#VAA|-9=ty`5nu5 z;#%e|I|I4PY?0dAzSQpNS?c|uux2S+bYmO)PS(13@wJW)Pt~xcIi7mYGSwVm)l&9= zq7C2}(w(ICBEA$o?)ja3DSb(hD6*ex0Qm_}=b>yg!s(Fdc>jtE%a&bWO4{bEUM)|e z?8nczzEg_t+~{3;fepB@bm;}*+J&W^BFFq~W&T2mzgXITDhijvK5_PPSHatls}%7J zpCHe}m&$kl^%vM(|9TS`8TlI0J)=QN z(gho){Bz~E>*tp;#%8hRho-lwHsJHEOD9ei^&zPZY0W2Lb?+iG2eE-}UpP5PqLn%u zK_b^=l~&mJS7|GRgNn}WAeq+I*v4iwwlxaVTIES)S&kgrn6fPX726mP>VnlvqG1t1m;ozZ4ia3KuLOE4ptxTg^MQ#`e@X6Yxw z^$W{tDr=X`&H4jFh)c)pdEi=s5hiGQ{ws4=((PS2`?V3ZbA`8rmxY_NZF8%CWIoqi z^7yNH|WgNAcX-f_n zc%#Ya9H@k%gLH2o&xZyhd7)*B6E!0eNBbM&fYHeR-1&mu=x+!y`lRShSy?7S)s`wg zaciK_%gevKN^cDDPt==C`kdLv)BQ)-^)-4QSxug?@{0{2X29vpH7vhsZi?BzW_9gS zlg;1YqYp7;m1ikBt9zaIM?so^3VtKDO3 z?XnAWOW0?HGiI!tF@pl^JMloW#w##vou#2i5v^y>BEo*@g_UQ|&R92d=DHc~It@kN zE*1SHVIt~U8R!Agh9!AV6YeC{$#!%#Qeg+2T4t0 zZ|CBqyqwo2HOy@gK8Yx6S?aS#KDs?dIQ?jXysmBVxn;DbD z9bP)WJhFKYDnjdocGN=+UN8yCZp11F#hKA7fFpv@Uzu(Ot_U7Vxfx0Y)(u$t8O>v4 z*<)5Xm9~9!KzmWN)Gy)gF1t7Dgz*w~DiLQmU6F@IaJ zf_t#-_cOjIu?fyW;mzw`L)j$TYEXV6W+jRlLc|c}Gg?l;b0jSVhQJF#lbcP4jYx_H z5(X#3wgYM&S?bk3QO)n^km5@cRQ_>v%l12vZz%7rkXz$&!FJvFlnCvswTH-Qromd>4tB!2E&bM=E_xKC=h*h+n`Zi|sxa*R97I!VfcBmKZZYU?L*m z7)VRufw=E}3|xH}gOGX%B|+948!QEw|L{Z?rv3p^4q}=GPa!jIStDEDvuVvko6?62 zu{H86KRTu&B_t+A#aqs;ls&d=(?hb{A+{}(*Q5-y4T(-ysnVSX80X}d4fu5Tb05f* z7ufg@T9*kwtmM?r=7)UMfgz(}WS03~JSH1(e8YW5hoo4P+@?{(EQNf8pDH?g3NW*r zAoP>1D)b>OBGR!i5c`nA7zuVr8>($a%oQ#{4*nT_J8E^NyOTrNSo1`+KYEg!g*` zR!rXeop|pbz&-Fq6i^V@$vv>}O5)TUVICm+-AwRG|32`TiTHZZ8-b^X$`Ju`6mj&) zyyN)%72ALhDR^+th}S0yFC?$1saY{O(y6aSt(dBv0|D-!wQQ5jA}#;CzX&Jmf;XEQ^mbOa4IvyO~W{rakl z$=efIn54P^yiBHMq-Tbx$guRSHvLgm*%9Xlrc|Lct;iTs2`p8r&Qxb)&lnwYX;Jts zDe&AyF2RU6s?t=GE)__vN~{L(ojR5)5pFm`TWKC~`8rf&=Z2R9BNcP0Rbz~WmxWwD zvUisVe-h>je_F!V3YraXZ%}Ud$MwR~!k?JowBp3|!iEhS8brIOgvU{du{sdaVs8=W zAFGC^^O|AojZ}iK3N{N$EFBQ&kM^#TwN89t`XeP5xYXndH%ws5up8vQd9=( zO@9}@k!`BF(OGq>YVNLi>>Ss++L^z{Ki?F>25oVi4hgPQL}eMdS!d6RbE0IM6|)$K z^MN=W65|a_Id-uL$rc688Y7M*afDSwgksS|(UV1Klr~t}Bd2+0US6idNLz}cy9xl? zRq~R%b~?5j=XK6AZkJx9IcW;|UOf69vH1XRg>{HFn)d+?#2gJ%6>@Fcc+x-c&%B-% z{=A*#F=OMO<_dp%n!VAP(78KlPlC`jJEKV+zu?V9LTBek30zow+@BYKyQ|SAoSK{4 z_+$KPzCd07cw)$ZAa8bqL3jXIxEBqnf#+^Kh^cdrioOh;uqRf z2piZ`#cz<{ft>=jRz7mU>n%%WWw+VR{@~uR<4`t?KMhQ^koLOA&Z=k_L%UoCv}tH~VDN5A*1pS>jTWZxjJ8DwdeV}_R z>VdV3%MVFNhzRfi4)Yj=nFZ#B{#LiXkc4!%`s9DBT4d^#r^C$^s5BDMNOZsbZIXG* zLCEWM5%KZElaqgE5MSD=4=*ct;Jowv0|mX)EAuMKg)438-P5O!h${?f(XXwV zw`Xfur{uSc*j?+6%hndY` ze1<;m?98fzRrQ#L%gg7Lm-7is;~dB|-_yt3QQA7U7{>5ZSMA4iBSnZ=}}Nud>9{%sH{F9 zD5R9*GIwr?Gp%26FOWMO&M@wa$df|kNvikF&v7rGL<{;*y^$pvCIu*Bq-W&{&+!+8 z-#8ZT<2LOR{N+#54;^nfn}1}FNb4Ecay{NcyT6LxOK~9{6d6SV%)Nk`%m3&ISzN!I zZ=Ain-dVn0_Nq|Ajyv}*uU|HE=CbRcCqBmtofOHPTnJY|E}}9 zKL&Qm2PxMGCt($DY@~wD39C=AvrqmpKAw$Pyx8Dr^s1kWG{3JQ5$uGN-xzRAHcs}u54c5;UTjKSW)h0(k6 zudwP9^>gReKNrZYS+-0#7Wd_e;AnH$iQt$rqFpG9YaJ9FJqQ8N=u@t?y0hJtsHOQQ z?S80Jcx%m}+nW9T(WBpAhST(GcL}Q?-bGit!xJg#k-yaRWwyMEstvz->X#b-9)n-d zsQ2&E`cnB)`|IIFL97m`;CE?zk+WIN{=*IUp14#G;K=lXdvt0(bu-hGf?V{;j}{Dd^AZz+Sl`U_X#_X4Ozo)oNH&Ru#I zwevZ&^NY|KV#ORjMx|Sn+O$fRN-2E6lr1U|cNeL$cR5jlekct5fSt8ioR6-6U@c+8 zrpJW}p9ROn1W$x0HFqZDB|pah^?4ot;Id`T*Ycjqc-F>h_Ts&+6fim{TS5$7+BkE*R{hw&pc9RdO@W9nBN6?``BFhb(EpEGGLX zZ*E$i<0j*d=JDB~&d)|~UsgXC=c8+NpHD|^+y9KB@Zy2A#+Z^LqfN%`C!d%%?AnL# z7LQp!93=<}_R&fqJ@bx|s=by8j^g^~M%T|hBE;_D>_+Jtq<&Ai8N|Dp>Y9LYM{gSd zH2bCr>9>g==WCq3Zw`>wjB4ncWCN#2Wh@jy)WSq%gTgZrnr4M%G~LX$(E@R;kKho# z;hwG*<}?Z0*9vu2?147BZ0r`1Hfc4W3TeVc$Nnm|S!iV2ReZBF+Dr*o7qVmlXcuk(XXpLV?YHb@${S*JVr zwT=ZHuJd^yb`LpeyeP*h)5x%D%7}uN6iw-}Bb8WyWi##v;h8t~WG!V);Ku(vz<;iT0ov9<+WD`IeEPd-eQe_2{zv zscg79QW!L$q;1ZG`tJ16Lo%m#cTZ0rHEI^H6+!ns7Wcxq-wq$$ymM#sut}3TCQRVI z8#+|3(^&(C56yhOWN1pbo-=gUm*wk+D7xS3ZW%QTzZ@m3-`QN2`@*;v;&xuz**2kl z0-n-1Ung=}48ZCPgAi4dJl#k_1IvajLo^!!#)EJkabbq5W9Mf)_~0pUi3tsXX}bd> zj6z*hMBu)KtD|DaF8;$3?uP7NYfsTP96_@J1H+te4azA9ek*owf=!h@Cwl>!PLx-_ zLLa||K29E+2&l#cY*NN@WTG^S-dx{y;fX0NGIriEfen_G58ou4Q6eYGQ7 zfZY+#a{}ji2OdZCZ=A>GpOG$_A7U8@T`^jaN%DxW?7<7ehELg3%N}xS-scxhFquy9 zmn_bcK{Zd*PF(0Co=56uv?}qSflJ+=V#;^3Z@JtX$-7yx@ElwyzZLv;?`E)y+}1aV zr#lLL6Tg9Mv1AZ1*0pncFV$(H+qg#O=C&dhM@ggF@yf2y5{$BE6&+*u$&=a$`k6ZN z$94+ovJ_oK?kx=&kJuGUQM;hI?z(QNzFwltfyjY~iy*hL5?&e%06>`7eJ7mf5gK;> z#E)0qdu%K`$-O_y-usbW`(3wm9#Huam?zz;i_n2;iyX#AEB^@?H+rw$NWMz1?CoBh z^*!f#3axhSksX7L!F?DkTIPw@W-v(><}!x@=`Hbd+gU{49+v*_8o+jMjnL6Bpq?iO zxtGrMPeCRkgvg+84~=B=BSYKuhHM-WCQ}1ZydrQ!j<4I>ueP;a@92=(&`{mhBD+33 zTn`R++7?;aeU>8OOnYxpeG#7RMAVLo(fFN-b*vG+Mh8Dn4B3JFMNXWOU2z8w#&sDEuUK(7JQELjK)kE7&kQc&|5SZGWBdOv z)kg?njsK_WGl3=k&+8NYzt*3Hp6~Bko&QdMhKljOR-bSl3_Kj)w6)127N!^+Gon+H!udUhl!e0Pue#z6Kwy4# zbVW`F)qGFj-kTid{f;L_=- zZN&0{BbA)Y{Y??{tFWSPe)qdNVc)B@ z)E1aq`{t^6WVjj%W~scpw+DIt11P;2a#K(Y9%;k`f0f^5gb}#!wpr}C>D`$bVQP({ zLzOu?a>Vqawr=j`oz3UCj2n69wAMWX(WhYn`pB_EMn_H`F(PF~_g#8i=EDAQMP_)i zQ-Oyi9A*j7CgZ_K2J3>vmqeL0T;yD^>PnCV>M4|MEq%~@6bMN{>f z9HDWEzSp;aJ6_<|t6whcfp-qn2*RpfyW4iRr;SgVrnR5w)vwA^YjRfU)oZdFrt#yOv)8O4^`)Vx zH@mZ{si~^7M&GL`T(YD@MF2#szi&D*HrHV#taEd>-fhX?5B&tI4asW(aJGn#7x`V0 zmx&KuxIgjriErjtEZo0;;qcnp6_Y1#bF5*5LI(@$$=#g2l>K{YwzW8MEcfpIg<}g& zRllCN|L^;kPF^_~PuAfaF(R|r$}h4OFU6zSDsaVC(iw057IphQG-U(snOWJFuNC^9 zhy)ScC-4K379Ajaclske(>HIP-t)-xM}!&9ZwHSVGnhL$cuYY7VgUBBrs+LB;%D^n z7h{LW{xM|i*dfl`P_Eb!w_9opE78{|faIaSWvGQc!|eF_&{# z)Np@dU37^L(Yh$hb(;SlZSMjXMY;cv^UTb$Ac`!@vVtI&Wm!OO%K{q+f*^7+Zi*s! zLlN;x5}phWsA)=p*EB6LwX!rzQ@diBbvm6odZbg?{a036o^PizyLic+$N&2?v)t59 z=lgs8e+#>_J3BkiXJ(#xp3mj|d4EzTtQS6(E$b(w3Lm4Oy?p!9hn5DR%o@8dJlO^$ zUd1TQ*Avn|x$o-Y`#wpZFd=mXlAjR@7w5#u&kRfTJg5mCd)D#S zgq)lN&HRGR&)#2m~QSoqqA35|-fQ_8Z@7q1pgxBCBkXHb|dNrhT5*Ht$W5HYVdA1}RS zqL+4zc0i#h77oyk5q%~Gh79y+^AZR7hE)!7Ef5Frr){~pwPVHz$K+CbNvrU*T-sV< z7oJA>2;mVi*kpJ0S~5TkGY+cs@~Rx*YZ3=7892bM_fo$w>HDn@96ft9{>6DEsarQIg*yUvAb6&=Myf;ywpP3Y%ED;~buq}1K3&DWcfV5kn_b#L&6(;T}zYnF7kU(GyLphFq+%HTHezf#z&W( zus8p$jE~7U?%#2#=*g?#swMP+8dau}@Z|jmP70t#F|evNY-irXw~VT4ZLLZwECf5= z#+rNW){1S6vFxe75Ze3YnYq@q>{Xx~Y(ko-`@5>0j12uOA3WgR>h1$)>*k4k>Sk(iuB;QPE zW~>-hSg@j~>i(f&Wq00Lwyj6@7wXoW8cK)c<#n?|NE$h1Na2dY#giNNHu@_EP;$3& z0IiaGX!fLF_1fNnd))_7U#i;ywso_~ZqkNWOhyyRrZDgm(Pvas0c)bumhXNeRi7AK z?a6CAs|TN`V}8O;&>kIp#^XzmXX;ahovH7E|IFy^%{S9>@Zcr;@DM&`uk-Y;%F4c? z>UR8t^od{)PIpI@H2kZ5jU7ZT$%l9!hw+C-A7s;zzfbFGK}1K1X3_~GP8z5}iK<5s zUjZjUe+D=<)tJ7<$3R3i_`~n;r+V)2Gi7JsWsu%6N2L`M*Z=w6aWn2dx-vA#o>p6m zf>QpW2^odc<}P16YuxA?%j1)?P$Abi5Wd^O8w#~x&MkN?D58in3$>K44CTn-&wv+|Ob^V#^tISLG20#+n3!hDOq-e#t{d1m&_APm z3szbK6H~CVDmhZ;-t6h0S>92UwW9R-cPlq7EL}Eccuv_PHEl&%t4g2IoGjmhRoSu1 zDy0t#9_Ta6Fhe@A2i*vKRci`Sl1Qk8VM8;siA&*FQnD_Z)&8#@%Rq&(-iE`&&5GF! zxt17P06c)x4Yq)pa=1gml%^zM5M7+oOrnzVf&iOA&-cN+WVuf)}#b71bs0L=Qs493X138HBL&qXajm?4q zp;JDw3#-0az51I~(bnfOKgmABA}b%_Z?Rh*s$|xyaadnHd(2^Lw6YEJIFtRS_NVY( z`Z>G)-ui6U^2`rYv*q%KnjR`=)+0x<>$8nxs>JO2U+8T%$Oy9QT@*dCO#0Y089EAi zp2?C@fvRv4l7AnbU<(Q*89}eCWm;d%rvlqp&Cd{OLf$h)1#gt@*jL6d=)=eiiNU&yS zPaiWTcG;=sqA~KCoYLkGczrX%1WnD3ox*UGU{njPivzN&a&oG&h3w`JT4o-~$~rW& z<%8y{(P?RvUy_D=s`RwR#!$+f3Wa<$*B!?-eH94E2#PzZSRU9yh;$mDR{?P7)VqIg z7Q9Vd6q`BWj;TDK=d#^liB>)|E;Cc~t=$m5ukgu{Ikg)%)~1w{++I>5y*etEUmQO; zUHExL`bCnZ`pl>T{}mWUC|)qWAaY zfOdj-C+>MWZg`3^^{7SR?t(b+Msaux%Kz++dU{^aps6ElnX!%ykUNfj9mkH)v54t6 zN`xq$nLDQ3E~bn(TG@cuQKMqz1#y{H;axf+$SUCZAkOCnXvdUOp~rB89CZvv__Lzm zGG#0oVbFsu+MS6ho4qM}Aj_Cp85=xv?i@#FIkWJO@xmuam8l`NiTuaq&Pj&k+MiVrn}vGpA5Vvlo$gQ;h~dP1xMCe{aC#}pOS?A*K5L#cvnT)tF3N98@x zfaZ<9Y%0HP6-(HPtFa~23`AFChyTh|ujt)~l$x0<`C$@_W`-b8f>DpuE+kbW0@9V5 zD!(uO;1?#z3-}|Or7(lrV=Pq;6NY=ldA!Vz2co2>_^US9Lw-@*8tl!x*2;n6AwNIm zdOeN4@~NU{Vjlb5o^1@Fh$uyz`hpj2H|^9>x3L#uGp%>!%zSia3eTl3ErwE0ezH)x zw{9!By}0=H5+UNY%(!>rlCjmia`hH;9=A)cObAB)o=p9G1GW%VLU;vka-WqrHn8@A zp{gvbK$S23W8>XZMwy~`5NP5?{1WdH7mbE{EFN`0;ljEV|WUiiOP|IPG|WJ# z3x)^q+T+2h*tD!NXTHBVGIPHF{DHB-;r2#=@?r<#Q)Z;ue|}EovZlnU=IpXfaj}~Y zl^e?vxlcK&4~rGSiMnzS8J8K$HL;ZsO$iRJTvn9snU#v-!-Uu3_xfT)=kdb9x%01x&<$mL^`^S0>JM?2z_djnn)n zH_CUeXII#j-#&Td5%rp~QXFeJ;>~oVVzN>6WYqh>hZBwzdJ8_1c1%kQz6K3J`|a!- zd*>0mXfn1NO~St-gN8I#*0}~5_}7LY*SgBaAwiLBtvQ&*1e=7H*|hX@{>YHPzz)NR`bt;hX2$=*ny^>hJ)X&dhd+1 zZ`z0Nqv#{WC>N)sY)(n()8D<6oP6T&>Tw2OY*BkVV)LLnB_$q0s#IO@3jF-_{;61S zM?{|g(7cHJnR&4r<6<|)=FL>8xth)%nCi@E=MS0!15MRArRAwBqN7)&mY3#K_n8m9 zpam*gbstZJ79FxD$x=(Yp+bg-c^V!y^%lF{P0_TPG;5V#Sfhv&8%N^gN8}Cl&%54z z(J%G#`~I?#wBV-v(j{H`KvM`wy)hb8;d&9q*cG=lY06}(fL4Yq8k{CyPr+g!YHMXR zZX$5&sdkOUM!!%rjAS~8sttsW1~+zcI0Ge(pqyBHvKWc@0N*|&J@M@i^H&7e(lhhZ z#~d72pK6(5eR!H{@xs{2#o6|toay5x-CCEHme@3}ZbxQ*_KYw~=Y@qR;g zTcfNQiGzonjU6<2hP74{^D|$*_4)Np`I&PX&(51Qb4G~yUR%YCNwZS36NeQidWY!! z=FOSh$X~J-XE!H?L@dl+Ztzq3lFF?jQU*A~tts|Qi8>P)^?h1|xfg4mtTynpP885> z5@*QoS3g;kna0km_o)+C@xUU}Wo)+56CbI8goO?8Z> z>OrJU$#?(q=r4-StH#bq=OwK5@6N)gq{~E2ALWOtB4a{G0Lyv&jbI-6v-d@$JDd`x zjj=fn#v_=*ii77qKR+#{Lld&IzGM_Zcy^rGxrC5EEtBO{{6{vA|M(znDVErB3ySAH zKUeo4j+^vyRYo^>jp#ze_>4)D zmQR|@!T>oMU0A<;=b0U+}Iyc{CLN~m;#b7P~`83C1Mlg!Pc%$3AZmUl()RU z?tOhD|7Uz|L5x@uUywG^0nb?P9BYM5V}e|vP@5DFByJH`498x$EsU{DPc=2{MyS3* zle>GPI@ma77F9jAed7x+Y~21>(HncGe*LWdjW;tozt+S|Iq>z*7;qv@MRBQ#msrBZ z#MIcarQGqc_x2AO8$a0Y4NVb!0`o^JVi%s!|0yFS5Slp2Ai{SAO1=^EMexS|+uWIhKkm%C4^LGjT(w>N{_{3wCANrdeB>Sn7C4tiFnA@y2-@ zeYj7pKo#W++krUwdlDLzBs_Fl@~KmiiLLza0Cw((OGmZ8Y17ihj`V3ARNFwh&oNuv z#=Ew%AL6E^|MmcVshN}h+hmQJXQ+-7#4(frk0Sb{0ti>FGrC_@qP|e*bqe?q2tN=E z4#Qm8lPab|aTgt1-|z_e@mW~bla(r!UvRL;&IOrM`SD72f8ITFQ)-@k^U3P!C(U13 zpV!1b+7OtZD8HYSmzufyOXm6ID$V?jO;a-h12d*xvCp|@EC$D#C*OKG)tnJ8Yy~6Tf>+JyAk)b1TcJP})@eU!u|`dX&bjp%DZp-fq^I zp(`46G_C2(IwJ-+;SBpheuQ7+&kL@DK>{+F)w6u}!MgN}b#wUo%OV@!+`OT3xuEkD zA2GV#v0{bJQ-0Vuot;=Fo60@?;a^t9FZG&q-xZj9sa55YP@_s1eh|}{nO&zfYjt+% zzyN+9lD(Gs>%9iBI@ZDN^4H73%)tN6pX%xok9KuwVx_ek@7DTVz3AnmzLN%c`8-+W zI9nxroa^|kBso_!6{7h*=Xn@(H5cY=7{$Fb(1CEJH9FFf$&WFdX#h{aT!otvS{(Rh z9y96&y9%s;v4P@cR-f2BCL>)p*qy)7+1c5QTA8s+T#b%to;q<^a%lm^ku!z$R^~j>p_P->GWpcB5=0Se{2;Hsx=s*vh4=ZQ$ zS+?6iebTzZm>A*5owpa$G&6kX86ZVznwi8-FO%babhjk?HH$tT;%2>jeRH$UL;is`w)B_$ZP_+jcms0Ne4zF*36=rz8mN6O4Du&}EJh28t%PJVIY4Y? zeTW$eNutix%S>@TdJ;3$QMopj-6}T5%_!c%# zaACE=8&7VK+uA>j&dJ$^paumtP$76vU46YgQn+ISf9xRcmj~D!c8$&F_f!A7h8PEG zxaf$*A5Kx^aS7hOQdlwwZOAue(IWrXZqxwddNqz6yZ2c7)b|nF^*xpzXL)f6JI4Qf z_RPpPnKWlElit+)Z7V+%_Ywb=e|s!_+9~G0X32{YtoUmAs#VNozu~8!3^2sdrW5xf zl6|GaC=Dlyj!Ad(We%CmI_nV{NAUj_HI^fzdJdScFC z*Xda_K#M)=oF&ARa5(~w$c^8@ulWWB`Z7kZ{2F819JAmQjb^iJ*>*%1YQ*g|X~JcE z2jd&tb@>KzE1N4MrbWtIho{Y{shLwN%;lU3k$`wA<40e4s89B^u0nYJKq8!Ald6CG zce3%6c-!`6@ylD{m;aYy@&~tVo4jS(v@HO?kS|(|7pncxA0sVLsSIEifLxNu0f^z; zVAld;1a$E*L8HVmblK_{Zy{&W9VmJ zqsKYpI0_jU=>&*3Bg+GE9LF|sHa)M#-G_(Ryk0)GPFUmk1|M)pir!+!y)_;^)rHhN z19~Q&79wmQCIm6)v1+!6=R7Es$usYIteS6N$L^P(5_V|D=bk&jw;$l|V##J5aDfcn z{$$GkFe5e^11~+i;LzD9oeWS1An9>p2t^O2|GKrnYnzBeSw~(nEEP@dGHDP4v#&gq zJ++kHDxWW3zRZ3g(0I@Dp1j11#AgC5^pxzMw`Wfk8XwTa8^OiU$i8d(|3gNS z?f*hXl-wop6p5y0Ufh*2h41N=y7{6wtw%_l$AK90_TjpG;k>flGk>o>OiafZE>L=x z&YSc3NACsi{et(^&ki4Ev-a<2(+?k((|`ZH@cQAyn$uVQ!IJrL*Th2y=y6zibT1Cz zsw-pVwY88{hAlz1E+q_*WJw5eKtB>hSr)_-v_L{NHj^E1bAj=<1?jixZ@=BwHXV%d z9USC0==goCU+SGbWHKNZ`n>hzN&KG_Lgdrex%<1?PM&Pzp=~51*?^5`T!-@+09zsx zazZu=&?~GCfYB-7B&ZJBaHx&;1j!qo9$FhKC=>%&pOokwrtd~liR`{p z+|I+baG{8F9ej zeA77ozm!+(BdK1e(VBICAn)m3DbFz9SpL!<$jUeM6;kx!FF#)N25aaeE8&0wz-kns z_z6&B!dH;ARK9AP&|@I1Wl;lJ+P`{NMLnp3Nq z?paX2?(6bWpC+BI#j~t@2{YHNKC+SB!~f@#rjIpogTb-)7=QmS-Yq^C_OAM6m#(Qr zS5~p4t9<@F2*<3dE8n=e%)803&eO1HUGn zb!}I$k#R}}KDkvw!@Vecpfezx4GC&~V{T zZqkFFeDa{=CN)?3Ns`|K{K&QDgyY+5Z*%uzv)#Rx-o0WDJ0A$<{H_WAX?$ zw@;Y$12@Oe4<@g1^K%{J=Qc9=@B9RQIWkfw-Qrm4H*ny5K$k}?w+0S^?msx8prE<{ zq$3zB*aqMue#6|AqTq5}^lF3#L}ye0jod;>A;416(gr{YG5`r`ss?fpIUs*J)DVl) zC((nj`AR>)KFG^XX@KH$@(g>>5MgKikRZFV#_l!9K0xpIxxU_BFLWA%gX2O&*#XbN zgFXF2hwK>=yeMVSkl>V*;34)!!T22NuY9%Fjz=JE8yAfGjrLjA3W>&{h`~A-Zt)mhKxloFB*S;%J{rj7p(tv&6;1O_t*cl z{;d1=^)J<>E#5jFi;UC>dE?gq#D@K}9&M3daTvzc1-Q<78oPDyp5b~DR2ktDA)PT- zTvr-Mb!Lsl+`N%*-*-=2(bZkT#QHav2y5rCXX`4)@^SowDQva$a5MjGFMsRP$mnJ5 zMN;+Er-C~9s^{f~8nKhF|7T~#x-Bg3*sAFVs9h)K(nH~~RpP4Nl9BkosTe)+H_+vv zP)2tOGSUlssj?qt{`(Iw|A*zR1xteCZ6>}7uYpVQBhyc&YhHwzTyum!_Df96FKqG= z1kP%6Yi*_r!HIU$g+LoVl*LEY)<(rEwsH6IBY#h2@PcPVNYXJ4jvK+2s-o8RecSm) zVYm=g=XgbWxajIbMeWO?BR^%g>}4jFdxZ{7%%OfK1ft(9bb7sjzqqmA{qK62G?n_= z&3cw#AK>LRATZdtm$ukz3=UL2tKA8G2|WszwvX)}uEc04ECz^qh}MKyA8rTC@dOY- zLBtRWW-75V6e11jM*T{gE5}AQ1hjx&FpFaaFlc`8(U}3UQi^z59aduMUcl6Pe1gxdRVMF_$*Dp z4iM_L05ORvE;TN7F1Nb?reyA(rA`0E8@qxC!!SelbNBW)zUkTLjbD+nYze^}fze`n-Udu8FAJWi{;lqe6m=6>9=wZ1#Iy}AoEhUVpjEg7E4QuMXq;#j!}QkV$|)v zCGUKJ<3s%`%UhSfvWqtT{r{8Uso^*M@4E3vZEe|i9Wkz5Ydk{Nopkv}VOyM2@KfOm z-h2c&nQqX{dXVKeMCf|55PH&jHAd|c#gYFF5XrU+cw3#9C!FXXvy&qcs5`!HU9BxI z4=EJFo|F{nn_QdYF#Sd>vgJ1AVs&-ylItRPp6lLRhyOcsXXoPI6Y)G6n^d31VDyym z8)c{DRM8|N%~Jn6=o0w{!JAKbWpz{8k#aVvsi{i&pMlg5@K*N5Lb}@IGS<E#?Kpnc`Pv_osILJiY4Y&eT&)s+-># zT5MGCaLj|kdhD(rcN$NBY1sMWGVwa1?0%8FzIv}a;&xQM9R7U`_>MFpGxuDfo*vCY z;KM~Jflqk@6Na#*Y}pXd6*lk{fsv7^5fN-=U_?Y}WF%-Y8jQ0WXKQqP&m8_&UbA&8 zT#RXRw$MiSUU}u;+Q*EczC=2UYR_vhOHiy~7_39eU&r}ZtSQhD5D|g$-lj3wEy&z8 zCuxmIAxUj*Krz*bM|q8426rSr2~WwN;$%CZ_4B=AN6ejdD3HErUn zZT$R6(*IF3hh9kz>JML`Pw&N<2vzz6jvG@q#xMw?xC@gRR>7^>6aOLpOyJL>GTxW- z*jMu5n2ZcDfQ>Q^8)oFkFh}3|zO*MJX2AlvWkE)aurelt9}6+c-_rL2&}a*I8&mSU z(YBN4O10G$>w`=r`Xg5o)mWgVRMkdD(glg(gJPd!K6na}<9;L|>5sM&C5Jf7AB&DNy(Tm zWMu*VMpoD@DqTC$_tY^i20cW*+~j4!^&x10v&$%Jl$RuRHGPLF9w(VCF^|l9B#h&I z_h)N99QW(MY>D;A!oSj#Z_Si9XMz(#d7Edw(sad|htI06ydHh@Do}I7Fc$;IfqEa5 zAs7f>6h>BR6^&6UJw*iYswOSr%u)9ur_aUaggkcp($w6N4;p|YM?eCQ--5`1at`=R=^br^n!%yP!4q`@v=e9{!B9LA zA`|9}4wfD4w~U&MuU=;%udv@_2ROAdep|yclQJ@rZo6&s(W9H$tD40bea3AsjF$^= zL_H`FcmnhkRuY`!cetn^9}L6+gFhws;{({Uf};m#E7qX~p(PYaKsI_u(2;N=Z8hk$ zu2`#c#om-{w647<5*qQ}DyyvA`@#1g>{S=u5&i~Ly!7z)2@Fp(57wDHJrkSLt(9VF zmOV1qzcg`(n<(mHqqEavP5!!Ie_ddZDbd@_-QUy4(`YCiQzX362Z915iu`ri2S0qU zx1wUNx)9dICPoeq^!I@#I6NF>r1_Vjnz0cEVM>lUJJuduE_!qx3QV^T4hC{+pzFX` zBR}b5GiBS1d!7N5A zbb)dSDMuIhdErN%;~WRO_emA%ZnjS+HiB-*8~3d^g1T-p!EQ`so_p>iurn=c%4 zjh64K3tzUpUQqiq$@3t_^b5GFEbyaJwU^P5M~Nk&o1yS6RB^Iy5P{PZ^*F(idNeKg z;1qnediz<_dywumx;KS6vo{8BAD%t1&Ql$MJnIH#58ocVu?BY_rFT}a>Br$LJ za14p`kS=Vj8DqCc@SHJjH`Ri~U&!Wl!|0qz4~!$5?5hXu=Vph=g;r__{ePT#g!T#EIb3l?y7V?O}g8gZ8g$7gvz}fV;k%6{6A8Xxv+Pm3?vbWmY8I&fs7peI^>VP%*TF zAj(8yCR9e(xoXW8L%4$8bC$&+Y!wD4gE<`06Jrvrb0PZ3#Y;!B?80Lg>y9Jq(=_UODwg9^YrCAFJ4?xWt1iY!Tn=&n&wKUSbeb0A6ucAO=Qa8x~v2r&(3#d zc3!!7L@Y~Fu5%$|iGwVIpJ!p<;c{tcie&6($9SOq2>ES;?%u! z{jgQS-8tcQ&$$_KdQSyg0|cduDw6?sQ8*%T$QfWsgi#xY2x2TjI;nDNlCg&|NlZp! zo<(cZm_!>8Do-N2*s>{i+-rbhr=aFJ@Tm0PY@8uuE5<*aDa7j|u!SBC4$j{yJ zQXNFE=YPw}VV4hvWIW(Y0^OBkN%5Hbf zZ?tC-1CCHqCLXzXrE_M|&LgJmokqH-_vA&U4Xk^nTI{^Sebnp>fg$4Pb>)iEztyow zxv$ha0%$hk!~v!p1=msH`1?yNxf8uapr{Nx&vm>MzBLrOQST2`zf|u_#8H)=O?r0{ zwD~eYsf@`(S-B7@f9{8mPw^W0b4&|+yO@tMK4V^SQDd0yN~8*id^C?2ivhVGAxHp8 z68P|3Ns;gE8FzF?Lr@r<8E?bjc9@1X_8Q`3Z|~t5U$MXJL4h8Ogw!&IBCI=ubvS^2W1bmw zw#x9sywTo59)h-?nS$Y`4kOmf>(eKgdPU7j$s{ID=X$PM7++JKoe_1G= zjRPh-jpp<|7N?EQrSgQGp`rI!_LYc$ncY&Mm_i4Cf_a@}KFUJ8(#D@^6Cdj9oVeO4 zzU&w+HY!JSzN-sXGY;+Fs@{XKrw4OKs4}w4d(}0?0_^b;L_#Xoo#fRAM<)-Ry>WrA}0PMLsX+G^c9|ersWF{IX_cK`r8zH2*n&FXH#qi=a&~We}&Hdp*pZtVd_J3GQ&5(5q&7QB1+S6gs()$6aT_fsnRWr;G6xd8KM*64s7Q%zyu zOUhe$ClBo^muw};a!E?e#)&J}b&2y%mOGk6#PVSODD!gnJ{0sW@eY_ZK$fByB!JFp zw?k3o^71a!!pLnccdTR`*?jNpm=xh)a>;7BL^H7bq+?6hx|I`Of&;21SonB$46gcX zZNhVEj%x~JELE7&qg3uf1SO~+88u{ED4L-KA*&G>2)eHr;_YgF9?rA+rspd*GQw^y zW?4f6Mp$@dL;(Mb)jMGDKSipSSArsX>Vj{?a=hKn0@Tmq-$_sBpSf>vw+`iJB2ojG zSEBFjl8=2nZO30q9cQu73W8~cGYFM^r6NJGu<|q9WI!xnJ?VRzA%mu zAp&gzq4zAV78pksD(+6TJb)@UDv2k`rz#?T3VtH$O3t=JMV zvM!>sNpQVI!`}@E4fTr%7#;J=&=|cdMRi^wq`qjn4IO4GN4;^6)Xn$Ghn!+>%if=oS<7ig|b% zcLe#5N=O#NY@wb5J^jqW?YYaMCdHKNJY6kYJZ&B^o}xHnac*|nnA}P6w^nMhJx6#X z#QSfmnlm9ZSv1>1%aT3C%J^i|bQD8vp<=#YKt|Ybj}iX9ZtgL@?xA96f>{g-a1Dx& z5JXo`LfvBGecS^5J&c|sN9g>Gws@V<&ogs?vx=je-=flOj!ZRmk7Q|Z%un50vm++J9DZSH*8z_@}P~xkpC9SOvo24PK zuytZ;>crN<#D*K>!AM9Lc@fG5jLZIGA~7C00Z}H43YhPbPq&Tk!OW*-bK|8q3*LOI z@c5-7w9ihrw)Ssd)@}S@Jd`#3(;Wg)NKhot^4ZJ$8N> zIfVBqm^J_I(OAVY(KMhU#K=v{)R9>oPHS@=?c$#%^Go~rB{to4W9`^0{}@|aJJvOE zZ0(g3U`NbkFCam6JDTWYC#n3f%6Q+~f|6)zq_f#`8s&3*b`?uyBWCpXw>utW9W(eF zSWo*UJ4l`H32*0jbJ>C311h`U-Z6_J(czr3e?E)P?%xJYn_nnx@EWH0SxE=&ZpUzA zD@wL({}%YyRrKR3{zm_OJEl}&vZVF@wfsm0!~c!)e@P-Lt@Lk##DA2(!QW6?`lEAC zAWD1xy~_nvY=rXj>vrtGdZo$#T6RLY_usj4>g6zJ1H9(CCP-sB=WK=7P&9O90&imDz=Sn@4s{O9URsS=uNca|EllYWbeuW?Eal5=-jIZ*WFBi{hEa;m{~6u zIQ{wkfE-^XoGZKv_j5`4>|m6W-%lrJD$bUELv{cw5xEhas5t;2OddYC{$o<~73UQ}!vE2<3-vXvWA5M~ zHF&Vdvh}5n`v*^}AGc=WfQ_}I@5o~)7F?_9?#}ywDz&(%dYj7C;;YaZ0scrs28v}8 z&JQU?P6E@*!H72-&ayi(QXwh)+xl@AFWx$z$aGYu;Uj^;-d}^17<9w(sk*V3FOIFl zY3Or}hA8&&@3$xdltE)QxTY~{+buV1IDwZP&rR(sP%yN_2Msx*9Q z?EIUw?L6S)XkR_+eUCQ`Goj*6?{77kLbR?Xz2Z_-efx;nn-qMe$}r9EIcqRZJ#wV+ z$dM@~|0C*kRWJ0{-k{QTBKuYUM;i3mBE{z#4sR!Fp(vh8#0Y>Rq{=u+req6Vfa2G{ zXfwiuOF}qG@1w=icO^ZRvsJ54Cm&cnaNz0#$){KIKeJVZYhvU-u~q!fLVL`bE3Wbg z;SE_mjJxL*T z9P=O04=~%3%4^38$HvwIO$lbLQNotVJby9=FaDH*+S&ps?66~1-W za478j3J-Y(_=L`}5{7zjLYa^tcL}?)qUEZ%ETB5}X2l7+qORe570e|{^I1` zqRLz@dQqn*U7AJ$y-p*s4wM@rV{+-Vl>d zUbde-$tUpf;-p=>7Cij0^m;~&+!B)!Fm&SPNgDR&n2ZJdXEta7zsLsgwuiCBf`^s+ zP;J`-;|@9oz*O*`tDRj#J|gr^3bJ)8hoJ8GtFn6(0zOPFE}*6rQHro%G%x%~-S@+S zQEBQTyMw+aQH1j(0Ufgj&u%@V8~1yoRgTjM7nOREuQ zm*Ag2VF^4*ECwe7;no=d`G3XuaX)4wLIaIPZTZPAwJu9sT3lA*swpuN3Xc#z34;gO z7d}8N!7j8A+`(c;FSWRaTC_gCX1q-VXCIlPA^@|PHYwZ`YQZ%&f)|3h%2Ic zpxqLVBzZzQfx-{?+R!i|iD1J(3EO-Gi7=y{42CN5H`%JnyW->TstoX-*E-KXpznt_ zLt?b1+~5H*ObUtj*QXCkPu2U{(+8#c`p1X(b_K@_2+lQWW4NQ|+f+Ti@zZ0Q<3J4~ za5408Dw&GXsWY~ks4O**Trg-* zL2%UFF~Po;0Rj1m;e*%%7F$7}yTvyoW@SuZ;h;f2#p0sj!3WUWWv)y;9%gBbk<*H+ebERdw5$zdP#O_)T6tjQnQ5>d-zwo>3ezW zZZ?dLSE}QCOSUe~%v`*+giZ4IkJ-ID#vjIu8qe#NfyVHm@cknfrdtxAwCJih<*_MO z3K1ztM9~3@7N#Z`HHQf(?tx4bGP{zT63*HbHfuB6(JkhluuZc}TlwYEZ4Dz!A?fZ% zA!$i^!?suFJ-%n&t}l1>O1;OjxyrPeKjM_VYAfw%Qh(9a!x1v-_w1?PjpA;L=vZ(* z8FI=bszW}2{9Ho?5tTt<8M+G=EoKOd_T1`KfD13pVAC^}@)Lp&^DEv|x2Z@dV>9^< zcG>aM-o2uyT*U%PH?Rr($ql9ddB3Qnf#9YMX`I*ZnE$H?J1*|O<2rt}bOV2qP3YOL zbNm{pB7GE8B+e>?MUEuhBE){A+*husnj*rj0t$g5X=Tx&gGZ1TIFtQ-tIM@5ywen$ zml&Du$v3Uqlvf?JKTtYde6^+c(4ixE2#@dI_`_z-x9}CLz#}svA#b>eEiB{u#Js=* zCg<@v%a%X&;V?U&PIv3t52qK}zhm(%1;jI`RKB@srpLFMMqaOQJVT%!W01VKx*w-fYcNeIi%?rBK{azwx^6*wpG> z{qxZ2*v3LH?js_+sqnn2IuCU*nl<&LEnN5fz07nVmYibClgO3RU62sP2u;76q<%?} zTH4(AP#S+XRUPLF$3}K#l=Lr66=fNLazpWhBF!IR@+U@y223k%m@uvA7=LqvrfSY( zZO^ZLWO4mud|Zp4DgC$rb8RLf8#qriP>@fRDz8$^$u6DX|A*(EVb4c<4|Hs;sNfHr zW^*g1Xfo<}?rHXX%*2sJJh!5fR@YQisJedz_Gg8bOqFfH(#v2p(o>HooE{bph0#z8 z86U7-n3XqihY)e5qT%oMi4l%C>CY3t;cv?y)v(t;nz%y#=uIvQvm*G(@ls)OMI#@7 z7&06mUJ)dGc6DX>|NNUhRmgYln>dp_^&r#8rNPXWrQAO$kfBuJ(t!$QR#?w8?ykZd zc4ZO84i>S?RD*;fPP~z|vU|?3_K7@%ou2p!Jou;a&dT5BZ!-j#>6qf=PU#WtJBlw& z$<@~@H-TB>?C9WqHR*6PM9igUdlxTer`UT94V&elEcV_xZgG|3(|MtMOe{-xSj0o; z*vE^%`))C}oa1HeDSYCVDyy+?TBNBXH(rBWby^~a)6nM$uS~y`buUU| z5A9-Ql({aB?4 z;F2ivJlCC$aQZ2G!9hutxDL*FhsH)i5;;df17dqLBx4%v4p7-cgvXQtEE>Msofp-+ zzR6)4E8ZuLy2#fxqec#DFkO-+5gD@MpBQuc?4K|-%01IhU$-cu4@Ol&8_Hqc8R+Sv8VBn z-#vYr`F{B&`$pI$SBajg1zlfPSFc*or(t6I)!XTHZ+(3|I)Mnl;4W;bzqP53v?r*}!%eTZ)zcq9V%%|2TiU>tGWvw77YLLBd-T$YLfwkhE!2 z+UpI0_L#Z%8bX7O#WIlGlBf)!xOReO33>3 z%BNWgURYnAR9rm2xY%{nx^p)x`%+%lcVG(+k|I@4U0x zyDiD$hFgTL87xUp)cT^@ z^A>=STz!ms=?Pz7*B3Pwy`#kWMkxKxXXsF$@ASil$vbs!e#3R_S)DuoVo-F*pkJkJ zA$rFvzQe%RljS>1&KedqbZFEt-JmFw+aQ)W$burjI&oOEC%>xr6v)Rm6MdBO0D=^K z7$Hsxsi9$#Ua@T<1k7PI?T+F-dd0J$+*24*o++>5F4wBcm+;s4UsB8SPUMy6yn0Ny zO+^d6M`{_ed5Y#kZ@xHR+FD+fl~q;VR9Xt&&;0!Ie5+NyWF{(CGhYj|MsnS){KUnJ zEa}!d=e6$PO*ATqN77Q%Jhrh*nN>f72bSdg1#3keSo zfnOlIZyaeie`2;Ut?NQycx`Ps^1`TIBwD zIWqROwP9rHk*0({=O2kppJ0g>E&#f;Ej*Ba*DL(&E|OEcc8N*SC(^yRKZe56a)AO( zr-{PX2&hw!gPG;T1Avc5+QPGkgbp!>xv^KhL$9t34fSTPx`mms&dxt#nov*y>VrJI zyd3BKQ&RjzotKwKklyi=F?5mOD*uM|ICn_zxvoRsR{dciAhS+J2S#OR;(8M?TEU=$ zCxyUu$ur#^@q(m~ZX_VR6T`T{Y-axsn;XXd zZ8md5m?jpl<~j6&^>~AqzVoOS_z?r?ODuFSLntX62LpmfchQbrLdErkgGZQSHJ<>% zd*}%>AAj6rLQQ-2F8`F7@m@Z{PoD^#8+t+$Yk~sI!cLg@i^olKun|1f{4_sJ9}e*U zbHZdgLHA-$?qYWaTfh88Xh%L;%oj9Q;DYv~kM`tR!B=L)Gyr(SNXR8W(3{N2PFEH# zuYI_7d0{2{yn5~0H`lJ66_uVoK0Q6M^o98B9pw{uWXHd7V}j$-Q~c=zds2h_{ex5Y z9AKsTwQshyy}7n6m5An3<(KT?rHhQlMWx~PzUQAj6Bs8{$1u6*6#GE6MM?KjXJ>37 z?vgi(yU2YE7Jv=HB5-HN_PLJO4^aBhz@|v=;tM>;2l@eg9?vQ|v}#$Rt^P^~8HgI# zlT<7(3Cr%7i()xly>R(5lqVF(LvF!kTJ|sI&UFf_c~i48e_!7g90)Yl^u6sFB-Eot zO0pnLg78~Xxe|0&%JY$(25XG4kHXw$Bz(}j{%wN&`m7wlen55u?9khr6`lv@xTpHx zy`j(bay$^{nTwgmz$BXnh9o7NC{OZ|+Q5>brdhyLhGUvSCT4O_<4GHdcuMbB0&-Er z75}aDx;Mbmrjq+%TynU#;UVSHE8vZ-t>*%x=si860<+tsf|ArWC~~M5g7hjpunD{p zZFGI;%Kr)1$Dqt}@bN(wm0mqWC4v_*{HR(k@O9l6(Oc2p=Y@;fVET#0|yI%C}o{QvLT?V11oW4lvwXUu4yHS0e% zOS*`&t|MU={4oCAs1f7LBR50o9l)oU`XJ;SIa{}eLbn4ZgPq?R8oE^}(da`7FYG%M zw!ECOI^{CGV2qW)nedJ#Ny%(YLaT6-4aYDZE0CEU%RB{A2>aBr>Gh!Z0QJOkA%1CD z8J<(uZ_7##$$F@5oa@*ejou^7Pk7ZYWZ}?dyIoJ&FJY&=c}$dZloM_!^(Zw##L!k!`u1 z&!T=PT;t05io?i5y%4p5V_62yR}fQPlv`M1oqV1Ag@@=l);(hI zd+cA{R{x8`eFpOjgJa$K;D74E-N$;0o}KJ~5X=9yZ*YX?7&p=55%#Li)pLn|tmBx@ zBhH{9f7~rx0cq{PmlyLM6%CdiN4X zc2iqxN|(yGiPQ4bFRUz{kJanh1bwQWJ*U_6C-teqinjLlHh_)^#l(D&82R)CR<;q_ zrRw?9Mk6~!8&80TSg{dR|F#Ws&egEk{`l(*Tv54r5cPU3yXSz!@B0KY4ZgXiseCN+D%Mjsdb!m6m;Ii4} z0hjGAyIgj=JmGT82;H%EJ`OKv*rv z-spaX?T7q09To774yp%Zrac>IIG5JtSA~g#b}(KC(ST>hx13x-X{KN zgw8B13D%kB2kU~*1$mq5LI(#6vty01{L$gY;e2UD#4Fyn??}NiP-AmBOmA=ECt~O=CYQ3LRToWG)h3`*UnVXv6&Yd3g(C=jF|_ zE*!hix-gHP4gSUk(aZ5jUUCD}I)9JEl1Lr%9vs`4xy3B<@BB-H`8UW>10MBfmy?*w zjw(!}NtERdtW3}3k7UYjqaErlEOi?d>`FF7{WEj$SdTXP%QHrv$~s1o7J7 zX#Po*WoUG;cW_WfV5lK*?jU1KQdC+flcIyCd}-$gSqVS6w{9=rVk8ESVCmMVVA&8D z6BGDYpjULLSD;r$?#dmfqlXwYngDBXRQ+j0aeP6~!#6otNpM_HP+Tw$p^x50d6@9K z^$a>@XP#I(6GP~rK-iE>k%aECCMuBEfH+0K*Bh-S5V<0?(@W$SH z_F6sMDVI?Z{U_y1&$ukdU7{zo2Q0z0PcR=IRPOziE^RIwmHYe=+~xaSo^^TAdE z!3^-#(4FgQK_QD!+|wxSOqoy`6m`ayrerGJXtE?EVP%rW=xf4n;T^VUkkjmHA*YY4 z$()Q=f<)8y`eg9k0Y%}8HbM-F)1KNzhXf$jo}@*yU?uXg*^{lw7RZ$pZcN4oCggr; z4WU{T86wsqw1OEf8XqC6z+k}*TpOVSUsMXg7;WWXLXf&#RL z$);Ddo?^fN!@@D%V}gE=JUz7rxkHpZ26*zfBuOi3B^D%UwbB6XfB_zGka$X3VTeKU z@YM2o-Xg0p7<7j{B~d$oUo5eRL9weg3^}mA(R&U2pB@7w_O2AWV#u1MCJ&wD z7vO1%3DTB%ic#VKX-Lusl85-~0E1POECFXlj{yVbdT0%v-rl00=4sE#R;w0*XtiRY zha`!TrzFLA1b8Bj8X#%QEFMAF_6PYr{+r~1jqvae(4~om8Mh?S*$_R3EDnEct8T8r z(vY;&Fex!MO&jCkeT$z6^*ccF4xTBR0&bDYByB)Uq32ISJVX$?2E=G3>n2Zwhfc&H zO*Y_uk-W85oFQ+k!QhG0@0sYKMZ==x=c(0NyfejcL$zV(bTX>meD&tTjTE&^f_ zZzCoF+y!Wy1<~TIH`&ph1@fc?6Wf`fbrmkxz7RO`&M5&e)Glq9vvdzgGz*#Eo~3gd zg!m3_;?S>tV4roQY`B+IY=9>XLHKizZ{U0G-GFN7B*eUd62CYs+u_%-eGEu6V7>Y9L7XebcJwqus1wQ*F;S0D%+|haEijd#g{P71( zY;|er*L*FNic-o&)d5tqE_h0FdS}bWA1ij8Gnb{eeZ*RIYU`wmn#pFP^ddz9EYYSk z1dS3{`fDtc(KZnUHa80c(d5T1?C#>?vmg&dCYv)so}a{FlFfLtw)!6F^=wNKs($i#8Q^)3C+4+S^Defupgn3+wc|aU zSTzifxKeP%CE2Li|J-&DFMZMP2q5GWF0fJDneUWg=94GN@)L!}NQV4NJu;}g?cFl; zy2kB)EQ4^Zhqk$L6`%7vg0Q#1`&_Yd1--5iKkYsxeZ_H}5@qgF&k1o5E4DfL2r#>7 zEl5~_x!aq6-Ft>&Dc_m={Hk*fK1>Y3bbZ9p3${iaE`265f8o}x3)9NVmXww8!hgk% z#=mvnTTjlu#mduTM~{yE*J$SZFX4v=7Th}W@VI9pANc5jKb0*RKYmG>@Z9Lw#iOnK zbm{ckeYN?miKDH;oz~HdV@H3pc(FQH=VI>6R(Kf_6%ICM<={{)(4v?f3^qh?$Y+2m zi>Nd#*&!Q9jBt??EpSyU?`&#FLj3t~%;=hmdtxf0+be2wqYtlgUAD}1)#1@hShl92 zrNwn6zuSQai+j4D=F0-ftt4hv#XSQD-cvCvres;juu;uffg#J5OplLT@;A$n=262! z_}$B!mphIf9b0o2k>I}ajzAP8#|1fJ?2qNO)2S!tu!0}c_KJ`Au@)XkbXj6T{ZHb1 zk1CwMdGmXl#ajyKI5vM-Q}8q!EWw7W*nF>R6V9KXKThD zg|)6mEI zJdwOG`H2Nf$ESYuh_<6c`^ZP5-v9NZkk;9+45#CD@{kOQuZ#L5 zjf36CuV}mQ0FrY}8F+hR0wb762ahY$g%qTIDM_Po1<$y?jna8xKh-@mDL;1-}3EB9ERJfEBTvB*cGSLj-Br4d^> zkXzd~*T>O*`0h_*KfONLhhP5fPU!=_>(f7wL1mP4OXrvHKNx=$*DjV8I4bnc@kq)ovFEPNwU?x#K1gawR~z$c zU)_GP#PMMp7@%N^5W|LvY{T1#cyBAJF-CVIjzq zbk$yGqroav^U4@bKE#I+2Z9!Ir|0so0=E@bn)p|JGO|=WE`LLKy48{G1R1xH*G~Gj zBsVZ{YTs}dvEZdxaJx}oRlLyD*>O+x$x%tbC&2o_A?QivmZ(6Of(@jrZ>RcyD3D6o zD~PzElbFIO&DBRdGxXG&1)cFlEqSOkEOd;yW6ZsLd`-%BBuEn!o0t5x`eNn|(>^^m%5JW%*5onlw-Og^QJTK9K6o_DFRs@@n80_Pd z%CwKJSmAFrgOOoq^NHcZPh5E`HukNS%*x7TQ>O}NKoR}5&g9<-eQa)GURrT%?B;{) zX;Wf&c%rHEp1QjB_PV-zrdBMUGG#eUnq-fwGP?ou69BeSid(4H^JYTnkt#yo*<_>| zD3&?`mP$A}0}2)999MDr@5z?V|B1vIrVWnePb!L}$)B=$9Eo`;(!`q!$i=siNHaIb z4ix3q#Jo;_lMeYk7vVgoaaGmrNS9I~`#0C5B3VzBpqpI_XN`oHMwQg>+*v}pfR>fUw{M3FZ36X4c@G5P)WX0B`C(0`-Lvl|G8Y7FvXUu_ED#NLAY}e^wNjm z#=+EU4}m&ylTLwz%$sV0OIWeL2vE)ZmsnI|KXHWrQHmb*6J6SuHd5aG(o1`q`b)Ir z#)3y`jO;=9tuA1sRYxnbc0v@4S%{eiQRkBZbO~bz1#ucGq3J#5vP&`AjmerC@?ZG zGHeR645P>hf-C~EC<3CWU@D3m$rV9x!Q698%SzLChJUFz?&DXWu?{FMR)b{23Ox zSNy4#{yuo0s(Bwy)9pMRbrd{yq{Fc8=lcOa&%bq)!Ps?<1E@l{m@xIsLTmtrh@9#qNi<0Dh!m!PThLsG*%-#-aZf7Jo|&yjgLT~>5Pb#+E`mQI%!DY<&Md;1>dSMOhUrA!yW z#zf@x(d9&DPMMM!nWO8I7s1!d-abg+?W>FS3G?xm+58)hIB4=IySn~<*6VR!owO%Z zZ!k?+JJ}d21sh%6^sVnS)>IfJ@#(s1Q>d&r$+C;PufE<=U#54Hjrw5Iq;*qF2H6m* z)>qavzSF8BGp6WkC5LG*U_64rB;y3PJn^tWfNHTFC9z;-ghGML*J*{}PFz#7Q66#l zIS>g53jw%!n}((}`KMMZh}`K%>mXZ5yi)jLD@R{5K4txrGQdY%md zAEchY&f@cm^7D&O2dq1A9-LLJ1ioY_A~8n6Zs!CaJ$%`a-_-xK73#-yW*~S7B7h5l zc>{Bqh_oR48bT>Z-ovhyfWy@tfE3|Rq|2$pG2sbG2{?(rP9r}*KRf$@?CkmZ*~#Hy zx8>{4Z7&%T7(}+#lI`d8`L~6ICuiFp@2__WHstH{QF6XH)ahCuvYQ&%U}9Mg4!-Oa zYR;FV^tyaQuuFhyr4fIPRa=&g2uq9G+v27!+fbzr9uyinC|G%%F{f%nnc8j3xGA~4g>6=ury9XfhgdyC>mmI# zOdzl#5_*O5uJr-eUusjEEzH^m69_xh+?K|DRTnQI3vyFiV_I7qXmgLW!B8=y%_`)6 zCgx`*>?=v==X}ghpksyI6UYFuCrY5m6zWMbVM2_;21u!-X|V+#Gev{?0`;r4P)I0( z9+Xv=sG2crid7i}d|Q}zfV;jRH8yGLW)ScN=t5(4-ll+PUN1N6r0sD<8_H&uR5a~u zdaXV~KWg5b{e)h`#{nIY<5BGmoS7&=(0+f)}q^&6963Pf5J}s?|Os*(^Bo$0mL}`se zy)6V6H4?%e!WM9V1aryd8C2B%IqcX`o!K9ilczs;H#;fQ&kJtF4uK3v;#@Uj|(PXaT@0n1`x z7PS_&@(#1a2V-_8_(8aVUIalPAY=+b9w9>4>!e4(mJ1RVevudTVKGzYEn;c0!y~O> z8^=yLYz5-b zq9~W&uDa~p7sm2Q!ztNb`R5&}{KjNqk=AWu^K!GX%73*p>V>h-&;d)!yVb)35qjk1 zB=w7O3R)<4g9z5@bcLXEgyz$sAjyMBX`mvJNznGLqqwX_+aVS&2e6qU=U+M022tb- zRC)uLh?Qi7gBp36Tr_03qax@N(#5*=4}L&kJJBA#F9sxP)fF3nX$s&75FqW3k{%^} zotT4c=fv^EHnspXvL5812>|GF`>-cj0t}Bg zF9j@0cEM$ZYugzQc#~Y%G|_;6zAhIwcRPQK#j}L#l409-oIg*XV&KIo9X4IB&U4=~ zA2#sSREB($eAq1Emie#|qg=-^#8_fcCkH!ObWwdj^B8W|;czcUygsB<& z3))-N?IyEn{EFOdvl2%Q&K)f7iKEP;2JdBote6Gv9V}lkn|Sex@$(LN$foeb#Bloy z(*J}H9vp6ukZQzp0ejmtc(BRtzn`DmizFcX*?AKx1X%`*2XL+GZ1hGt_LcCrYq6xs z0CzB*Ry+j*gNA_|%seFzKp99O!DtRQ$Aw#H#RPg-Mm%DeKVjaaS6RzleCf!ydwb<; z1|Wc*N*?qNr6Z-!ArGMlQ-}cyXrh%r>W4!!LdX1~#$o^Ym-d!J+_%pKJE(eGG*1R{QIJL4d&>i+Tqf7!v_rwG^o}7 ze$mmzZi@o_{RZ9XRy4uf>rRt-sEL*Dc1zmE_p25j^$O!Z21-MUxGs?W+s~^siT55} zYmN>y1-@d4GbE{9)k)Fzp_*Q5=}2^vSMebG_`{~7@_z;u(^}Kn4y*#A6{40Mbp&p= zs~Ki*YDRcRmFJ^Y^GcJJDRtsGJu4j;{hX+u>vSr877E|!DEyV~HDo@9L58G2l@Drz z@q+OT9z%^)iRn;#tBE9ui4X!ps5z?vF@b7Fh8uR6f9)OFZx}mlN|I8O3Zp`J-t468 zB-vn3kzN}wH{9Jfi_MQJiRUd*>Ahcb=k;On@#-fT**;JXgRM(7UnvLKKM7*qMQt1| zhYKYPSOjk?xFEda8Pg|+@}KoFuB%=64*&wozqQF3Cp-fDV)(xTjC_tUS+7H!751+7 zcL)x5eOr*SFahfryqb=+!xDx`iY-31MK-WNzp%a;ywH?ne}&q@o|zq=mt^}~dd;4q z{@S(%jp6Ij7`9wAhTVzA{9eE>iMBZ61p>vYK$i&rj%?mKsK8Kvgs)cveG~uK`chV9 z{7Y?Wmwy*5GA9?T7&Btoz=6v~j9F2TVqRR#-~X_5dCCYgUXOW?A=})Ef|l|rlZsat zSj}c@!Rq4bsTGThuQ|O|x?=i*#(qWPt8W{>Xw1trFPyfZUoXQaHb7XCoE?=xXekvL zrg)oa$3eRnqcDdkUj;L5XGJ@HMU|&y)KX2+dt(-(IwMk+m$E^Xw`>V$HpugKef7|xL@Of=_|+j_wrqxT$x>zT{JU$ z$dK%rMfqb!RuA8#ma__07fqg8-ctP9(UKPYplCIE!;I-oaSuU|V{-&HKh-J6sn`i3 zp4KEkY8G{`f%=?$;`mJ2eu-{|oW*V}5gp&D*=ReIgHDaVQ(fr%O4TRzO0Y?1sI2Dq zRaY8xrr;|;Rp^l^t)h&CBiaYejmVImIe<@Nf~HA$MfZkMfxpD;6h3p6aRbS{5w13hU z;h)d@>wQ7xgA-r<8FXlW^hS91-XK$KrfX(4hXbvb7R7zF=YoV)Xtlm9VEWCi1!r98y_%fFJ+yM@Rer%kn#W;8x{FUTFBQ z%2#XwO8bGg>%7|JI_}o~jzMtU#~#BgDwd5OpKyM7MLjIUV2 zA}r*_l`C!FO%r*@1?eUG6bT*Htt5mJ5Tq0nO)nkpBoHz(zoMkI$;F~P!qLWJR#5(E zvgJ~Fej#ML!#)M}ZDE*qI1f8&foK!z9Z?U8G#;o z6Xp!A*}>K=m>EAaTgqXlSDV;`NVd+ty+7X_#ouGi{8d&Id9uGWj*lGh591X@Mksp} zLNQasgR;ChvL=HSS;AsONDV+eq_`Q+%qWNrM!Xw8KcM8FuP*LWSUO`Od)f9ATdP_* z>&aP5XAI=$>sa5=fvJ585B&33dLg_Qb>Q4xz}5HmzleN z|GfSCK{R};VzHy98_;xAvZ6D6g?@bmJq()^_U#C@?Z~k~fxPN{_IrP(m|jIzRYJcS zh*9H=m}pNr9zB2`fmVi@)gg{w+P5*S{UiPu{ob|$@Y^3W1MS=HzaOEnKk(`I6BX_K z|KvY(Tvw&-1IRW5vPx%RHO7{d{9PDz@b6L#7@+;#iAj*lkEtDBz`m*+9fF`XIzfUE z-U+I+HN_+2zMHbH`n&iX@2u+TEbpB7qi#)m8r_e^jV!L=rz=4M7=|?4N%q0+d#5G9j%Cn9S~iizAmp#`~DSQvtD1XSn)N#^z{n1`=n$jE3oAGeun6R z=sX14bsyWr_|X?Nw7?_;ySFo`@PtRlbAmTGl0zh)OCPf*nlG~p_CR?OMR;FAur0e? zI&rC)7k_+d7udfL#bFD(EX_dBcOYMn^SfeAc?VT89NVZy&le4n3v+9zN|87uR91m5JvJ@plLKYF; zlkX>wD7@`|C-*kZ5%Li#cr86}MdTqQKZnCo0izZfwnzd(pMwbukPwB_Kv-Br_#zt9 z8FQfUP)hro5_1Tb4A)n+ywg@K<$*K4Esdg3eA&X zn)H%l(wx;Min1JrEDlKENH3GH<@C2CnZU@4%?5-I1#YFo({y$d%WkJY-xhWvG@ zfdT76{RXClj@+;~IJ|cle?gxe<&&J-AG=u}pX8C@KB?K^eqNz2E)sj0Zw+D(>%aWc z=KbZDPr?w$#)j$#rUvJ)TO5j?hOSfh30vQcx2XYr&imoVVSx2QEzOP6rrmn_51=E#I!jDZ%C%_59Pkhx zCnXZb*ntouGpU~_TB#E%DWZ^MRMqGw#yU+$VE<5~H;*qpj$7;T<=nm;e@tG=+L5PO9!E$o6wJ_84e^;5@p;|U@q-FVbz6m2-Zvz(16?UkE@Oo zSwdlbec|!Zb++GlGLyNT-4<=JMDGUhcsE<|>TxOOc-?6G^P}tPS8d_;I56s3V7wjL|KUJ4UMJ??v{}hHfNN7U*qG54@ozdYAM6=>BmE%GY zO$1E1oPfJjQ@YwGeR4%}b4A|O2d?JPi^=IoWZH_HLvbI`gF0qTNzM{@scCxCb56+| z2u4Kx(jCnc@yyhIsEE9g+3pDEM;-6cWv7oOZyZyUm769u;@#r98V$TuamJ%wuHGc zwNAFEvb)L7e-HnNe_1z=fBDhyUwhIH*iu=a7j?{;Uky0IzunqRZ*j%>^=O00FCWO% z&JgLHx+=+Yg44^Dzx_J=Bi3(T9qacIi|#5?ev!@Ix|Q`g529a?bsuop+oa!%ZPYB*)6dD4?~hOW29H&M|}4m z{P72W=)8V6*2MyE6(JmnmE}+C5>c|GwPe|{lGY_9OKks?a}%<%Rt)|$&Bew3>7cBv zL2O1NtFb-HX0ZR1x3-oqUQ)JfS=kc#j;sV;=C1Gm^U##+LDIhxvM&6LKYs7eKXwaDu$v2!?uoMZ&1I?tz+3okrvdxYhao3&y zye&Y^Q;LwDM%9IH{xyu@e?W@>ZjFYhGbOj8url}{A#W0xKU|F>;gzpO&f`P-7<04( zy&m%NVnq|HH&;(&MP7I}P@7{sVd%q7Bzt*1pdF}XqXwm?58_YZ<%3>cgLzsXL(lSX zMXoOoUSW7V|FFQ`<(XOKy>D6OsHI_HOGjN-DqVNjU{zMfJ`K|W6M`JMm>S?o6Yqs% zS0{%bd+FF+X>+Mz1};1%7Ljlt7i;phNhL}(QZ?zJVt8nd2?O!kQu9U025bq zebNh`gO+Q6cbT-?P!;TUM4c!!d9px)Hv-a-W?49x4#Tj_&?196g@!vr(Dx_ro2=OM zbbeUVY94_bWW^K@=z~)|3SO_>yE*TW{l&zbyy`5qI!o@~@x`o%H|HJvH)T;@QP=UU z>gg3^B4q+h4}L(4_^Xn9pfx(GjA2?bZQR2PXBL&zMwpM8i<0LS6>T$5 zV=3SJPcv^DTQqm>gLCI%V=tXr_;6m{F>{2iP(B=CHb=DokT>^O`mp)_Z?U2E!?Nus z=Wd^in^GSqzCp+^OlO4H(uMfw*1y|<+5t3A?|kk#Tjfbcf1OaJ^lP_KSsi50Uy&3PT13`2ZHx7 z8D;ruKo&q|W(*b#Cuam03B4E}iG&H5GnhF9kLf4TBHd|(Rh7@Vr&jieiFYemzjs}U z2c_c=9$hCQSH5$*jICr^Z-6I={ZQ+WN&o<@F(bVK^*}UtK;teGw z8;V!2AE2M`>a(ens*Mo`);BfcS6$!Z5NnsdkL%`;hn>+5!=xC=Ln7P=t$f6Njid|UfZiGz9QxUwq^SspRMnF^%#zO zcW&!ZzdhRvKW^I2+<SIFq24VUB)Np?oC3^oa}&PN;K zqqRsfHsRYnmaJdnW8dzxW>c%jcIBNkRe2|Svk@#|2!DoeXH!|;5Pp_Fe=k4EPY+>v z$WFAKKQjc$iW-JB&(M*TwLDH;7zki{garJ98gKYZcgha1kb)+@gj4Q&3v|JdIr zPJHRfE3EaK!nt#I&7G@R@bLGKKKlK`_S%yh?4Lb2^It2HeX8^FU9YI~XFe!}Y&dzW zQ+{>XfLx##D{`g7cnmL#GelEUht2hs@L>o6uDJ~0&bkWO|msRkydJlLqNOL3f4 z-~8(NS5MBiS|^pc&q+zeE~BDCIzfl#S)>_ATlwp`$15FAw%yj~T1zqW%9%PfhyRpc zt!Y+=8NnW3NxPFuv5q-nv?y1&L1dJrUZLIr&#&@AEkJ1kBnPX3DXi-)gr!MdOt{>N z3O*0{$9L4$O8V6N5=)A-*J>%rvtKNpRGU>msme=Aq!WbST~cA4b6;)keRJA;bjFCp zb?Xu%j5?pxfPk39jQiFl#$?5Kci$&@p&vt`)eG4LyjJ73pd^^L%K5 zU?c&Kg%?s<8w%g7ctf~jWo_-sA37DJol`R99DdANQqojbX06*B5nWqRkeHUC_uUfe zIjywBl93l_v8iMB@^kyUB?je{Gm%E60Uvj$n> z4p*|NHLo?y9h)`o@tVYlwlxzT8e7Vzu78Ao_c*sN$O;Ktu%dhcd(FRf{j!W=Rbb85 zv2l}Aa|aB%o$PlGSsQ}A1o1iz2aD$@r_o>*pon1|lmH#rNU=7OZ!&>MJal*^0aJ=E z)rds`{hBj6+>Z#231fsv$|MxbJmy4+P@{KA;quWx#?YD52!@m1w@jrAds^|5{9GE?WIy}WV%E+knl zFV`Ngn;cZj!t)O1Ju~G&{_~Cn59P@zCNI7*ZB8mi#r%efz*#KO-|gNsKBca)vD}iK z4ns)yxlOx}Foz`&do1Vz6r6zkXxOIef7Ok{wdfd1;2|@ zXyY5&ls+iIm`;NAjaXiwfrk;K61jT)LUc$0W`Sv*6kcSB#412Sj>xqz69uFaSh~hs zrj1=7FL=my)?bqOwja>pQzDb`xa^_&qE&^NX-}wD|kCfki`0n!HjDFAEna@0hkmz9q!s z)32|3ZhoR)#7{f;qNN#W8SKQkyUWY(9+#!jWbODV!Y?u3_M5QD9p}lG{C+_p5j1Wb z-0Nz{GLi+@kx?H}R&0WDbnhuyQ9fZbVE_Z*0HehW`cyygyi32d$F6>c~!| zzZAXK6+MPg4AvR4vVj#21}I|7R)#OA;3cf?SfUUSVMdNaPYg=nuUQp8)6$$mId0p% zmpnUFZ^(I#`@Antwmle^V^MA6XC_Qw@nGB4CytzQU#7RlT}qG3v4uB71EYOBc)Hd3 zkTeEbt8ZPltdtDXBTS(%U*Dnz9+m6&6y&(IQLc>3@+8~to^=RH%qd=7?5!77_`EZr z2GzrgdW`y$dL)DlQ|jR`@6di$YUc8iT(dO5$ZGiOOO~XXb92p1@|?JNU*X6Dt5=U( zy`p>tZmU0$>uq<&=MGjq&HpiJ5=+iau)CRa$E+LU(@!c)$hDQOz_D~V0&7tp(!rE* z+?TFO_i$xziw-$HupxsU1HOFPNyFfTx`a!mgY8!a7ZeO0zJD*Nd5e5urj8i6^h|T&jHq$=0Az*?9#bm${QNnwwM$t08Q8m1vN0=vv1 zo$3`tw4(pX+3?YVXe&kE#}W|AvqJ+cee@~kKOA9stSWzLZtl|imgeU#y@R03NFMSJ zODaE95*i<$H7K6F+ka4eW*n@(I78L`S)K>76K~TQjXDcb3>$T~C1y*pD<{Z>6YBDp z-Meh$NIc~8MlgBs^PgEZ74r1>?AX}sc;yjoCah40&6XnS$S0qGR$sT8FkJQyYa=mf zDL_!n4+u13dZYgyS)O?GsL55iRk%$aHQA12tVnKIyK36nwbNFyV~!l24{M+2g zlXE9mjjF;eX&R4NyLS4jRY#^-r=yNt>mYIM2M8{eK$!Oh-9Ed1@uQGe_P@`I5YdwAF)o^<#!%%qxb0(NG8Vm8?C`MEPL_Df>t_$MDLs2UGZIp{Vjh%Gaz2 zhc_vXV8tn%mYxh+hMwgj$n1~G#mXJ>#|1Z>sOLq0R&f1m4cC<$`lsc>EB+^KM$s8) z(O)RMY#02qH}p9ahd*vRw&X|y|3}@9D%787`12b4_*y-Rzpf8R!vDcF2bzKGgaH5j zl{%C@n8M=!Qbp2}Z_*ckr7mQO`18?Ff8vJ|_3VkiRFxaY1$5d!?Gvg8RHnbuEvQOH z@?Y#1R0iWj5SR3vBjf>v_NW+Wph;S8dC{aAF(6QC{fPyCFm6=!^{-(_h=(IIrEfWB zyUSYA`xRRsX={WDgQrW`baau{DNr#=y#@A^yPFU=QG1D^O0n+%Z+h3RqlvZ{s;7zZ z6HFq?#^X}gek13H7K~Rl?mhP$u$l_&!=LVWC^Y&HHyw2p!SPqN9lU_5B6R3Au<()h*zqIzr=pJO%LoQ2aRg!J0aQO&!ciU8XJKgi=^TOu~`SUEN@Oe3Gyw!d$ z9V69P$J=qKwl_h=7={r+x&}nG*$)Yj zJcY@QLVJcne{-h6s!)SSo*RDIu;CYePCPEz@Cyt2Wy6TYCkKoZpKll*cROCl_dh#o z#t*sbKG_R5FU%GX{BPOxD*H{%=G$dF-;v#zHLXH}SNzu#qiTMr>~@{p;fakF+ET}u zb<~i;-SE=dQB~##V}s*;LOcv8dZFzp2t(lcL`XhNWO@Kwuv_|Z#TP49e8GRAM`?ap zt8W9pNUvG%FIMm~6_Zxeo7I!pfwXai=;LP)A01GU8fIy;sADqfR@J4a;~~TTwo83U zXnI|GTgJQ$-0bJuyy;zfUB)Hw*%%$TO8eK`}y6!Le)y0aYP*BP}778X8=g$tnw zIg1$^8Zg_y!c8cqFtgZHs0o`D=iuOsL-fqoZSW5_H>b8)o14M{E(M0N`63Y0zK|EW zncO@**%NLicMo}Q8{mhxBl-O8*0#2^<|A+k2OPQ7jAN~h6WEh(Zl0l@yx85{4MJ7X zrC=X}dPjLuf(UD(*z^#`rxq?_Kvcv=oi^*ji%fGnLF=7NF{z=Us$q4+^uW&(N5p5A zc?f0PFX@%&QXj7I z#$UdCxn|$_2_+Zy)roKPD|LMxGU$wwnL+%ILW-wO?S*v!{8!bjYt_ zTY2B$v>53wI>i1k|LLXCvtE*V&E-Eauek!~*;OvtKY*tN$18dRUiF(~2Ly~rl)$z2 zkEx8gX|cAgbZV(TAf)*`hkdIQv05@x5x6fACC`aTlb!evOe@-X9PNA^7KSK_v0`Lg zC1*Rqd0?l6at${bjFZkfEo?s)#e!@E;X@LP#;_Q{926(6C9aq1>?m!JDS3vvp~Bp| zwS39s@sm@n?=O2{iEl%4y2+YuvV9pp0+^BWL7BPxw^h|JQ)X>H-+luu$^QMHk{_?= z?V$~n`}vQpOHX-++wtqlb8gZhj}Yy%UF%K`G_u3*8J<)_QApkJBeb{l0UL5=`X$Kv1CeB?-ToBRTq8<95! z`9`4!aPRKxe_LBi8_a#()|L*tBUZn^r~`D^ZLlx>V_l%BxuvDK>91)6ji6#qch*KxhOcUHKXMQog)>M|+I5 zqQXjYwZiUU{|X7Zzv8Fi_w3S#l)WEiOv9ByB3+?(&@){eGNdW6IP3})(}|po6hbTa z+uxRA=w4_0Y2fhT17$BTdA5Ivtzv6zx}+yjHRnqZd|nuko<2YZ2k4i!WuUo{m*6^d z*#?xdeFYAxd+Cv^qckk%Hv+JF*1*=Pl&V7FQg~8rFQV^G!rPOX3^NPK;4>X4)aOV`D?0z zeCUw7!>mfi843fK~mK79a24 zOm+UD!-wsSsQ;n=qP_N?dNxzwedc2yrNitsVn#XZa7iqHA~OJM0D zQGbiaV{WW0BwEJ%3_MxO)DX(`U|{UK<`{FPX2k@UKFwQ7qapsP{Hk79WH-Hj*6<9Z!bN3%dfD zfSE?3RG{<^g#ZyIr1jDI5Bm^iEV*P7lP+IYoppJ18%TRh?(_E?eC+(A^-K2HU(Kwl zT3c1cTDVq|_YD6%zI_jYdgXt+drsIB9sTpR4P$Gb39njNg&T?&Yq-LfEn_rAksVjq z3H=b1Ey7f2VL-7$^)`!HA{fvBW5hb%Y0s! zwEXSfy;+PlN~(#{vY6hz`P!D7VYe(B2@R1rL7H*v!d08j^TFr0{dZ-P z?o0Molsyn8gIl#+DV@(?fUo~q4bGqAZ~cWzkp8V)a}BKZ2Bi+@{y(h*vOWEUO0biE ztr}uISL)HNFT%Y4yc#O`PkVx${A*)@_I}qOi`G#b1PgOz1cP@4n}XbzJ;Sdt70)^N zG|yv<+t~95<@Q+M(00Y}*=$oRKx$PnY>VQjlW~q!IEM~r(P1A!J3UJ{m?^@T90n9T z(pE|}m0xaL{YBXXdMtf{XETkBJ@e=x*2aIg@jO+;>jBRm3OpkorGb2IJb!>c5YOkb z&CzTEn-VYN=6zVhFJeXVRk(}7J4gU5YB*dVvkFwM1+Bim_6lV5m1nZvZT3QTB{)&_ zP(k~pg5?^@+Zt_jJmn z>?6LckqYoZQDr?#v1b8#_c2Rq3<#j|#tGcs8>s&)ko!&)DHso`S&b1{tai)#yaCM0 zj}ORugV~sE7*FTv!%#iZ=5O$uhp{4ilFZa1#*?8|%8xHfnHMkGU-*HQ+fK1W{+67S z9m%5kyOC@*a%sS^C1lg5L-=?;9)KGs^qdp+!e>>h(S!XEy_F#RiNnD#kmpq7G#1QT z5Z4S#0R2;}J@TJWB$rMk<3)Tv)ETXx3A=d&7Knq8)d1PhbwfP2tkZsV;CV_>*N4Vn_ONj1{dMdzdQ@bUH0`|5nZudm(PR$1xcF1x#~{C@A2 ztTaE~>|I>hy6v%(J4z!#8l0M@nZrK_Xzdf9oS~a@DbEyFcPc(3D{z*pKF^oGYKkkK zu)rt4dyYl&sq=18v(2*F(>uUe8LId3aFuyxP0iQU?j9&o!=7@_s4RYV?{ll~KUlvy zKpzq2UL5zTPaYQfJon=7^d30_m}Cqnw(@`H6{jZht7!$+2DZusAPhff%rp&Hf7;Zj z_XR+futAj9HUn~uGLQ^%cxThVtpz&@R6$SdN}a*rPpb)10R&50i&i|#h%b~u-j6lK z96rb#E<^FKXp!8MfR)bSemeNHvD&zP?aK9@GVkvy|LX2~Q6ry_$~f|s^ee& z{x`ca9wX4^3XGevXeA7(M#_=n2Sry$!zNBgW5ZcPLr37v$e4$L0)v`JONqn4X{re) zFeSzV9>xAWF(F>qRukd@8&W;*`EsLt;MvJ}y~o5i=9WYRX@bI{hh}cxeK>otCa7;j zaA;8W{JE{pt#jvR2ZaVl^bL|V|DIbpGtn4onOQM+UB#3&Q!3U;!*g2Q{d;+OMobCy z*LZ1MXZ3dP?Jm1U#JAnaznoG$JTA1aHrUh4%QINpH#BZ|@s#EbzfNy09y+wRbvob6 zM$cIC?6XT|@W*kTNgtk#cI&Zw@BvOES+HgzSP;q!vX~N!w--z&J`8-X=moe%!UYzO zh|D?u!!P80TF}T{P+1}@z0aQWuluM8S6tzT=xrDiejaW^< z8<>JXjffzx9y>Ic#udyE_HR-WyU%uC-S{;J4y+kpCv9K+PD{%>?ex%6wQus|eXr1i zbY)8j8|%umC8Slm^HYJ{U~|J`C)_`7u=0*?rgxzuCr-3)@@c%c(XWLa_E~gK<2rmYasrzd z5sTz%me_jwCEwKjofO3jwF~cU)aOo|m^%j#Y_4|E-Hm>t?hH0#`FE@+gwBZ*^FcAj znF)sgF9}^k@}0o^qWcT4l}vn1@+VC>w#ST=_0xD2BtS3>U&0-)@I)WVR{;g|rHl*U zKzkFcEdkAc{y^8(1$SkfX>nbn(cf05Tp&41Y2O!2k{5Owl1AnbonL}kM1%c7{Vh7J zh1NU#6P^!}%t(rYSOay=v64ksP;elzthV3-J{eX=d1FD7t@?&`xz`nxl{L;8Hx6C_ zV}M3p!c_4&_NArGwG|baWxtfU%u>e`K31~Y()=LJr%hb!_{}m6B;)ds}hxI$R%!r)yUsXE#Ha1PTQ14gqz8 znFOo~l;M)_UNEFMoBB&;Z6(?(`$T=qat^bVJ(^JQjQm$# zS5`J)_VY8>%n%SEV;)9mH*W~XxKol*NN~PV4 zXRFJ~g4|Pwvh35RdD}+*htc9OI zI{0J6jQ}4N^k0YVLx^2JXMxs@rbOC);Xu?gBy4j01HKKF*qKs4fniUP&Y+6v52s03 z_Z5_Vk(ik|Ei;piiLQIKPR^;^RjD&fUY+lfpJ;nl4j53MV@-_K>taLwg5?M~XKQI6 zU!RI8o3C#5-o@Kf2Cy$C@1Hbj|Eu&M6=zP(%9@%ft*d*bE>WkSu&c60UN=dXnCA)` za{8Q_jA)~;yDWS9MkE&Id$?MoM@Bbim2E1iDN9cOGGk8bob+@&WY9Rg4f%a$JD(M8 zcVZzhlLH)V!H&nQHfqiAi9&Q^1HNKO`_=yPS4;RJj{Fo$rGJc_tu9!y^6ET!^`Jtv z4{u+3&FR_-r)#sviv5ZrW62L8^a_9vC@_^=0I;}HV0?Ql_@u2lGjgn8lx~kz#~eAr z*EiYkR@iZnT@^pXT{#cXk4)|jGwnb?Tpr=6?3G8r!^%_DF+3H#sCd7BznD{<$77!a z{zFd$OIfs?za0Jk`=g8Bf4{if8RQ?{FQ$)*r9RzHCCYvbW8!mKp|PzDQ={ZIUQ84& zyjb;_eK#Mp`5yL98qbhdP94Y64jQ`~XOyb^CjY?Y_Q#4le<>$iYO`3{q&?kEK)+Yo z>E*NxzwgeEqKiwy;PSxc0eQqAf1y=-GJkB#OwccJWk8jN2nnHWJBy&nerPmMoUq{0 zfb_9otU?QS))09zR8V?@Uy7r2{y2g@5F?i~bG*2oY-MX)niLQdAiHb&xLA$8zOI>( z?mn`tGx$af$no?w`Wh|8)iKEt0}PU{?B?RG)608ah|$>!~jo?hsCIIY09$( z__}EfCJ&8=YmDBkcGt)F=mHEG1%?3c0KF+C>w4anujNRCw@K~;-ezxijhr7-o9G_k z>Zy0}@z#Uq-XI@HpOQXV6PaoPiy&yOUHw8wCbM3duFwiDuM`tnfMDrUcP``34@9kX@& zkIUAmzFWkpyol7Y-bj6gg~s{o~zVe}tp>z2nQI0QamY{7Sv1a9-}fsItiT@niDt9CKt} z?!x4}$GcwI)`~B25cM1G6z}^qY8x-2MI9ByHX4-^@h&vw6R|ghjMT-6(MJPLYck3( zGUGE>8gmw{2E%SnMMiaw@96tm zC+FB(xGge0r_36sdfK3mi;N44H1J|WSf3V;!~mkrib(TVs-+Aoh>(Ar=3p0ES{q_9T0)$Ws8O`fF9AWMIy1#xB|tTo z=TF`;dT2KVWAT;^U4`wc`Us zVT#FbbiV$BaG;>csU@YzNYCCcJeggP)o#9c!Mz=yT$R-x;DNDRb-W+rcz=ieH&)C) z1(@IoIor*nUr>K-P*A_V{r&sC>){qc&wa(?yB;3m)4t+})>d|=l>_oY5>th7u@Y+v z#pU!D=&%krGN8N4#!gN9P0^#+)Cf*T6AVb5#PdnA*Z4c`cn(>f0VO~dVS5OBg%y@e zsT)xuFDn^QcUwteNp6k3bVhE8YULeAmM=eY$E*=mBXBzh$V-5Jpe1|%{%p%YeZVX~ zzaiR`6zvc{Ke6BX9d+A;xlUY*14IlOsa+jh6&=;XZr%Zgr*R6`CF)314p|vJ6monF z+H*j+1MT8Z17%qdw}Q!@FizPt0kkD<@s zd{g!In{OVxNNcL&T&`rV>r;Zy-fvn zo#VPXD%X#?n(9bb&c(xaT(*ijRzXjj2R)56jLue}UGw-Q)~o#@QW{=zK5M^v^^*On zId?0EEWWgzgYikhVaN%*mRBp+LG#wtP1NVO4)ePGrkBze!p;oGml#^aAJkDj zq})cfN|iIkB6n{SX1~&h)Z(LYATm6}agu3WrwWmAnhX7hBL zN&e8bR~}E#(>HgkljHh`%gTE8mdd&Ps*6YaRh4tMu|o`4-A5vY7I)4TrS)CosN+I) zj-{?KNLf;pR&^VNRDREKC|fT+#CCPgHT>TGtLm)tJwgh0)&m!>$64qc-OuEF4{8$o z_)j$9etKMWR*Y=ylDf6a1NKKzp9GLR0`$?R06z7SYW#dze^Z=Rwd=D6_6T<#iY7Q&u%j56#$G~LG8 zgw4}2$V?byd+8a&tXnylWAOHd1d72=h4E^(^VFNlvr=gL)%L5Bi~Wk20wA>QAxH3z zXaiB#o;7WcrRfaT3CyGJ>A zg#}eut~%zFGav=sDNv;_VTCD51~r@Nq3-mj#mV-MKrQq=jwoKYwwwLa(@Ei$g3qZZ zehNlO$EpG2mk_ukE5-Et0+=EqYwEsIjK8mmzcYbYe(6y z6=`gSM8^M3&c9tTrZI1O$#n&+Lnnb^ugA$DXB_7y-Z7jTLmt=SW@lb|=FCk_%KUCT zDbCq-ULUb5>gs#2&f)*Y0%(Xiy8eb@I{IC}Q}4fZ8yx+kOj|1E#{LofgE#cO7{P}) zxCn3AKgzkuG%ct!$;#PtTuZ<3@3XU+Uv@TD{uik+f`YjL947%(gR(#v9JL?horqQ8`XR1MHH%V&(1G+iW`|5?xHBSnN5_ zNg{zK7oZw?P6mb1E&HW&%xiH~ku~eOE6TRtVzj_9E*+vs&l}F&UCwF=5$4ckDIP#9 zwKtOrokRa-f}wNl-&8nsl}CC8;bCY7lY~Q`krcmKn{Fk697NXZ)=H-9x~!X=b1*e@ z=;*NL{~ud684`YKa?vVqZHtQu+V@{jY+6!ragzKpglkvZNM{Lkv`w1;t>urJXDM1c z#x(F|T}f2knB)DtMnrA+{e%j}kBE4U@-l^_0~L#ok1E ztxYOg3(tjkx?#w4lavLZu5`$hn@dC?Rc@U6A1P9W z3b?MyUHzow7Sn=8AG*p-C(nqC8>atFXHM5SmH97JNvf~%?+e`d_4B_=0=(Z%+_Kpu z3!#&I%0uZnxmbSXy20F4mLk((l0(oA3C8f7G-B=Aj1lCEx}hZi$LxRnaT1SsytRyR z5j$lqF6k`_fDF6w+*8F`w4IjR9<}ePyCS<_sPTg$z-}^H$fZW|_lEK4SdXqBHbQs% z4fc(@g*R^i5E{yE3kE`>0mtqSWPAW#U=|P@8F)|HJCHzw?gS3`9&zs5!JHG_b9yN%|U$t5(}Ck%=mrd@!o5BFe4LYx>||{j&ikg~*=8 z2bh}qDeh}cL4Z^aa*IvNfo?%^0eKEopJC+*6mlV?bE^#rvyGRGjAT@8SRcRwaI zaCLlcZhX2ia7keQ7nya*68k@-M+*{CRHtwS?Sj0sZ?20M900vWHA{x^~;S zqIDtcO8?akeMZ6BX(+BL3~k3h5U&cab|=FJIX#FbRFR4BeR!Wc;Ka=c8G$IunhEJdrNpY0y25Ig@eg~kiH(5*~Yka6N48Hsz8iHyH! zCz(h(%H%(x%rjj@(m+5eT%k=DNhfGUX4~bYKP&sX$|Kf&r`J!8IFU6H4 z=JSrd!Jl3)w99g1IXy0zeHfKjMkQZg=>Mr*H!0873^!j8t{2~MeG&XA){lQ##%}+w zuh&h=>CrCRrCS!-yA(U=p`YklU;7XIM>`SU;^~xuxv8LVEghav3S0&V&qQ<@@V+430FV?Sc{U=4QYCm3 zCFcZ+(h(0Z*Cw$o5A4a!-Sfam_Ga-19~2jT@PR#TWK6J6>pk}{d0YLApczpy#rM>w z&VKQeXXiO*B?jHo>JuC@GPS&Ybh&&kE9-%sSy?-!vJXq}%c2sS>qtY?NO)7@@Z*8G z;m)b^w-wEMY1Y&yX14j1jNi`fBclu>%Tsf6Q_CH)a~|5G111XoCICpu@udleCzPB< z_=hLnxzp!_FUZje_op+M;(}Qm`JC`i;6w2Pkl+ycEzY7kYYLlG+)yyvGR~4^|e~h;0b|RpT9+g z`HgDWR=AJ-B<48S9ZMefEarUW=Del3xo;GbQJui zSf%a_oQDh5KVnS)^DFt`c1flS> z)MDu;>zVAf+t%? z(nyv?QH+VGf$$@;Z0Ix@kOdKt1&D7!jyPN&#KK|Pk;x45zzClq<`-@su+eK79 z3DK{WBmawIs8sA|fU+#t@kkT`}rHUZhKAguc2gEc!K;x85GSb7ym7qf*a* zqMk4O-|E@bi-O+wzv)ShbO?LPHv;u(=+5!fod)X8qF+Zvx@JfAyKS6lfap$-J$n{6 zJGor@=Gr3F|7cvXGq3E*{4rn%f!Iv7p$m@jsE-JvsEfDcI2b4GF(*J zsk)PE?ptsCUFGf@i@avfyj~a{Ya9?59Q<0woR?pI^xpL^gHs|ncJ#!8lW&y<`W9rb zSv;(cd9Hu3O{Ka!eW+Jsw$?@K6`toA9$U><^Je5hPc7ZM|LE;&RI2dURMpe&UdGsr z-0C^uvB8EwV|aAxP_Haw!qAM|ykSFQql1IArCF&%jj0K`Xyce^xyyo6bB!58vus!U zWW~xZ3BJ1UAZK59m-VrMs$eho{^{W^&JmuMoqdDdg92ULgAsz@?Bbg++AG*a<>hG^ z$`0s!-924=z1#!6bbV5TqrF_*{_fI0%hEVh=i;tXxx`i^r1H#R@y;$T?k;X_?#768 zqZe$ur1LYx!l+h(8-?t#3PxB#3=>4xkHF#D+t4;GO&!ly&(jF6rVa}l`_4_+ikpW?tGhXt>?_>k>5{4={0XIS_1;Iv`1 z-*o(35yXxYs?L(1S@AiO>q~JuO%P7z7IHb$srfA7cj|u59zI(+fqXRNKP6X-!+YA* z4)`7&zNv0CP`tv5Cy)GFh;QoY+rss9^f^VkXUUA}6y&SJtJFil`&8ymD;dUcGzUX2c@Fu@FAWWBPsb4)cF|db-8<|@x>?j*}iJv}p zl>hq@f@m&DM|nXL>t!Foo>XiX3ht@D!ma8}mKB(`e4TZHXbdbYenvr5hE|XY2Mr+H z7}lZrV^g32OQ!lwvgXY(W*z-F&N|6&YS-HU9le)dKsL65#6)|1WMX20#Ue|V%-VwF zxN219HBF|a$?+DIO2OOvE%}zt8~D_Jbi}B~3T@Ka50wf*Of$jpfg&U$nSiuF2SSK` zxM>(5TFUmo&l2J%%s>PslP_)C_7T50B_%QERgEv3!lL4G+QDPWw(-x4SNI0hynaac zYEELx6y^yE{~V-I$Wd*%$9+q4^{$-6`$F}0aBf(wi8+#6P0^G?i8a;tCFbm@ZbX)@ z9Nfe;U}u1JIx4&yW}|aRxDjcJVVDZB5NQ#uRuqD!dO9tIe`iet;ck2m`%ha7yG!Gy z!JnJF7_X=fI3pwCvDDI7Ry$&?mwzv< zS1;F9M*D{=;S7ip1~>1hgoJEs$+Sdc2Jg43Ta1Pu*c}`mQIhI9V1c1W(p~72#Igw> z9{4q3$?5oK8>bzbzuQ#XRy%HkUUJuO{)Hv+Qyq7}ANNk-w&pzhNon~U zyQds#`&3S^ZJX6pQ;f`f1)u|IY=JDGxSbAPrB>92xQ4@Mi-S#WIOu$Xku$|PT+p~< zpus>Drdq`#P5cFQ&}g2Mi#H2?XNmnMhm?kdob`$~BI@3r%S!nN6WBYZHBo_M*zbuDdxvOo`2^#H zd_fRucuTR!0O|c1ds+1&_%(i}4`mN9HhgA33&x^4VXIKiOEz8dAX#)>xUB1J$KZY? z2jtAcg$oK7;I^=^k#FcINu2ruQr(^|Y-}uSRF05l^eEN#vlRQ8DD!=clc%s_?gO1u ztkwuLfO$??usdO3*uubS$DRP6U1};XS|Awhkd);AQT8nWQI%=`yywh-h=Rjy5Euo9 znGwN3U|@7&1mq$&5tKwx^NOMvMWP6Sn&v$(m1TKZyIJm5W_HDPtF7GjtF*Q?tIcwA zYujxr>+4&~ob&qsJ@1);8E*E6xty6f=e+mleXhUf?cKZCR+iD$sX4ylWJ~8ILi=0M zx%+MUMfu>8ip%0R9W>8|(kRzhh$siCI$4-WW)`HA12~5k?~!^r1B&F=K?aiVL~aWR2p*U&Tm=3+^^W8 z)ZFT-j_FlPzhgmP%O4;TZkF=IS$Q;nt*WV_YDKwJtb8NkHrTz~G*km`KRs55iZ%@` zCp4&;Mw74eT$snZF3j7DPWDhlO-&pAlzZkhwwFO6SzFQGSX)o2{qC%*o?F!{eZOMr z>>68H8Ip%UB+TMFE_bvW;?kTIot+iVv^ay5qGkeAZiv$7L`<9*k)w~2lIiq@GPMux z$5{V>n$k-43!}Isaz+e;yC*0P$!T`87Jy%HX1Ju@>e9vw8>Pqn9ck;?D{~ej{sN0z7f! zz*REC-yVgNQ>?!hv(I9WVBff#4zgNTQsQcSp|QQ9R(c#dg(24P@Q7&Vd%Uo@YHoE} znN`|*sk2j-cAuuov0K!fDBNaHJ106Q(@<4tz%>TcJ3Lpf52~Km-gct1L(Ge3(I;mI z?h}Tc1FPceZLe>`iGTDW!BF)oSSYoB`|UC5WbBC4@ny$`2c^YMo)}A)gvIhRIpNun zkwKNrpKAWbRyL0=m{;hUPIx40y*>K#C{gchs&}x|m1+U0A+gi@$Cz-M+t`>VgvRCx< zig$%26&5BnoGea?gB-o_u+WlkJS^$gKGV_h%v%07F$@(D?P;HQLi0DxXYhcF6_JI0 zKrSC4!FLtAeLONR+0*qhrH7?Dx?!PJr{^$%;UoEve&kOtG>4BG`@*L$j!}Nr{_tYl zxEZyrtGrlSLUn;zy9Gj=PX*aV!`rRt7R>UYJH&< z57z|uiFe&v#2(*UHmOd~3}D=$Zd%xclYpQ@IpF==*g@W&*A`WDBK`@>gVqYx2f!t5 zcBoQRH(biEqBf$7Qp<^z8JpT64MXTmMSdck7cKFb$IefDt zT^k;54|T*!A9YaQcPz=9lZOZTeGuAm1KO8@BOUnMROIQHgvk1tG=to{U$+-Dn03PC z1_^L7b9@5fc!RTuRI!}8R*LE$trg1#Y?_IbwDg^p=xaPWMyfAew(Oo|%gW-c)*P#q z|0T05F+0x@?ue4s8KNA6V}=;=vJ=aAd;XN#@p;mzyz$5cS2(kvdY@cWv#+{c*Ef8qAeU29w4{o%dUuT@7^&)>etk}xc@dhF;B z6ClIoM`n{7`0dJyrY7g&?Cix`s;gO~Vbc8hlPskXgH72%L20$ogQG?Rt2{yMUG91j z9u8%(EkITe#48P45z*x;^Gq|co38i0rRDdor}B+(V|T3;ZtQL^ck*VJeg|*%3f13T zatu)U^WOgL>}S>eT{+P0=+1stec{plg2q3J`S=A^UMO}xKOK}w8Sxga&BClK8Jr{X zum!TE!Pl9j<2%>~;e5F+JN`py#eCf$d{+W2oT0oH$X^`9kpvtSTitJH^E_ zMv|#~WQHuc_zyqGk~Bn|p`OQ1XD2J^$=PF&EA_!KOZff#ele%6z6GA@RqQHGP!Ae6 zEDk7DL5}esu4kDd1V1YiUx$dqEN0~4q@@MDt9pw1Ap<8Ola)9P#KoRPY1Oi%-;M#s zlK)`Kw2Y>q?C2a@Y0=Ptri^Oyu&}sc%9}LDI(lK-LEsiY1Bxin2#viBi*9zw0>w}go zhq++Rn9@aAmaLABjL}zWxl z(4%l`(oMMIPbOims6-d`6zC4I0pk^sM>&k*kFYjDkJCiYi7h=M%}hIcM4ISebAbA0 zq_>FBv1vulvT=ilMH|zC28ZZV^&x|U(u~o=1}`}@`MR```k?^}#*GdcbZen4JV+aW z*^oO|9uyLtlu;HiR6kPwR4WIBgjlk!vt-U48agN>WKihPxtW&hvI;}=xv5T@b!67? z2))@bE><6(7;6a$4UJ8RwdjZ2oT<5LpP4XU>cD+_VI%sgatNUryO0r*r+8}Sxqvtb zDa9?o$QNDTH#L2J(@p1_nzVJ0CT2~b$cq6H94;kuP7@~@Xg#z&&xc7;a8(pQ1i1(M$Zlb@`yfmXREict`u$ZzV9)=xx ziVB5)q~Z9|rN=*{7inh`0l^-dm`b@B5~``Lo+Ekvqp(pQ<6i>5HHKBPm`7d1mLC6z zF2f78;pz{5ccZ`jv4bTF+K5gJ1i8TYG6WNe9sGsLRvWw6 zA4tUNSDI(|veCaSPmAFV$;oA@*U2d}+phc%yL;%kXx(6T7lOWqhP%#0Cl6+S88>a( zifPlXd+Ivz&dlm(c1n7s+-i+UQ}W6WCy%&w<~Y6dihkJ8!NZiin9N~=lShOFvnaZ9 z#Weo23YCHbXr9$_05`B77$eNH0d?6{d zYMvQH-eeK>wg--ruX*K_{qp`E;Ks_{C!ds-BH%^6uUiI_MeG`6FP31Wg@~o73kOYu z{~L5FLPDo4D~IXSm8ps9RQBF~Aa#8D#3bw5kS()MoDeyfGHM*w=m@QUa71j9t%$u# zbVT~n-#Zm~!b#6^_8^ZIF40e+>Nve;~>kJ{`VlNnu_BBBcq+A_-JzZ;5J2;d| z@f3_g89BNgTs-by@*iCJ@*gx`cYC&|zBE^!m!8_J`lfrALF3oUnMPGqdP*VPZ2u(z zKnI?n{guZP_z}Ucs%6TeU4-)kOFyk>k696Jp=9ABjTK-D(jzJ72+bofX+|xcWa*b* zb$bbsk{+w&cjS31?!!rl+S1b%VzX6fWM$>f3?k=kg{32$t3fH?q(t(zoY$6TSTnr_v|3OMJq7>y~o^&>u#~bR-*vz{?;98Yp4I^j%RH z2}FJCfo&+{C&DR(qfi%lkm|>;TQ}Z;eC^M@(ZqK&y+J-@@~8CbGG1w7+NLX9m)%s8 zmR8f0T}@d*tC3ajU_*nPx7OiUizhqY(Sb1k7;;0CzC>Q7homoCTXU^7P3=uJ)@eJB z?5yJ9$gYPRd#FG3>3;2)r@=T9kv#&;f|U4Jky=a_P4MflzkVfE3Y50Qn3M*7tGrK| zxQ?HYwn~Afn0&JM;uh2oZVU}Vy&Z!nN3y9}83>_&fGki9h{#jamFha&MH)dV)!||Q z^Fm-DNR6goXhx!R2LOTmqo4 zaJYPYqiu?_SmJn{@|j`uXhT5(y-ErEqH~(F>jCFRfP%R;Y&%Vp2l|?;yU_M4pzG0) zyd3Zof$>_%CD@s;^HBmY5bQ1i1Y>!iP)SUb!=DfU0r&At|R#xWaX|Et3 zO=&KC!*ffw8S{*I@H%5WU#$Es)`DB$VoR)KX8R15CH$Suxwy14SAA8-#cwa@{Eryl zA>en@1U@Ulrg^%(yZ;9otzN%biBkr)6C8Wk!5Px988gi3>7~%nzhg;DE3?_8oI$Cv z%J(Bug4zj0Fc`oN zkx38GGf^GQn(8fzc5LAw$Fy%`!`Q;G1uc4ktf79@8&eBy{j(qUyhowb^eX<6BVdUWedJ^Em(3+-bWT0Bkkj^@LAj5-De8g)o$ zKS3(QcDT_Ze@Q#imx!E*UTLGQ{D7=cL(ti6cq%iz2V0)6#7bYN_(!wQ2dP*aq>H9~ z+P$9<&JO9g>DhA@^_&IlDU50>29{-dm9IS9dp>;BA^uvuE5nX=%?em={k-ernTeF= zOCbMvYD58M*Xo_FTAjF7FS%=l3kK*c*ebi$72-&H^$EtqXLV8c`>Zf`r_+Apz0P{y z32cK2PoKNF#!8PWwenn_J5tYGqQyjO$@`x0JLs!^9v;@`&Qwp=AuQJz3UKzhzgpu? zOd#B!=!&Y(rpTjoP2@0tjR$N55;ZtUfzg}Tm5k}g%}aC2vx}^0#yQCbxuOj-<8I81sDR66^VOmyu7luxt}e}e8NV-3!Q#Ywd%f{n)x93cF|;2?sD zC6L^q;{=<8R?`zEOrzEv!0lwxvKd>4XE++}YrI}Ao6&GzgFS2b)>SzzpJ2p{!!;)#k?`xcKMYrz7u}(RknRX-kwBxr62NKhX1$+}Om#*jx-X@kJ~N z`{sO5s92$;6WHXWG$F(}ur(?e9X3I*xM8HCPnEDqBEyeFfLxIo?7;ea)}Lax)@?0X zRixBa@0?oPQ8D&~#yidg9}%XX2(ofGkNjasf8KZfK`>%t9|N5`Bh1SC<+cx-B&>(MTf~mGNCh+L=8tu zq~8Xcj%HZof5e=*qw$5Y6&=M>fzY=fWo~Un6<05*%#2RlJZ15Lu#hRvs+r0i)C76- z#^X)%1FAPyR_&_Bsdabr#?{r8s{*tcg;Uoqo~)5kNyhf=JB7NDPs21|GuSb*(09U* zIzCV$dkMMvXCj$uApeO4O0Up6FFk(z$>YbN{+4vgMc^K7IDV8DvX_n?SJ#88*CCw_ z;!xc@~**4JAN!(`!SPO{g=hxaZnbOxPH=_zpdHabp4(l zb=k&J{@cR&-`14=FEE_odiu0lsp&UwUif0Up)5njVMPSakhx=}`G?<#-gV81?z66$RphTpl}W)cDb(kAPoxj2^AnMM@m` zGfHq!?zGvQ;$Wu*zd0=1@x;*)k&1%UJG6e?xQD|r7wvwzekJ$@mBT8L$X21&PNF3B z5kl-H2p_0iX~jSs6y{}+6KrT6mKjbXD(@`shjf!#)09)xK6=OK_M)7onpFBYb;XLQ zy3t{xqiN+;hu66u0cA*K@#sm=qkS46w{fmGzo@-v|qfyWNr4%+3U zr9?}gH1i@05h>_1m|aI2-vH!F2>O5d{h0|?D1cnQck{BLR zY0`fXP}RqG zu=>wy&#yb2#I5WYuar{OKHJW#)cNMO8v8{kw7q&rnqz@l>8B&Bkv`LIl}uO&nQC@5 zyT7cO&*FrH?Uj)hE-x6nTi?6Q|F*xbk%sK}-yL{NcI|sg9I+Vs%w7ozEZCekWJqP; zunoLN%?k2?(MllVuw@? zX{Jl=aM$-~>?0q8G6sT@MWfEp9mZoHfz2)ePW#wFVA=!-G>Zq_20E?;i-caNs{xMi z$H~=UgQsLpQ{R|F+OU8>P6#-qFRWn#7dRA!iIdXWWzi_3ObWssB-L5egBxU zO~z=xBihKOIS(lJ9B}qD)go|&U!ou;Hu%ep2xqAvoKAN9Qg%lN)Fq(3SK*JL{X2N@ zFw`s_^@5rPx*I#3LF_s>f_eaXutI=F}j--7}8D3pWR4s@c*v}70D2oue zZKDmm&S0?^*nY!kzR@||;h64}571BBE%X!AB>2g~x8QsH>YlS|-D#efF;5^e_CHg) zjLuz|>$X2JO>aT)t!a5 z@4hF!G=!?;`1h z=MiWO={o~yA;I8?g`}s1mw=x4?5+q#aNV_XYmEyHS|AWmWc8344P zLabMw)9h8AWm@GYHu$LKeb-LO&Tmz(YeUz^``~Dx)S_q1ZoVAH&0BeTirmm0xU{!Cu$X>dVcz=y z?fM4WShuGQ)OMB$Vuygse6Lfb`kdO@wLky|ea%cri1Gd8>vz-E`nEOccV`!tHO5)r zZu2=)zG3FNnRuL4(V5Tse3BmZo!zbnH#XI+GbF_|6*p~UyL`^|o|`Hy5&CiL(!>y| z%g_RG1zD`)M5t_-XLge3aIl2!(E_8Ir=2}rhuSuMf#_K^hIV6&XmWI$SF2jpR?YUU zFg7FFhSV)dN>SU`>D7oiY8x;kJhY$aN&@il($!1`!cQnYvdfEE+eJ;#B<$<}93{B` z_CR|ugJ*$odd6-~j0w0ArdV^WcrX+EQ*gv~`9>cr1rsl>H!ZmN%{sY+TQuOx;mq-T7l-QAk_;s;8}i!b3`| zH+OElq41z5dD~}40tM1pvZ(JNh6lscEgGbcM--l_sh2g%UYh?j)vvrI4QK0j6c3-D zwPWv&tn&2q@~j*W2+&etf*cdTH+3$n(K&nkZNPsNTb z=Q(z3!Pb|yZhc9m1u>unH-VBFuxt96$X+9`pab;X^)!pXF}+T!W18mO0DUIh=Q+D} zDgUE5(o*}(0ZsjjAVLf&=r2SEZC z!AqdQeb9k00nx4GorssigP&!~mOX1*q25qhK;NySFuH~r;-;8#UOb0-Pa@tPL`Ls> zNAtd2UK-s zgTa@W;BkhXy&KWd<7((_%cDfn>5&1%b0t)i&Ees*%PYvcy`+TwgRD|Q`wi{qMS!}y zjL^E47|izET)WwjQ$n8YB`ia^j}+~sZttL6(r6>eC2BoroQdNT`W0vjAWrpNI)o1B za@#tjrG1uq66&P3Hb7ecin6?Ww2RLr?Xst(Qqjx}>uWb|tX;oh=0?fCuL9-4HS5>c ztlwC(5s$u_=+(wRw+%Q4c0tMoWbdbihToSI|9)r6Lk}fO=Dy05UJH5h$&mIJ=FNM7 zt?bp%L04UVw`)GoTt#UkAh}Xru`!@oWQnuDM1|QX$CIfljgH{B0PtkcC{tJ<3$s(= zKVyI#5X2zrA*wh~MyA_$ayI%$Cq(FcF z{XgTsz0!2PvN8YI%Z=xY2gzxyPI?)Mit5s2Y2BaMp5XBCV7`HM(7W=8J~@~#3=U=o zgOh*HqmZsOik%7PMRFPct%DzZONwQ8^562Sg97hG?v_NjZohqRAaN6JIhIg?Qn7co z_-*#v>-V_dAHci!j92rPt^q*k>%_;o6#(dCmOe=6NkOwFW63AX)oeZ{5E4(=#mm2W?Z! z&Ce z6}5#GZ&$cKd{uFPnJNx&sVz6V!|9xT&f#o#I@>kFtL@>N(u!L*h1;v!Km7T_cG66V zgG<}DZ|5K9;;++Got>TSM0bh(;Xl}~4ndnhz85yP8WJ1^YDggGloZ0iBIB4Q&P1tE zEdFs8kr71`msXu@Fo)NMo5!2=HF{&*sOq$H><`K?#v}xNC8edAuPUEhHK(N|NiXZd zm!8@f3>5KT@v{DOgDH(aSy2&OR8>5rs%l7KO@1)yL$ur@FQ$mx<_YkNg4ZFu;}{~A zm{}%gYY84WMjO-}IUqV_@VWSu1qW-`G15$2XEd^l2}={$MWd1HOzBhW{8NK-qh)!v z3?pZ>DI_i3WS`R*GJCexiW7|W^ny!pfEWIryl{JVNLpNUupuqnm~03)Ryh3aNmCk? z@8(dSb?bM@zm+mmVaEX~MgJA+*@l2XNlKYLJG-BXmG#jEb`eRFL)kZTq?`Jy9vj=c zF>RD;nOzj)JPhli4HAUPmt=^H*jkZ&aXmZr6;J0GU-300Axf=0Lwc6g@<)|&xJa>6 zJi}Gz2fLwSf)3|&OL*`m#)a5z{!$xnlb8fYRYA@rA?FX9pN z?mka5iNH4mCZK~^3nHa|pNTABR#!f&uD-FFeWw1#J`*3VbatIWAe20Tu4SJ&s(Ac1 z0=}b6DW^^qWK~yZ6(~A_>SDSA`?P8Hg6*5ePu{d?GQvloi@6FsC+$7(8578GDwdXb z1!W)wrRN_Xjhba};ynEZP&1Zv9msb{lEOXD#V`(de?nh*&t(%?0etixn7CF+_>u+q zkCYXqw1P{8ZG`~|2l6}yONSAoQPcco9)bAH z`#-Q@t**_4N-Vds)AI?_YyMC0nc`1uLS!F#PLW=#9eo+>my3vfM3=?eEvkMb1V|~} zhiX)WlR+J)9%kA>>O}e?@<)f|iLNp*ZGawkU=dAheu-?K>PU{yoq+|2gM=HJ5^Xq` zIwLne*)i2Fm;6%hkN4zwC;v~P%`wHnLf~dKwh3uKUSAhK%Hb%n`#0V{>WjSfV6ZJJSpsa>>Elv6b&fl z;o{8zE$CAlnp(+;G8h-f@vqtO(B#7{ zQPb1Q$fXPMuHPaz+Zk;NI6$m)Q-aZKk&)N}lNXRLBKd_(*)ImO(5yuL2$>YovRQ+9 z9jXtrVvZ9=LO>X~e@obbW}fwsCtjF6aA# z0{tDx`FoRgj)}tjlU+*ETJtLeV0lEnZ@5~=g0ZemuJkl42R%~cK?j>@@3`aP-kVf z&zyOgRj`W7$TG!WEN?8w1N{bDmft(rS6_xlj3)<_9|OZiDX{bbfI{nz>m(NpPg-|! zR?#eUJ)b)9?-wro9WK(PDHA7taN)vl`AW8(p02_pM>H=_Oyy5C9XZm(pAw$ZNbc_X zP8i$xu|`q$C6v7f+B>rU6Ynm{CT0<$7Yy#*g=4MbUr&xP^iOrsEOp(Vl3gz^aot~^ zogyzmEP?BNem`6CE<4TlvZeIg_wKuzyR(x|ol??Iol4HmPL@t5XDjzDS-fOl#^NRQ zimSe#KClb5y9mS+2<4(n!Xs(#CKVq&VaYQ#%B7wza6OMMNcqP<)b{h0@=HgKyn`I( zRn!5jiaNmcedsjHx?f&` zE}-tnhOmPeiFaY|7ahR&{)!&()>%my7t;NRSr)Giln_DeQAU9ssOMbLDxDBf5~Zyy zQP~S5oEyu_`I}5)GVB58@`2vNC5_@@(gt;!@o{vvN`FU57Po$ca|FGi0 z2fupY0oNB$?Z2h9KKKT?>_c&PTG(rKsADj^{c$G&k|- ze7dxL&9iIpQ0wh|9ffdv20;3reeMdF<-X4K1pD1bU6)aLefE>gWKaKwp+lvOYVS(z zuAgLzC+Y7xEi-xgS0mH8o-22tx7F+1{j0VQN;FRwlfyW{oV&Z(KTj#E-EnAulrJ>nm4DoF=+Kvk4k=AitYiQ*$w9vK&_561;VM)P zN(*rxhNnlC!HoJ9Qp~jkmH{LaltpuDyXFJ!RY*=0$qK|Ye+qvv#uH=Y`KOGzdYF{` zv6T?8LL@_yb<(v!!wa1RZ9e{*zwB)fAH-q?4GX#Q)}Wv{Tdv=;dcyUkA>qRUCJc#* z(P*w;IdbHL$4*Qrat%7<7#1KM+WmcL#{P%X9qsc=<#T(l`W1zQEAJ1{Yc%^mZU1#N8}&Q^FA?sQVQuJZ}exzgdPr9XN3%Bl2&b{H#p51A-LK#+752F$w_ z9)>7BJdzkq&%c}yZRBCmrnZI(>CuXYHj~ZRP@(LtXpjz<@IQKR9O(V5Ia>aWIa-+| z9j;iuyu#^>Hk+ee4~gTEt8!GHX7)okKZs`==c>s1{tgQLX8);i6vhpq|yb(wTUQ#q42KXU_1a_V6!H z$$u9W-Me`kJ0dE&O>Gd>mw1-x;Nxwe97b3uR9me!z@)W|fnR}1FRQK`9=|=+YYiF= zts04+o&|Lz*j$yU%Cp!iz4EN`oPn+4w;QA~sU+^(e8;W1_;(a6dg9a*3;AS6$+&SP zj$0=$iKQ-Fxqtu4g$q~j-@jT)o^pr%!8Q1M(0<31B~L6|_{1dhxN&9U#y!7g z%_r&+>P)tkEY!Oi^`_iIaqvtpL0@~-90XJ)ftZ`>fowt6V8M0ku^wpntt^Zb#_nfV z<1jFNHARt3RCNanHB!CDZJ6M6w!FDA_d2P`k+<^Ad?(sD!I59R`?tHU&u1Zvn)mH% zUZl3_x8n#=W}N!U-(0gsYHEIK_4NlQy!z^dgV(Qqt67;!ZCFcW5H!9k2$B7di>d~e43rFY9J$m8tipHAn zzprUr!K=tQ`DpRUCOD*Sys)L|?TM&A^aovW!2yD1rD9ExMj1?}8qK3tlYEnDA<)t! zy`~8M!QwDM%Sq=^vQ!hE;P)D(v__TbQ{HW)IKjpyHU%&ISd;QDVhTV1oK=4Qxh4X? z@Em^ZJR%Iwp9hoZK9{b*4|qZSz)QIOfi#G3pq#-uu+fzxYvoM88~ort$4Gb!gY<)q zW+X%2b#olBJ}nS!QsK6%&q}ms+Vv5U8oeF4P5mW=%94DK$hiQK63`w-Sp&&G2ToFU ztp!6s;*mWIN{|3}bZPM<%meAo8{`;6wOm!yTry$Aq2!FP&HTyDVZe?X(RfqT(8#Dg zEG}={_z5g-PfX;{5sk}7@bPhGYx1G|_f|C}&mL73)pW>O6~{I;y;~Id$V@){KujF} zq@+^HH%=&FjW<~5Tlw)OrKv3M%{=MW+cRd4;#*dIe}mcj`-;CM8DffyV+=`QdsyY- z!0R#w4SRQ6j3f=eKd)oUHol zQ}gg9{-15zl=B1ujUf^9-upW8W%nb?nzz0JJbZ-o1fiNEaS~p;pPGkV1@iCR_uRCJ zLdMj+TJ>ckzX?AkBoBC(k^n;B$%K;&uZEozgdyj3^0!a0Y3w+gc7ng%Np&LLPSrE3 z*9+5rpd{X;A5Zh&o@T4r=WO*Ue&n=#mO!Q1{$GxWqz|G^-8w{_h?%g$@<3a)x2Dq= z0U@DlA0WuCkr1OnUn#eHTY9lkN;cOS*>R&$`M{heCG!g9g99q2)pxdX^VyHhW%Xur zf>~=VN#hl1X5|c&oX3rIW*Dm5lry|SN@2%y2?DFa#*dcQn?C%|R9|k!pSO-P25ZzQ z^g7s`pm@dFv`UEJ$e17rcRz{5HFBBDh`{Q=_cXtanZZm=>_)oxF0UTVs#&vwZ+oY8 zMe94a1$Q61mR^5-*c+QyY4k;JQYT$)?!LzRaP#YQ&Fh<+ z-3R=7hb?i$h(sIPry`H2Z8?g0cTUW^VZ@t->5RiApw4^X5=gas;rULtNUWlIwY&LAg6b`XQ%F?@wBqYVvVXSd$8|b z;6L)~+2hNVe@puADt+MYjYgl|;Io&riOYpPO|8!$&{rA!fM{f{XK0&kJG+AqmPCVLKtifjmwYyFr)4&Ip30VQ!DDb|>Nlnz3#G)>S9a=`Ro`zsXh*(eWs816t z?0OH!13^nwIYW_B1&wA!PEK1pe_KlKXy6jGsy35J{=`2af)_=N^skN9nRU_ZVidh8 z$JvQoI{bP z^73$lLC2su0A~VEC&%W;P*6fXUt?%{{KW z3iH0&yx{24(ec@Vp;03a-@4#H&6@W+=FF+ME->#i%dMwJgp9A6K5unxRb^nvkdV5k z-yc^M5g0foBqAy?sc_+9?ZlZAmu6WK6H_ya3lH!ws;57Ko4@~?-Bpts?*5tot?ic0 za}F=4nV6k8BqS>*yXC;*Cl{~$^XkMAV*;11{QRz){L99q=ViY>Pir1KX6ey-ez{_N zVti;|Txi6Q(7C(G7zbI;t(zgPfL2L>-Y7QGNDy(b#3m%83Pa{9^p)8dub(yRsj)F8 zQ;h5%8hUEhmG5tsq)@hjU$w;W`_^i$vz{`=D6KJxLr%~7w`$pW3?{Ly{OUhqOrWS@ zOx?B<88V$8!<6-QvxSvQlq6??3%Tfei#%-QEQ5eQ94((!K9dr*Sz?t+`u+!gQTm== z{2>gtIlAXTq`9l`yXz9-Qs}3#I6mVoaJiHnmjq{?odY}+mz@Cy*q32 zhIQq3-Ud8wG`Wo>j;|b#2QVvKe)}}%HQ&QRO!kk3ejR8zsbMga1VV)xn<3_-(9BT8 za~9+dQv1W*5lM*zro5P%bdmTs!XA#B=rb@^;Xi`uOx6P6Ja!#vg_0)?%yJ~%3!DTl zOlHvjXjbKhhgVF?tq4y})9Y=;@+(qxUB3Ulb9IA~!sA8;>g7OPP0oS0Hh%M)%8rp~ zS++~N&9OThS4I2F+Q49gdE)Htqw38;@+bQG)Ime|1JOyc(LPExMzayoc*{zXk#prP z8EEpduGVIo8LEvQqSHAhR`{2->omIBWi6joWSi6GMhq&p*(VMvNed6QwMS$aB6Nj? zskX`6)7o2=K-2o_ySKC-^4HbO-5BkxNN^fV&B^9Kb5Kb7$Y|Iwj*4>ZCbc}gHw@AH zhX&c4{<6as6c{)tV&bS&xu%Tf9nJHrpe5S{4+Fg(xGRi3o(OQnzg*^e&hrG{s<_hS z)0&`luI6>D==BZjg#0L7{mHLZ^S*XG<`{gn03C$EN+fSE7;DhUu(1Pq#ufm>j#a|a zv1H*}$cUO(xNI3cWj_CL`A1Veni9I8{I84H)nQ{p)`z~Ne3!YZd8$c1`t8xCsbdl% zOju4%c6HI&DRU!m?gz{Hk8`JtHgOgfcH6Kq#ZttmVaDo3nMc1rs+}@sRZFJwoyw=E zaTpZU5DR;3DP%4`GWXlbP#A!`IthRd3WNBCH4s4Gg#pqO6*sDmIGN}O0Tf{Y%@fm* zOl{(r0-%}6Lf{b*a!O(0)O5Q&{kFoz#=}V;POY3Zt8yyRBD`D}pHjN&f%xIyMj;rU z?L&0+5@cF62*9)hm-?nRQ+E3|)qYo$YucuD= z@ZyJ+({i5t6w{){<)bOPz{g z&;~h5KQX+Z?d8e|>G2?-Lf&%A>1vEv7DX(D39xmr#@JRSP_U9f81B-m$e#UI%^N{_ zMuL|$(>rJZ<)4nYkPtJ|kXn)+XA29l8!{)28Ce@Gg}7n5fGoJMpdj5V4>f#SDGBvK z!tXK|qN)>}i%awo5&EK~&cx~{sayr;;*YCcD(p*`R|-0_!c6jloI zUQEJw;4O%760uU5D6OXv*KAgpSF>2MZgNK6%$a!^lXclk>iMFm=;*OAG17+W*4D>Y zudcCXXW!s-j-5PfabBsMS(dkC_BYDTc?DB;R_4u<$BY?Qb9=4BT8}@2)qn>(KvzB9 z%HPbs0as?<8x@tDk+*MOUPf|M6#vDp%hW|i;ziY`c<}Hjzj~%$F7Uc&<#=2#?cf!H zC0Y; z^&Vfu4oE-GB9HJ{?}kT@j0_kO9TE}u=lqBA0`S%1i13loiNm8K>*^w-hbKml43BtM zr!(lHl7}bO)j5_~2F1rD8xp>(7wbliZzr2t21c~I)nT5c6DIO;VW?mm5J04a)ggD#GR^&oIUB#X~chMp@3|Z#etm4JFQaer4aL@L{I# z{~3`pxqkAegJWW{~OuB86t$FK0eu&LqxRvHybv*ddUKx=ovw;@W1hysd5BdVZ z%{wbHG6yT4iDbc)n$;&S^6!N{&Nn$SRB~Rt{4n9SfcfSXTqW3H(gq8+0ZQN5(@n~0 zD*;kKi4AB4J$<71sS+F4UB1jN;v5fViYi-E)YJ%Qd;MrrLwkhgS#6K(8&2X?87ZaJ zQ<&2`aKtyhOTOY=Dv(3GqeV0`d_zf8J*QeHLXwWc>_|baK(JLWBT9&X8p^03xSt3( zOF_aBS_$D+M?)fKIgt_ClO38eLo1*37!)}Lp?;&0saZNk*;A1yYZ#vU$xF^vK(DeG z9^ZK|Ow0oCj6NfRZN-cLUhJRlWYq!C{y`Iw(Q{x}Mv3jxC0mKzY_@k0m_*OvQT}hX ztwh;VVw(;6`#qs#U_E#Ffl^-(nypt~h+@^gK%$?B{-f~Z1S(W5o{G-)9U+9kxO3)h z`~oZt0;5q8X*q^%r!aC#DZYc`6MRa2YPn5T%Frq$C|8~Yy`_Zku_7Pr57fRVvELL&2>RCtLE zHY} zo(mM44OZG`G-O&RB*crXpgqSR7t5m`%0=sf+T4Nkd|tGf+BHJR3xaOZtfF?w-ZaxE z3Y$G8%DB|g>KwSMIYt}q#>h>{jt$h!-R)KJj?lwG78S4k^lw)Nc3#KpdiAi#!Y*g^ z?pmQs^UU+uUOfw!HkI;Z_Uczcb-IKoY~P0PQ_3EwCEKCM@Se*-kUojZfdPhIm7eka z&tLYGdT+j?bD;hd#mI+z%O8M_Q0`iTr~`DNShU9edlFg6`|d>kpT0U#LR&q32!^!h z?Ch@xI{?q$SN~n6?(3cdftd5qWOel&03N(H%pNllJ=fXUajky4JaD&lmrWV4VYH(8 zN7yhzQLmC%QyACL#*&&{Ck>)L}fQ!V?G*DvUgj1)7@UvvYX`g z(Y3Vu5H+}TiQPgI)VrNV5fef4!gnj_zq6&3OP78XjRk$7P5Rdn*zP)c);{$+tV;CX z_lyK{=aqod=Fwh%N(yyJvo_-YjG&~+qh3*}z%jBe!ew;Lk{|C<}JjkwUdQ**|@6^@X ziP;{w56PWE%_^en#kyU(oSTbB@AZ$_0#LeJ`tC!~29RX5q5nRVz7)4^ACP#erF2|# zzwe%pl-Hehdk+;*(RI4^ey^Tp$z+my{d5%8{QhXLYm1j;cQTvga-zCT5NY zn6&4NeBQkfdv_<-xtW`b-s`<h6w90LJ@5iQeHsba-vZeCz`J{QKWarx zBF#Zzhl&x5J!xh_3_>wJE)CboLO(6x`^%hZl z+n69U4x&ZgZS)zrUObbh@Na#~_7P%*%3+{-__ChebJN3jW`xl;E@Kz(v%lTDc&`Oc z!D86Nf%$!nc}jdD<|&+SP>fFYX|a1-?PIo*|F5*1^1Ah&wBBt{dC;yl_}slmfBuRc zoXS)7P}$d-z}@mD>C6NIuE(E3r~y=m5x35)TLS?1V;wYQ-NBD;tr=8i^xbBPZ}g~T z-22ZaRSZ>GQ|$R{pYI+_kU;GJV^e zNZM>whvwTppB3aY20{ZMb}YOMxMg`*Vs~w>C7F8HjgZJy9AM06H83CGbI?}yJ-<~A z0O&~{TtSs%TUI6ik7R_D%9@!D&s%s4U2f%ca9ZTq&@f*E5z&!=A5hw z*IXst^HVQ8-~EKH%)M%jFtK`|LHeRfZiNNy2!ypqTLVAjyK6xF+g6#i4XZ?b8<^K2 zoh|V?D&hz!x>PEa%rbk>4)-phDh66F^}+RkOteGn5N`wR&0Tt8QJk9+qc}LB5sr!v zZS+|+LV-am0D26(4X7vXXm`_1@z%3CJ}btXW(2_Vf+P><{e=FaPtHe(H@!LY?ZjO6 zwH{oUWJH12BJ|yJ zxLd}iCb_r!zGklIGr`RC?l|fyDRA+AZ~f3ebezwyhu^>6m)W+M`EFH+1wU zn;|Xj%~gBT0kY3v?#cv}1U*!MKu_-iOvD5RzzOD7M_;p;R5b?=l3EC_JTXj^{~R5P^c0AqeaX0YAInz`9`sZ|S~{@W&8vS0fyPsdMO`qt2I$;Ar~%Ydb);LD zp6K1H-Sl7(>`mxXaDjbwDCC4bC;}2hUuG*#oEWGd>Aqx>5p@T{>$52S|0%+W6I5tV zz|bBu(|a5}`V7Q#LD>drukX%7kQrDih!HRe_1>f0I`uxccdz|j)oDaz$SBAd)^mr4 z9S26pUaXT_gWh|a@1|?rHZ_@|Aj5nm$R3?Yh43AhE)BRJxeLA4R`2Dn6fE@VCPd{= zfFEcPMl=E|JX~ZfFayUUjD$IxT~7|T(A83w9UX=n-W25Gpt`6C5HVoiP$Ec5A4mW4 z$Mw6D^F!z4Y~NmYXHubVX6`nnth2MTl~8r%IksYJ>W$AgBJD;df4h~xO>Zm{5MFoI zm1R$iGv&^ly-oRI&hGl++=)hG&YU^hzv^U9cXqlS#MN-(fIPG*u%WYI)dK1Dc77D0 zAYbsed;4LLcT*BDp5YHl4m9u+&ZM{}w}Xbe_V6}Ag^@)bZ~9DQgm%Cl=wz9fJMqHb z<`La(8R>eM{S<6QB;kKMr7wClo!v3zagPj(ps-=RJ=2qju}L1<1Vk17zfJtY=O?C0hsI1){&M8V5kg<#ttU@X9PP=I>iSdb5b5?` z>Z(H+l@#W#25@Ge(?vuE)sTEsL|Q*jE#90;B~E>l?ta9cHL_9@yjF+syG(@(8wf`+yh)@c;UDcE_fvJcy+p> zr)*h3E{mWzJcJUx-Fdl_S6ogj5#d}aKIzXTZ1iQmQ~s3MSQb#;4?|Q05@{`swe+a1 zxFfCjQb$L-QY$^GmcI&P5{?`LA@J6q9XuU5U&9f@Y0m--Emn$<0;wVanV4n~J*%Rr z3koU=3UahL2Q6;p_q9F!U24&HsfEq1a`ph9mx_Rci-pYao%Dym$$>F}juvO&k~Y4- zO_NZV+ESFZa;4JJg49`C(~4SB3;)y7qK=W;Cn`D+Xf#R4qASc6b*lHQgjf{cs2yP| zav9nG1savVQ;eJFj>||_7Oo8uJ;8sM7R`c`+KCSD{y>%>U-^Z~M%3%CDO-#e#74{+ zHb5OZ+dA=}C^U=*|6O`C8?4OAcOZ4)VH%Z^pE^2}86qrB?SrKlmv~4PzqTF%`P>7Z z+kZV+SnYZh?-j4wICr1)tPRZ(>e`}xNQOy zn!?{A!nGdPZ}!f=tOa-^mADqMmY6i|v=$Ut|5d;u|0PX3UiD0F$&GvWe!Q0}*Hu@y zR99=Q1=i+*G=9Ed?32otJX=AUv^uSz*;??==4K`8_|#{T?)&Jz`<9pIPs7Pb`r7BZ z5+j5a?wL$(7dUJKJ=PV=!n*40XIaVf_*+<3UkiRkpFTLkag$#)%o3ozM&`{5xs+m9-yD~sd}QUHi#YvpfFQ4 zcB+>r>FhjML>@NM*$im8fr1OF!2#?0GC)mmLe1#@f@1J+)!gLtFA7y*W7UG z(S)&M6RICo-}toaPhS6E-to7O=dry}iDMHUemG%lqO}Ttd=}1DuY13GDlSPFJGEM3 zUFSF%@UH-#Rlgil0g z!^yw6FXZfzM_4h{hrf7f>Qw%)dX*XjrS>2Bhlj%kI!55f3Qr%{D-gc`z<2l~BbLD@ zf3>zdCMqDFy2Y+`k(5=3zx0kX9UW(`(94>6kItL-=pX5YP4l#~ObKxJ(hW6Ia=oMh zpTs)O{6ZJt#r5|5M_+w(zId73-HK9AAD~$nck*pl>mDfTod&!B8vD5zcR1ch>Wv8B z!lv5ypbJkXRsBf*!(_h}PQ;n;f9V>}FcI_>AOgTlUUPsA6C?Q`#)ze3Ajc+D(RkvG z-SX&E3?N3anuq=T^P`VG>NS$HJagj)S8Lap%a>^YGcr1T2X-o7{D>IoM=)NCr{a%S zsiP+St7|g+@{d@rQAU4YJ+eTohuh#?PI2yO!hac|xx*-y*N#|;VH9*D<4KVpBGd*E zRRR8(>_EV@gqd(0phYN%)*>CL$*@{8YS!Pnv1qDcXL-lj#E^!tY=hV;T zH~RA@4F2p*eV~6Z-^S(!>iMk(&28J)@O^8x+wBXMu)#|f*zJl&UorRRxfOcZJZfUa z%M}wxnc4lpxxuEIRm`y>!5p48n=f-_Em)!MkN2bgKZyDlpf$gy?yA!y2AsBP((SsR zV7Cy*>>nT?z+sy4QF=yfqMI{m!4^=OH+ey;ML_Vzu|K}eJ+{@Ocb zIa;gPuzelhw+;&Sm4Wb>Cb-|9=`RiH}j}ZWNOFZEM2D311y~y902{f;3HpBH__HIy=EcwfP z0lNjBv}=xPo*EQ)|U6Mf?rM=u9Ud31CIFJQV50`H*{Q%JlvN*Y^ z1j1)2SO{c*g6=>N1+j!kgZ}S&B0~n^h>ftl;*Z@@UALo|o0@klsA-!yZ{AG!bfOsb zP}Kj=QZD{1N2?Z=YChetZ5Sa;T-T&V?Ygb z;Bw)uZ}Na^bfN5-{DFj~GPt%JMo^Q4kq=o?MmT#sg7EC*S@a!X{sH#SzJm}4%ztHt zEC*_(Hx)x#Nl5ki_O~4J?r3A+Cpt$Q&$R!yv-7_nrXe#xG5#n+K=FHWP+)tp%@}(6A{{YZn9^eQNKVt17 z1T~PEC3{vJ5bDrKi?nx6Tj4?LJVPxXt+PQ*6C0Hp&cD!QCg3pI8pXd1wV5MWtRCNf z9-d~@xfY%?r{$WXL*m+zq`0&qd_g0#HLyWQQ?1iHpI?&J!r!Rj$)QGDD2olZ>Txgp zLO0O!&+%6u_-EMA8Ni|5{AI+UPGxzAd#VyX_*7W4s92S;aZ_CZK)#q+`tGq!zbj8}1TkLEp z7V|{)K_)+iSn#=i9w`;Vw(yT91pyQ(#OA_HpLjOCriKtR2rq*q4&+z;@@FLmDI(ES901ve@*6Sm zXDSx8M?K7{`S69x@BHf*d=jXu&7uF zZi5E2QzRQ>V@KQ}xMBc=+(WOIdxRbyD_(f67?_{oh%`h~>qW-t`)tKs(T39E;sxhw z_&JqEck;`sd7WqdN36I~gS^mRj zegs~eE2^qKeBkp3H2(sIxI4hfQR%FxaGEI%rI~-fNra;iCQ*4qV`ztIv{bz6GDCbxY|=~Pd{K{^T>e-A_{6DAQ z=G~3<-p9DfcX~=5c+A}W5rz45o0w1J_lw;R`*x3&jcrEVjes_*nZz#`_D!xe@(WZA zvBZ_HROH7-Hbe7u3EAP7tVxm&lUa9U8Y%$7#XlsM8S&*5jJq? z{G{~MW>@~^Qv=ijfeWsD`414xL}kF=h?wFI*bG%1&{V<>5d-4Uy1F$68S&Txz?*sI zgbbOOd7eX=CfHu?EL!qx!*JyS!HBSs_~|8g#XOHR#`eU-S^O8ak>4t9S5`{fDZjDi z+wv^sLR7;u^+nFfS@IoOy`~0nE$$UOy018I|xmk`a>Ur^1 zWOqsQ^RuhGiY~(&;)O!E{^XO>k3QXdgY0k}67}M>$Bxz<#p77b(@*!@Hz?-&|6|`sMa@trk!N+-TRwO&C-ZyRPwhIL3ZvA>}#*39S%8H z0HudCD^M!@imEDS&Ye5>Oi0M{Y}(<&*QzV~@40i&hgfyb^5+|=u4HRdWht_yKo>&X zF6Ox4cQP2*E>eUO_k|#J&0nf^Rx4-P*zvN)HomhBFjN(7QcCrXsq9^(Fh+Ly`x+|b z1Q-+HXP}XlTZC;VRO*{;Sm2Z0$dF6Y9L}+WPSJsyg+s?V;^eYz?Y3y zf9oee$6afZJ1<|lggzoY2QqSMmI`j3Y-uEqlEExOB!|ufkBb!vM&5(1g55|(YLg-U zA9DwYnNphT5M%(A_goy_)O|IgE^z?%Cbg4sqpSiv9we!k-Q%6bMJz?s(JAG1W>ZEk_mEE{~JH9){BAe`9v~?IpGC}Os2^wTvA0eerkN}e#=HU#w zScEX3SwY^H>L24@9PZAhI1eCx6*e1Rr6O$dhToZ`7W414*2DaZBVIWZ`3@BiM156W zXqh(;HW#8-p4dyh&hQJWkp-+=hSa0D$DuSQ|0Xkx69w`IeK(Ynz5nYJ-lu84K>;6);T#jbFAsv z{OOvwl$5v{L{fRzZ3uEAL9-C%R_j3_lVAqPCt^VWeHNHU^dhBa0FYitc?%0@IKlA| zKp*8X?LyFg&1%k_Xtvh0*Jwge*S4x@Wi!LW9b(j{nvBT~L!1@;I;ePObeX#?{1p0_ zrpJxenz9-^tj^k6b`RA*YUHN>$KIC*HdST+_r8~f&~!=KG$kc%(lkjoy0?MS(0!v& zC=?2{rEH~zVxfW{r3GY{B8!eJ0xBwsIwGz!xZpO-A_6ixpyStZbW~;-M|8$7icK!R z&v`FhL3F-<|JvlemzS4!&%N*7bI(1?=TygLOI<-#QRz^*ih*_zsGIY~>aP2J^@{=k zLRmIAjV!OpeIx)aP57@9pwYoI@2eJc(ilg^ESH2VDDz`VY^H{iL>gLRv>NDca&>zl z>Uy!l*;IFpuY&K=3{er35h^Dn-SFAQ;Xw(NRg-=GH0^d9(xu4t-Yk>IHxr>{u5-2S zzKTkS8twOY70=8omeP|_o^Y`wD%>~Gcq3GK8BznVTjZbD_g1)XdPgT>KU0(rcKqS-$Il+eR$Mh_+Mz#R`17G@b5?ooI+{_M z$%c$w@0b)aZPB!lNsjf$GfOj$Du<3w%PlU>O&fpb;=5j0`oW=T(++*G^o6??Uz}#k z%(U^T*{PGG;^KgomdzfgGt;R5^lwjtPtP-`Jz=+0JBdP4uHw)IQGr-)|3=)sf!dE1 z`Izl4H0g$Q*J-=G>k9D4lZe@}9XMPEiN22p;{Bv+7|7*dERmW2z-H>1pRQ%RzOj{A z+11P0y1L{pG+3J9DZY+c?9S+66YO^R20i0zE#wQz#ztt5qa|%5i~(8j4gg*n;MJ56 z6MK^zLrE&ZK4b9)7=8)t5e&Hp!8ZhQH>Gtox)cFV7!q;~`2~jDq%h9Mz20=|yARdY zKJ@N|^AFXC`Kc-)X>&u;&91_Xj6&Ci^wM;^J|EMGbb$DSE7B9gMkf!;FA7T@6ZT$y z$<&9=e|G+%so34(FQ$lMO2ejP_N+B4t0)5)sTmnXSy}x3-1ad!xubK(boSJ17vzC& zB|UHiW*4YZVAGHrRhl-a)q%b*)9ZAhM*U!|MHR$58LkQ05|h9+C7}`~6ZSfZ14U_U zV`@Q0MnP)pZQ0V_Z8?8V$&Y^HM08O@baZso-ud60y6v`8mwwlw&dd%x@a?w6rw-KA z95}W3kuGs!RAy#=T3WQc;~y={$;Q8XMfOVk_QZ+kh9cY{nm_AaapvD=RpD3ICkM$=kRh>WHjYy2BbP0((g#F7bOB2_2AD@)5tNoaKIU1L6 zIP(?fmE}OCuk<_Mci8VZD1ZvrnT5B*nJVohoId)Dg+68#l@VyK@&ODmHrO*LZI|yK zsItJ-bUN&5VZeOEY?RKTaWQo~>5fV0imp_=u#04)aRFfAfF1`$LN0!Wvvi|$N&^WVRhy$u39mv@*x&7DJ4Rq;(H@v zMCYhz(H;)pP)&61mpjYKFV#d057KBfA)25djoz>zCuqt7?cxcB@JNjq9x>OT(QBO= zy=$A8J4~<9*mI_-G;^mI%3y)e1Q}FeT9v5sydzp8RKsIbR#$vMK!mpXXtg#xKu_Sd z)A+QQa6^zV&J}LZR2EwGD$$kYwuWm(eNse4xGEqaCCgP=t_lirx^kn_^_n16ojmgJ?p6rXMvW7A{!)6Uq+S=yLskr|N{u@OMfRjE`t6I7cYf$c-9 z5jCoiISJ|3)F?ycFl~?~-jE&CR4{F`Hr1Lg2B}oxLDr87v`eo;%4xmM#opHG zAqVO7<;`We?vj>b0A>$dl@1h7g_dZuIht$`wC{Q2^FKRk8yae1U>ZEL<-kVyx&tph7F(&zN2W? z=szi5hsr?>xfxPDBvr4s-}Fc{i@>NotoXCyQ^{USxKb|S8&J9jF%?)FbUVs0*yvzO zK`vMr>|nbwhUhY!c86L?&W=W9n9H8UmR%g8x#;hIQ8VPCzc?c}nEyi;?R_^|$Nv!= z%#5K?!icEQ6fNJU@#ptxwXAW7md)0RHJg>n%}Ndbx4&wW3NL>as98FEI3GT282fDa zaQ1m*q&J!E3sk+O(Yysyd!xVVq*8ejBaD0?9jJzm$B-C8P@>8Q-aybWT#C|XQso!Oc4%8rqlU+ z>u$C9~gVYYWhPU72dH!IFcyYAgcaQC*DNn7D; z4DOH_BX8ONj^BCwt>Zh#`*xl=i;gb}GsNw@si{r7;QakjI`Ke)yZMyoByIUgH_`w$ zEB+|$dU%Z)vdzu#V=?;VF4P?l2bkOruzdn^4l`ydbu5IEpau#MQC)!Q?qxTfTm+D9 z7JJ!got&FeQS|EXs(C(ZXp2{suG@1*m8xvx!=)#t^RfB$_3Mztcj4G{k20+y+&cEX zbJb&uBXVBNW%c|a@78?j;x+p=P91S#`m1&8=yG|jCevqtmY1wLz0_fPgQgYA3y}Ad zw2cWzeyW$*n6gp2pCByPfsmHh#|AlH^^U(jP3S*YPoT|CKpxadC=rBWVwd9ddZ{DT zCVaYj{VMt&J9SJ{cz5U5*5-@*@@qYwFQh-_x*+{cWRELP)VjNAJ?Iwqd7j@rarcBh z-hI+;AA5wOqxPpEM2d)`xM?Z3SYHbf4Wx~R!!9UM;yrlZpNxH;MqwCR>)rju7eopF z!@&Ijk{T6%wYzukmNpVUmG!)Y-CKk)C66bld3~V0R#;woI*zOm^VyMY zR%dU^U2AY9B{1}-EtT&2(9K8{ur{>bZMImlEfzLaLVqQDGrw~M)Hyg9i~`&Jcd

L2g=A>TE^XK2hceNAlUnP!DQNtd@rFLgzwe8CrgNf*x+9N`s-KrqEd zYD_1N-~YNY+`S@B3FqOVUH<*NK|te+`cCCq!ev| z%2IMC>|9CSa)eQrzF-1W6(e~yV!uMLxMjM*uIV0E^4QR?Ve;E1DxCxGFt22$glK{} z!X^9`L*?5BDxD)`ElX&Mafyx$6EsjAXqnr%{7EYb`@l8K3xb*wLh$>Z*y_9M;LWjW zlD&0Ye;5B$dPqkjQAzKB)f}hir&k8qRt@o>HQf0fLlzqzZj$EZ-6K`m#>#Ja2a~7U zIy49nSpj^BchWU!1E#m-REu-^aNdwEas-Gf3h`pPd#txwQj!V*oVU6@=-yQa=a(Q^ z(j@q{h>E%p1@}NvRrPGQvvnpum|m}@$y+5UX*LA;W^bmJ-0;BZD@a+cTC=zEo{FAc zQ8R;gxY(5~{)W>bxd-uH;x?O#y3z=DZ_*`>ctYGSZ3k@%qjH*xUe-bRNnDZ2rOc~M ze?r|449P~%8(cqPm6g+d1T1DZK;P>qgLKAH%_;~{%hFe*06X>`>GLgI%*oz(3r;+u zmX#Ar1#ngKgk0J44?Mh8sJ@oEK}#g5sloxLtB@G|C`05KIRI%;qrQ!$DlG{{zM@fe zLG87{aB@9*hoeg}$C{K9{Mq_LnvUF&D@DGN_3a*JZJ>;ru5J~kQ&!uqrSLop&1|^f zcjY5AKv_QB_v}5jj?B8-590GENhwKEz(5(|@{V;9RhWtvU|kvXNp)!ML|SXW+PqQw1U*coa3_$HMs zaw4g!wnu!HE8o9yUF2g&j!!JKvT8Cn9pKJy&FQ~nlW?(H)MPx;?G3URWYy@nBxyxg z_Idd8sANGZeqoS%`U%1gp!4oGEF8q?fOS8aihf2{-Yd-2iEav>zW|ugl!kLXZ5~w5HFej0V41Lw4 zlE6ckFvkFu%v@J#*`yd7lz>Ydqf4Y@udtsn8>CMz0^RLVLd+ zIo_F{JC!Fize2{!aDf$D_Nw&rCAGM#4j-=3}<8UWC+$@AY?CT25Jn&(z#WcA6D}l~>;F2G zf(s+Y5@vuP^x8$rClwlzv_UfZV-PtBxJ*%(xmT!1*(diMZRy$(?+3il!{`;^7*x}W zb|96`VgyfD>F_;NrIpNr15pgT6bi}tSviUxXO>iT*95)wUurwjC>N(bzHP|UTr=H6 zP(HXoQ=CHJ;t9_mD{D5a-RNVAa6~wFJ5;9aM8{`IwILkHRK=BqVzE)r0a3lXSAJ z%{gx=9(xcghS}18B-t9lXAufCS162S+~5tmSn*=s^;$hDZL<< zeXk4lkfx2e`kC^kU{Y=8R3CilwvEq$SN{rrPwT?E?sfDhfa6OmuEMn<`ab_Fc47&i zKxq~l3{r7QUX!Qac=nRwt~`QGW7 zS%_qvl>Dxc*rT3K1;&_CS(SEI@m(=4xMai@0fWyOB8}u|=@_`?jX^dWXAkFNHCjN= z+QeBPZURp-nm+5pyGI*_O&{!?YilDN>n*sw^~OMZ%L_BBFOT=P9LfOt7A^6crmK-0 zHyCnoyxc-6%fXonkz2AW(PCrV=&p}O;`(*v?TuSp7yntO^lz~*u5{T9%KU?biR72i zR%f%UHc#9#EvN;7lOx8dUzv$>e4!wF#8s%p0nekddiM>>PZz1+I^|zE?F^Hv@BSDk z*Z3DEo6#CmH0i%-SI|1Hl^f3bxuUK!{*Wo0x9lvxtu=^?Sj1jh(*b*2F|hwBqzj>N zfjjZ6q7`Zq(4d_!RXM_`Vz8u|fo7Sf?q1j_rmd#rwEldlG3&#u^izmJZKOGh#pdO1 zM7a)eFouj@59Ro>_2@I3w%G5wrLhevJL^=7s^B4OVk2`+EHx41znzMFri{ra&E4u39>Djfi?)h^tWyzm_Rj< z6ReTA+}xv3O%*dex-~VDe=nn%Y`^~1zl)_W)wf1O?W0RxI>Nk%tPKoFf2Oe9MbAWb z@Ozi8Nz$)_uD9ts@_xf0`X4c0f_mSN5eZ@ST%8YJMWALEwYpZG4umnZ&^;>ms(cK~ z_$fgqL2u_RhqTRn9{cQW$s{Dxs?R8RiQ-+k`bw8$T zN${JVx*aH~E^VrsmW1=_I>(#E;dEnZqdY#ii(36-E2@nX-2%$yr|)WPEo*nkYXK>7 z&Z!3bRxHqdaG&^llCVhTYzdchgf#mQMlq^A6xAx+Z@+m@iFGTz6_mvn>(Ie`tU1-U zhMadT|b%S@!L$NFyu@HAa3GnZs@H=TU2^Ti8sVRR?ZxiRHUhky`ri5#n@44m!v?3Q9Z5y3w`Pm z@^nCf(^2!=Uco%K);~%A7iVi7`JZfIjq?6eT-Q#cU&DAD@d$)=X8Z=~ut@?>A4kpX zVCJky70e%9nRmdl4u_qGE_fg?pR_?Pn~{24_Ecs|L#ncPAD2ig zJf2ez6)c(JompWH2AFRO5V{Y>MbGwS4fp(d%vB4@F83dcr8Eih*SXts&pmSy+VeCu zn!K2Q^_r{Y4e3uA#B8JF|GrxiYYKI`Zh+1;muaK@WI2ECex-Ru&FadVYYh&g^4HmQ zhOIpuW23ne%JzFpGx9X5Y=bg-YKCZD(sc8U4#^@tAC|ytaSpZZmi<=c>?6|92$CO- zw4_z-EXi@Ib~`uzD9)FyhAtU{TIIs8e3|TYdY9F9A7;+})5Cxx->M_2IB6+1??s4q zpEF0Nhw-hIZc}mO1LGgrI6K-FhxlBu@9BVYUE86eS;+c!DPJ~d!Z_l5&96NjX@@kw zG|s2OjLU^s#>>&TbJ{@hz(^&zC>`=iFf31z3N?PFPQ`d#L*6 z=M=9&eFA6>!tH({Pwja3Q(|odR#`8H8rdr;j+O!j5D6b85x3vfiI}y6=5lZ%6D_ z&liGuuUUlh1K~E+#bq%LujTCzZ)xbVj-&3;s7iZi@x6@LeyS;RlfRP0ZB2dd{vyQZ z-ypDf@G8)_;F<>RQ(m$28a?nR8{HZx-42$d;z?hHmdjg^(PpfkR?N`y7mT(_hqkqu z`G2<&jwgU?k6RZ!EtX&Lo_``;=+45+i6-Em`y~eP30{{aqkECHvBenvLyThRUq2yp z70h@(QbHNv)t;w6ADhm!wMgPI-cC_zE8t%MY7#uE&E=~1Z5)94R3Uj)JoJYcE~4pY zll!c^uZW(@hQ>Pi^n!$CX9Lqkur$iRy?Q8l(kLF&b;AOQYqD6=0E4te(M?5@%P((Fs9AL)fY1U^?ZK4 zb4a5?J;T1Oq0B>aQrIz?UiAb1w~-C=J`TL?MJ@umOW`hO%P0I4wK+?(|BsuGIZtVN#dwznZ#f_ERc;hV+s`Cgb}k-u0$WEEZrK zP9^i8$%@GFh!sB7;X9-l^8$SQKDkw7u{1p0&TwVqv~ zu8Gn(GIov_6#EJThogy1PuH)LK>_D+!_)zqFQ7arU^?&oXY37jV~!DXJ<2Jk?xHc>jf zg*i^XUYwud@|MFA>2~gMz)8|0xwmbuOMhz*v8GLzA~)SJX^!T38yyu7yYDzaPRGKF zb75x=aL^$-hKG|JZCz0RGnCTiQ|ihSX8P-EcUb5*gXU{RC85vmzgbLI>@8o{+cfs9 zey?omM(>Y|o5D$r-oZjlr`%6%G*wvD*o&j>j?0hf_Z1c($2Y@c-*JT?aY??LYUf{D z1s~j7po`5Rkk?I~wCN9>t>;y`JEq}2$K_@@p89P{jCGA2O@j8g8=UFhe~u2cczPN6 ziY5^o8Q9IpDU$a_h4Jh1{7TU-AdyEjx*_zPjwPd$`c3mQl#-AMXEV$^(t>8a%6EwhRn~)t?b7 z8YrL2496VnH$LzmD%Q0(DIXvgDWNU2&;HV^R?uP)l|xE-fbTy#aoyx^jc8VqRSDbf+{ivPlV@QB*$Y!=n4e`?JwyTO7U!I(B)cw z@`U4Jv~PXB;FyL*@#b5=LeVV>9!sgdC29@3-}B>?ilNpq@m^h+e34q`q0>yf`yJ)G zvUq35mWs*j0W~;c2$JnibA6IjlxQYkO-s z`t+yh%cie716uN~lWi5Pqs=B|>) zO`8P>a6ZyZy1rGWRvspq#RuB zU&dEKm8WQ$TX;dw{ex)Ts8+=mvAqehS?|geg5=a z$Uxz}N4{GurC$TG*cL&642$4)h58 z4F9^t-Iiklv)EWd3D`IL$5mt)9d34n!SG#?H|Z$~?j60c^RC-&51ir=p3}?J(P2Vun@Mkqz5R{iQHyr?GQtY2wUUBH$u&w$-oV=5 zyC{a~fNmYXY3?_YuD|pqS8&z)VWNrJthW-eGrCk%@8Q61#V*sDpxws&0YRq;&Eu_A zw-*dv#vCb?ur1F41~cX!K$30G5%0BpX3yRX%@=gcKLIsehHeYUC}nRyfK@{r&}Yd# zGU{R%ZQ(`Xk7Kwmf@}8K(g}$>(E!uTJHWO-xJ2SuiJj^dQ&rsvA=G&3FezLIs4x~n z5$rmj|0cmY^j0JgvJWnYIyG{*siV0@bW9htAdCBj1iZQGOq+}mG;8+4I(TTx#Aa;G zH*k7Aio^XAS}JHc%3yw6mRW#gpoT2lNK;#XYXr32*b*zVX+2qI52Bq=aA#!;mHiyt z$Y*6e=8x+rqHvC6o?y@`>ZvPJM{LD21_I^$)LdXt-L?U z1-UA5ww}-bqNCwGEg+?o*7xlD)L#sU=`T(}4a6?m8TPl)eH&~ZoofGWONVp;hF`!py^CO{U$)g z=SNza;_|Hebd~>gVjiUtt<|#|zWp5y0EIv^{whofK!KHcg%mWkV-r5^9Kl!s5)FXF z1fJ;A`#pl^?EwpZm>f&z2hCe&XvM4irQIW#PiU=wbOD1fh?;)a)&KcJMn*nPP*B*n z>EqVFKtx|7CDXA!;nLjqp2#+kXoJP%Vev3nO&* zNTu)L^#m0FpgnY`^B)DAbU_&fjbhO)jX&QSkZZ7%$!h^cvcUXr!lvJ(e{4_UJ(71( zokNcyYtP9JGiFo)hY$Kf8@PbUUjdUH0h8xf}o4<%i}BbHi&{M}6_FLF6qEkV?y&7S-ZxhbUkDa~Z(e2OcHLz+8T>2>*y3sdY8N>1oLZsY`>RU!a`%7N{CWgbZj?APAfawHa>;Pq5 zt@);r{dTY^&waDO@OoWpz|L`E7LV2OolfGF6M>y)v->#6Y|(R|8A{MRN-}S2uj}7_ z(c}7#cG1A@(+wXF&_iUz72fmvj;|&54yPw)>kdXsl-aZ7kZzY2fCd53Wbutp;+-hO zTOm2Wfo?QaehJk&{Ybd(>6Z4IzSv|s*LM=yklUdXcV0K{gFp+5ZYV!R1-U03IW~0@ zo*zf}!)NFCb}nh~?c0EJgH|Wcj`(F4ATM^N#dV)2@%C`wmS&Es_%s8iw48WtK9n3^ljKUdys2{WRIfh`9>j}Dp%4Y3&$_x z4C1NN$CJ{@9XAN%3lYPR6_ckdA^x;Jc(Z^vFCbKW#CHpyJ1?Fp;Pt_E7B3fbIa!?x z3G+#0C{y3tmwX5i#U{Np&rGfI2h zHx7|GG);IVyg9#??i1Qw1Hnw1-rU*sG2gW#SCDU%ZWR%^u09xykD9oxDJbv?> zNL$-Zy}|fFq7m5Xa06oLj8%;n2vY~=!tC4Hr|Dx0~}6m#kuD#>qz~I$IyR-@4mWN?9tt4>6ng3vc(sonPq*D$!R@IhWsPwlb5nT8d)Wf z7==)E4~PC{vFkY6HP#$puA=Ey_V(>hNwaFw<0GiKZ|U9|hSYvuF!qSNgs+{u>9utI zV_%cWZ9Wr+zji86^Lya880k2?N zpF`ohV7BcG#ZYoTZ`}0rgv91D*p!XA{xem5q9xeGHK|cY)tVb=*jpogaR`z-ZBI;pbL14g+6%z1ugr>R8|L=_yYJ zC)wl8Z|m|K-VQbm5fcu5>DP5;=KIvXv`-5{LL55wGao%jR*V&kYa7E z8x%;}0=_Fs4{oh%4pBhKzU6)TnOPf@504i6G>Fu}+>s&3E~pELqr`k1z!LWUWvV}- zjc0n3h~84KNm9(5Uk1ox5H?S&cLZo=tbA$+OKP+k%h1n%T8uc)j*wa@Kkez68GZkG zjP0Z1RVTbZ;jexgk^U_O);!xetn-9V>N~K-p9!|Md0EAM@;0=>Trk|DO2bHb|6Gw8 zz4D;HH;8@uq0_;eHSjScmPOsfgN&tM*qS(ylrIH6W{Wlqf-yHd%TZ3`peLQ6P8t0O zU)#v-zxst;YIRdihX)SbtW7NY1+StAOVUQnXw5tm`kP(jT5x_kx0LuN8@NDRzV!-e zg~)Yhlw!2M<{ic2J5%Dog8^59Uy_&wi!o-hhTeGlnzC_pqLkiw9aI9e5q`@kzov-a z8_&`WL8C(wF0VKAYL&i+3Y`>A=Or$uPPMa>XfMsdUm7Vrqr#~368_N&$%UlfRhOGm zMEMlQG@}kur|i5M9=#SSS;>bJeqDX~t&9%>T(Rb-l$IDZgYCLv(OGd?rV5PILq^O_mlKY!g#`VC)Z zt)GvZKaBG@pg#A1{}HbeTq{LpLLg~wrPpQhhhV8Hnt4=OC$50B+?6! zTF>{#{=}ZN|Gu(j!{~vgU7fpKe_rRx1&$!SRkNhw9zn|h%XmM}-+h9CGd7L1Rxy+T zP3;=wQS`rQ^b+(8DzUnAW$5nwLGU>elvy(|>Nc`=Qw3-a{OQ*=(~|oArTR*=U$+Rq z7Bj9M_D!zz*WQ$|zT$rug?Ihn0pSh7pD;e#G(6iCKHK*XXGpMLS{8n&W+o?e+<$=%0e_($6 zF4VZKfar#Un3Lv@PYe#K$Pjv5N-a)!aYuM z84y8uw_sDa#A+SxYR_gLw)dHAmvI1tLuWxr)MMcNpG;?`Sj;>Al?RC>xFhp;t2qCL z{2u}Y9uW`=ClqvUf4VaZ_eSRw4>X?>irQS=*%{9XB~xB~!#9o>w(3gq>|s!}a*Tku zfqRp4O4^X$9h{=sU@096>iydi@b7hJHY+4$@KrJS**Dy4_hc2xVFTuD%kAriWsY&b z?pcY>pT8yhl=Mqg+uIWG3e$Et*V;hN=g-PKe!` z5f9RxV>XZWUPp$BxBYsO$0`MvLRi`dVExd}2R;EWl=MGQ;)IWwM4^z@$b;@ILQ#Z- zX7=0PHmCdFQehHTGxg~g{T%DFCU@?BIJCi$S zzwWHBbpyV;svYSBiw)e-1~itFsik<}Ghcm7`h`UwU0k9x67 z?(ip-BIyd*yyH?2k5OzBuJEo)9z8OmD|*HF-lZOP;5Nt%rn&U6i#a-Su26{gTzJPN76I?JLyS8@ zzc_ZP@#`n|)p*4-;WF;6o$g&ftr7Yj?O<_lz4Pkrv^#w4Y6=-cp%4$PF0L&y?p;~Z z^0{!I>TGk>%TEh&UuMzI)%ZKd`6=(JE))&k{|4UULg@-6ndoXi#<*0mOnAbrE_?b= zazfdUhcd<0e%!_JCSIev%kHq99-*7cYT`=0(tR~q)vts{*X+YtS))^VufnDC5Ru1?m*h_R6lA?m-pJnVYR{mI;= zT}QZ5zH5K|9g+)JD|(QAV{}#w6Q0t~1FwIM!lCH9>U`^Z-|eP>$yd7G19yn=Ou(0c z^U}-JU045VqNcBe$7H)!>1|&v;M{=wem?rTyz0DHgU!BH25)$hLN;(~KyO3N;4Bvp z4DMfDtfbI^`F*L#f=wi${vqiFvfcUD!5pT2VFh-v%l_E+!DUw zInTzyYPtrf?0ZQbbA6-Df4bPM*Sy=aSB$ZX7XolXq#T1>y6`35)wOvPwS;dd?9nvt zzx#@=2*3n*83wS%!(MvUy;se{Cmz1&-ucbbeLJ01gHdevw0BlgSusoaisM~9m!8{h z&f9%lbg?=kJ?@{m?$-V&&0>#JNQ@upM)+WK?B*4k`s5m_f?VRs zCg+1U+?*NBFN%Nl4Y#?oe;`+iaXIgJxLm%!#_8;b@G04z9Hz~ELTdyklj&Jc6ySVb z_25``?&=riFN*&(i=Hmut6qc-O!9cWE`Q^w2t?9h#NSQqsW)i`xWDOF5otvVy5fWh?A>aT*nXYaGZ-b z^`@&e%;ptFFn}Ih%GtE0IgL4y1~j4>tvHj5=t5tH@f@G>S76>NMpwlp5f~l_$f(-G z5~lGC{kWbBX+=G%Q-wn*O;L(bh6+^WXc}@R9l3$Qyv!_54-hA}-M_V8+~IU~1t`>p zQ4c64i2#wwc#T?*b(NnSqN9iPv7|8`Zb%d&74q@1My`jt!*338jf~=vUiQhcC?S%e z5Ysh!J<`2?JT2BkhVejeny=t5gb|ARq;^BpG{UckjeE;DF6;di_lXGM2TJjyMzPBp z?dJ*ayJR32HC5-%MZhV?uNuiN>P5d#c=wT!T+(|=A0h-CqF*5{Znp`*JwZ3hP%h|= zfZh==#K99;S_^SQj|XM9=GEHNYgps7bS^?fQSHbwuAxDy)7?Qw3k~XNZQKn8ue*vcn}T^+NCke zWzv)v&U*xH3!V^ZlEb4K`zdP+9m3`i75GwyO=%JA6h#veNjkAj5g-LEV`oflA;L1BD|=+g3h{DZh!L7oi!0WEcm1*u7pT& zGV7yA*2a67VlsYi6k~9t?gALkQ8Ky^X-sCdj@W^KSE(+uTX6`FMdGLFhnm3@!T~b5 zI3g9ZK2prE$Kkxd?hre|Oiq=Ng>Z}tQH3x@9y;(tsFKGd8p^EcP@LW@4!j#|;z=!j3E={n zv|(xpQpYx)qn6C+%y&gwJ_xKM{7iS97Zt))YVrsh0vj{_pjVi$h4O|Yd62aM+p+x` z%{6-|geMf@+Q1!9-osm*u0w*R$j5oS7Kp|58FZzz3?_u9WKfR>1F}QwJ8q?-OlF?q zT*W88b%S5&$Kf)P5WXP~t$5zY8*&zNuhu)<<`AxC5?g)r<8vl`sjVq1A$&;z&f{5D z_$qb$#QmJCDJw6X;w+xxFOTjxV^6( z2p_P(p-Oz)n9FP2!I_lT%4m?unSngc1g7y5E7@Z?HT64RFo{vzOE+3`1Uc$N zAtFN#M{+vdc!=>#O&BlsY6pKYhYuLXU^>&33R)Tu_xDBticywI96>E=Q=P*&gc20g ziiQy4pm 0 ? enclosing.height-(enclosing.height*fullness) : 0 + width: parent.width + height: (enclosing.height*fullness) + // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; + color: fullness > 0.9 ? red : "white"; + border.width: 3 + border.color: "white" + } + + Rectangle { + id: bubble + x: -(width-enclosing.width)/2 + y: enclosing.height + height: 100 + width: 100 + radius: width/2 + color: fullness > 0.9 ? red : "white" + border.width: 3 + } + + + Rectangle { + id: bubblebg + x: enclosing.x + y: bubble.y - enclosing.radius/2 - 1 + // radius: level.radius + height: 50 + width: enclosing.width + color: bubble.color + } +} diff --git a/build/content/TemperatureIsland.qml b/build/content/TemperatureIsland.qml new file mode 100644 index 0000000..97c4c46 --- /dev/null +++ b/build/content/TemperatureIsland.qml @@ -0,0 +1,70 @@ +import QtQuick + +Item { + width: 500 + height: 250 + + property int packTemp: 0 + property int mcTemp: 0 + property int motorTemp: 0 + readonly property int padding: 10 + readonly property int horizSpacing: 35 + readonly property int sliderWidth: 55 + + + Rectangle { + x: 0 + y: 0 + radius: 0 + width: parent.width + height: parent.height + color: "transparent" + border.width: 2 + border.color: "white" + + FullSlider { + id: packSlider + x: 3*padding + y: 15 + label: "PACK" + fullness: packTemp / 70 + value: packTemp + imageUrl: "Pictures/battery_temp.svg" + imageWidth: 35 + imageHeight: 30 + } + + FullSlider { + id: mcSlider + x: packSlider.x + horizSpacing + sliderWidth + y: packSlider.y + label: "MC" + fullness: mcTemp / 100 + value: mcTemp + imageUrl: "Pictures/controller_temp.svg" + imageWidth: 30 + imageHeight: 30 + } + + FullSlider { + id: motorSlider + x: mcSlider.x + horizSpacing + sliderWidth + y: packSlider.y + label: "MOTOR" + fullness: motorTemp / 115 + value: motorTemp + imageUrl: "Pictures/motor_temp.svg" + imageWidth: 30 + imageHeight: 25 + } + + // Redline + // Rectangle { + // x: 25 + // y: 13 + // width: 200 + // height: 3 + // color: "red" + // } + } +} \ No newline at end of file diff --git a/build/content/cmake_install.cmake b/build/content/cmake_install.cmake new file mode 100644 index 0000000..03a3c53 --- /dev/null +++ b/build/content/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/content/content_qml_module_dir_map.qrc b/build/content/content_qml_module_dir_map.qrc new file mode 100644 index 0000000..c22c2b3 --- /dev/null +++ b/build/content/content_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/content + + + diff --git a/build/content/contentplugin_contentPlugin.cpp b/build/content/contentplugin_contentPlugin.cpp new file mode 100644 index 0000000..ab03b9d --- /dev/null +++ b/build/content/contentplugin_contentPlugin.cpp @@ -0,0 +1,32 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + +QT_DECLARE_EXTERN_RESOURCE(qmlcache_content); +QT_DECLARE_EXTERN_RESOURCE(qmake_content); +QT_DECLARE_EXTERN_RESOURCE(content_raw_qml_0); + + +QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_content); + +class contentPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +QT_KEEP_SYMBOL(qml_register_types_content); +QT_KEEP_RESOURCE(qmlcache_content); +QT_KEEP_RESOURCE(qmake_content); +QT_KEEP_RESOURCE(content_raw_qml_0); + } +}; + + + +#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_contentPlugin_in.cpp b/build/content/contentplugin_contentPlugin_in.cpp new file mode 100644 index 0000000..25fb635 --- /dev/null +++ b/build/content/contentplugin_contentPlugin_in.cpp @@ -0,0 +1,36 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + +$<$>:QT_DECLARE_EXTERN_RESOURCE($,); +QT_DECLARE_EXTERN_RESOURCE(>);> +$<$>:QT_DECLARE_EXTERN_RESOURCE($,); +QT_DECLARE_EXTERN_RESOURCE(>);> + + +$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> + +class contentPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +$<$:QT_KEEP_SYMBOL($);> +$<$>:QT_KEEP_RESOURCE($,); +QT_KEEP_RESOURCE(>);> +$<$>:QT_KEEP_RESOURCE($,); +QT_KEEP_RESOURCE(>);> + } +}; + + + +#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_init.cpp b/build/content/contentplugin_init.cpp new file mode 100644 index 0000000..9e80ed4 --- /dev/null +++ b/build/content/contentplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(contentPlugin) diff --git a/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf b/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf new file mode 100755 index 0000000000000000000000000000000000000000..a26a052bd8056f90ad900fca7018b0479bd42dab GIT binary patch literal 2308356 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 R(w7qQGV0P<^fU@Nh=Vb9x;dwU^plGr+= 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

Mei16uWACBv@5C2?(F&`U&OFNh{ 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�fcgtL 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 XZ`peb_k>pRg|kEHr~ls{Wq~ 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 literal 0 HcmV?d00001 diff --git a/build/content/meta_types/qt6content_debug_metatypes.json b/build/content/meta_types/qt6content_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/content/qmldir b/build/content/qmldir new file mode 100644 index 0000000..62199ff --- /dev/null +++ b/build/content/qmldir @@ -0,0 +1,28 @@ +module content +linktarget contentplugin +optional plugin contentplugin +classname contentPlugin +typeinfo content.qmltypes +prefer :/content/ +App 1.0 App.qml +Screen01 1.0 Screen01.ui.qml +Speedometer 1.0 Speedometer.qml +BatterySlider 1.0 BatterySlider.qml +TempSlider 1.0 TempSlider.qml +Debug1 1.0 Debug1.qml +BoltLeanAngle 1.0 BoltLeanAngle.qml +BikeStatus 1.0 BikeStatus.qml +BatteryReadout 1.0 BatteryReadout.qml +FullBatterySlider 1.0 FullBatterySlider.qml +TemperatureIsland 1.0 TemperatureIsland.qml +FullSlider 1.0 FullSlider.qml +BMSFaultDetails 1.0 BMSFaultDetails.qml +DebugItem1 1.0 DebugItem1.ui.qml +FaultMotorStatus 1.0 FaultMotorStatus.qml +SpeedometerDecorations 1.0 SpeedometerDecorations.qml +DebugMain 1.0 DebugMain.qml +DebugMotor 1.0 DebugMotor.qml +DebugOverview 1.0 DebugOverview.qml +DebugBMS 1.0 DebugBMS.qml +DebugPDU 1.0 DebugPDU.qml + diff --git a/build/content/qmltypes/content_foreign_types.txt b/build/content/qmltypes/content_foreign_types.txt new file mode 100644 index 0000000..c8f0862 --- /dev/null +++ b/build/content/qmltypes/content_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc new file mode 100644 index 0000000..8bf9280 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc @@ -0,0 +1,9 @@ + + + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + + + diff --git a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc new file mode 100644 index 0000000..eb6ebe5 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir + + + diff --git a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp new file mode 100644 index 0000000..96bcd11 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp @@ -0,0 +1,8 @@ +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +/Bolt_Dash/Constants.qml +/Bolt_Dash/DirectoryFontLoader.qml +/Bolt_Dash/EventListModel.qml +/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp new file mode 100644 index 0000000..af759c0 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp @@ -0,0 +1,13 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp new file mode 100644 index 0000000..7f12564 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp @@ -0,0 +1,15 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +--json +/Users/mason/Documents/Code/dash-cpp/build/Bolt_Dash_qmllint.json diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp new file mode 100644 index 0000000..60410c3 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp @@ -0,0 +1,10 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +--module +Bolt_Dash diff --git a/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp b/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp new file mode 100644 index 0000000..f9ae3a8 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp @@ -0,0 +1,14 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: BSD-3-Clause + +// This file was generated by the qt_add_resources command. + +#include + +QT_DECLARE_EXTERN_RESOURCE(Bolt_Dash_raw_qml_0) + +namespace { + struct resourceReferenceKeeper { + resourceReferenceKeeper() { QT_KEEP_RESOURCE(Bolt_Dash_raw_qml_0); } + } resourceReferenceKeeperInstance; +} diff --git a/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp b/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp new file mode 100644 index 0000000..7242029 --- /dev/null +++ b/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp @@ -0,0 +1,14 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: BSD-3-Clause + +// This file was generated by the qt_add_resources command. + +#include + +QT_DECLARE_EXTERN_RESOURCE(qmake_Bolt_Dash) + +namespace { + struct resourceReferenceKeeper { + resourceReferenceKeeper() { QT_KEEP_RESOURCE(qmake_Bolt_Dash); } + } resourceReferenceKeeperInstance; +} diff --git a/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc b/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc new file mode 100644 index 0000000..bd21939 --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash + + + diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp new file mode 100644 index 0000000..596d922 --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp @@ -0,0 +1,32 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + +QT_DECLARE_EXTERN_RESOURCE(qmlcache_Bolt_Dash); +QT_DECLARE_EXTERN_RESOURCE(qmake_Bolt_Dash); +QT_DECLARE_EXTERN_RESOURCE(Bolt_Dash_raw_qml_0); + + +QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_Bolt_Dash); + +class Bolt_DashPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +QT_KEEP_SYMBOL(qml_register_types_Bolt_Dash); +QT_KEEP_RESOURCE(qmlcache_Bolt_Dash); +QT_KEEP_RESOURCE(qmake_Bolt_Dash); +QT_KEEP_RESOURCE(Bolt_Dash_raw_qml_0); + } +}; + + + +#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp new file mode 100644 index 0000000..c71ed27 --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp @@ -0,0 +1,36 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + +$<$>:QT_DECLARE_EXTERN_RESOURCE($,); +QT_DECLARE_EXTERN_RESOURCE(>);> +$<$>:QT_DECLARE_EXTERN_RESOURCE($,); +QT_DECLARE_EXTERN_RESOURCE(>);> + + +$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> + +class Bolt_DashPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +$<$:QT_KEEP_SYMBOL($);> +$<$>:QT_KEEP_RESOURCE($,); +QT_KEEP_RESOURCE(>);> +$<$>:QT_KEEP_RESOURCE($,); +QT_KEEP_RESOURCE(>);> + } +}; + + + +#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp new file mode 100644 index 0000000..7e5749c --- /dev/null +++ b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp @@ -0,0 +1,2 @@ +#include +Q_IMPORT_PLUGIN(Bolt_DashPlugin) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake new file mode 100644 index 0000000..5dbeca3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake @@ -0,0 +1,37 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make new file mode 100644 index 0000000..8b8e7da --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make @@ -0,0 +1,342 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes + +imports/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate imports/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/qmldir +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp --name qmake_Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_Dash -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/Constants.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/DirectoryFontLoader.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListModel.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/qmldir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Running rcc for resource Bolt_Dash_raw_qml_0" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp --name Bolt_Dash_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc + +imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Running AUTOMOC file extraction for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp > CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s + +# Object files for target Bolt_Dash +Bolt_Dash_OBJECTS = \ +"CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" \ +"CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + +# External object files for target Bolt_Dash +Bolt_Dash_EXTERNAL_OBJECTS = + +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make +imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Linking CXX static library libBolt_Dash.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dash.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build: imports/Bolt_Dash/libBolt_Dash.a +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/Bolt_Dash.qmltypes +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake new file mode 100644 index 0000000..7b1de49 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake @@ -0,0 +1,43 @@ +file(REMOVE_RECURSE + ".rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" + ".rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" + ".rcc/qrc_Bolt_Dash_raw_qml_0.cpp" + ".rcc/qrc_qmake_Bolt_Dash.cpp" + "Bolt_Dash_autogen" + "CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt" + "Bolt_Dash.qmltypes" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" + "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" + "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" + "bolt_dash_qmltyperegistrations.cpp" + "libBolt_Dash.a" + "libBolt_Dash.pdb" + "meta_types/Bolt_Dash_json_file_list.txt" + "meta_types/Bolt_Dash_json_file_list.txt.timestamp" + "meta_types/qt6bolt_dash_debug_metatypes.json" + "meta_types/qt6bolt_dash_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..bff356f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libBolt_Dash.a" +) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make new file mode 100644 index 0000000..25601d2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts new file mode 100644 index 0000000..1271544 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make new file mode 100644 index 0000000..1044e3c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make new file mode 100644 index 0000000..5d07a6e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt new file mode 100644 index 0000000..8cd46de --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dash.a CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dash.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make new file mode 100644 index 0000000..4ce8023 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make @@ -0,0 +1,22 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 1 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = 2 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 3 +CMAKE_PROGRESS_7 = 4 +CMAKE_PROGRESS_8 = +CMAKE_PROGRESS_9 = 5 +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = 6 +CMAKE_PROGRESS_12 = +CMAKE_PROGRESS_13 = 7 +CMAKE_PROGRESS_14 = 8 +CMAKE_PROGRESS_15 = +CMAKE_PROGRESS_16 = 9 +CMAKE_PROGRESS_17 = +CMAKE_PROGRESS_18 = 10 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = 11 +CMAKE_PROGRESS_21 = 12 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..f54014c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json @@ -0,0 +1,127 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/deps", + "DEP_FILE_RULE_NAME" : "Bolt_Dash_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..67099ed --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/Bolt_Dash/Bolt_Dash_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dash_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make new file mode 100644 index 0000000..e3e6d83 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp + +imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp + +Bolt_Dash_autogen: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make +.PHONY : Bolt_Dash_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build: Bolt_Dash_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..57e8aa6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "Bolt_Dash_autogen/mocs_compilation.cpp" + "Bolt_Dash_autogen/timestamp" + "CMakeFiles/Bolt_Dash_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..a5fe86e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..22459ea --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make new file mode 100644 index 0000000..e9ac291 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 18 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..3acae9f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make + +Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make +.PHONY : Bolt_Dash_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build: Bolt_Dash_autogen_timestamp_deps +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..b8f91e2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..8e69d79 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..e8de022 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make new file mode 100644 index 0000000..99bbdbe --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp + +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make +.PHONY : Bolt_Dash_qmllint + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build: Bolt_Dash_qmllint +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..463a13e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..5f5570c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..112cb0c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make new file mode 100644 index 0000000..b35949e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint_json. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp + +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make +.PHONY : Bolt_Dash_qmllint_json + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build: Bolt_Dash_qmllint_json +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..b86f4a9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..28c8d6d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..2bb34d5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_json. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make new file mode 100644 index 0000000..c5fecc6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make @@ -0,0 +1,92 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmllint_module. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /opt/homebrew/bin/qmllint +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp + +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make +.PHONY : Bolt_Dash_qmllint_module + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build: Bolt_Dash_qmllint_module +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..1b59bb9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..473476b --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..a08bc79 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_module. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..a5de929 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/Bolt_Dash/Bolt_Dash_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dash_autogen/deps" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..c8ab7da --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make @@ -0,0 +1,129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes + +imports/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate imports/Bolt_Dash/Bolt_Dash.qmltypes + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json + +imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include + +imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target Bolt_Dash" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp + +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash.qmltypes +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make +.PHONY : Bolt_Dash_qmltyperegistration + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build: Bolt_Dash_qmltyperegistration +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..4fa774e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "Bolt_Dash.qmltypes" + "Bolt_Dash_autogen/mocs_compilation.cpp" + "Bolt_Dash_autogen/timestamp" + "CMakeFiles/Bolt_Dash_qmltyperegistration" + "bolt_dash_qmltyperegistrations.cpp" + "meta_types/Bolt_Dash_json_file_list.txt" + "meta_types/Bolt_Dash_json_file_list.txt.timestamp" + "meta_types/qt6bolt_dash_debug_metatypes.json" + "meta_types/qt6bolt_dash_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..83877ca --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..d1aa310 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_qmltyperegistration. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..f21ffe6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 19 +CMAKE_PROGRESS_3 = 20 +CMAKE_PROGRESS_4 = +CMAKE_PROGRESS_5 = 21 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake new file mode 100644 index 0000000..8b56538 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make new file mode 100644 index 0000000..5cda9a3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -MF CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp > CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s + +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make +.PHONY : Bolt_Dash_resources_1 + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build: Bolt_Dash_resources_1 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake new file mode 100644 index 0000000..c9da9b5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" + "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make new file mode 100644 index 0000000..9f34916 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts new file mode 100644 index 0000000..1471eb2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_1. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make new file mode 100644 index 0000000..3e9abce --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash_resources_1. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make new file mode 100644 index 0000000..c78a5b8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake new file mode 100644 index 0000000..50d4f3d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make new file mode 100644 index 0000000..75415b0 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make @@ -0,0 +1,101 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -MF CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp > CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s + +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make +.PHONY : Bolt_Dash_resources_2 + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build: Bolt_Dash_resources_2 +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake new file mode 100644 index 0000000..be13a64 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake @@ -0,0 +1,9 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" + "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make new file mode 100644 index 0000000..421a8fa --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dash_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts new file mode 100644 index 0000000..26925a3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_2. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make new file mode 100644 index 0000000..9d32419 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dash_resources_2. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make new file mode 100644 index 0000000..c78a5b8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make new file mode 100644 index 0000000..9e6c9ba --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 22 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make new file mode 100644 index 0000000..9e7e727 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make @@ -0,0 +1,103 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dash_tooling. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make + +imports/Bolt_Dash/Constants.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying Constants.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml + +imports/Bolt_Dash/DirectoryFontLoader.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying DirectoryFontLoader.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml + +imports/Bolt_Dash/EventListModel.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying EventListModel.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml + +imports/Bolt_Dash/EventListSimulator.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying EventListSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml" + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml + +Bolt_Dash_tooling: imports/Bolt_Dash/Constants.qml +Bolt_Dash_tooling: imports/Bolt_Dash/DirectoryFontLoader.qml +Bolt_Dash_tooling: imports/Bolt_Dash/EventListModel.qml +Bolt_Dash_tooling: imports/Bolt_Dash/EventListSimulator.qml +Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make +.PHONY : Bolt_Dash_tooling + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build: Bolt_Dash_tooling +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake new file mode 100644 index 0000000..180e064 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "Constants.qml" + "DirectoryFontLoader.qml" + "EventListModel.qml" + "EventListSimulator.qml" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make new file mode 100644 index 0000000..f1a0682 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dash_tooling. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts new file mode 100644 index 0000000..fed7193 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dash_tooling. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make new file mode 100644 index 0000000..b3c9864 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 23 +CMAKE_PROGRESS_3 = 24 +CMAKE_PROGRESS_4 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..df41ca9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make new file mode 100644 index 0000000..dc6d9fa --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s + +# Object files for target Bolt_Dashplugin +Bolt_Dashplugin_OBJECTS = \ +"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + +# External object files for target Bolt_Dashplugin +Bolt_Dashplugin_EXTERNAL_OBJECTS = + +imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make +imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libBolt_Dashplugin.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dashplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build: imports/Bolt_Dash/libBolt_Dashplugin.a +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..63e5451 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_autogen" + "CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" + "libBolt_Dashplugin.a" + "libBolt_Dashplugin.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..7029119 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libBolt_Dashplugin.a" +) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make new file mode 100644 index 0000000..6c17ab3 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dashplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..7866f98 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make new file mode 100644 index 0000000..8c10503 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dashplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make new file mode 100644 index 0000000..820a575 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt new file mode 100644 index 0000000..540c37a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dashplugin.a CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dashplugin.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make new file mode 100644 index 0000000..aefacce --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 25 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 26 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..5b9c32f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,132 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/deps", + "DEP_FILE_RULE_NAME" : "Bolt_Dashplugin_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "-Muri=Bolt_Dash" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..4a4b34f --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dashplugin_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make new file mode 100644 index 0000000..6be7c41 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen: imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp + +imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp + +Bolt_Dashplugin_autogen: imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make +.PHONY : Bolt_Dashplugin_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build: Bolt_Dashplugin_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..db9b29a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_autogen/mocs_compilation.cpp" + "Bolt_Dashplugin_autogen/timestamp" + "CMakeFiles/Bolt_Dashplugin_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..77a2a8d --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..fe735a7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..151f64e --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp + +Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps +Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build: Bolt_Dashplugin_autogen_timestamp_deps +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..3299c3a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..193fce2 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..dbc0b2a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake new file mode 100644 index 0000000..09a6a7c --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make new file mode 100644 index 0000000..8917328 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make @@ -0,0 +1,116 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s + +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make +.PHONY : Bolt_Dashplugin_init + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build: Bolt_Dashplugin_init +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake new file mode 100644 index 0000000..6a9b604 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_init_autogen" + "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt" + "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" + "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make new file mode 100644 index 0000000..88959e8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Bolt_Dashplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts new file mode 100644 index 0000000..31dd117 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin_init. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make new file mode 100644 index 0000000..086af44 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Bolt_Dashplugin_init. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make new file mode 100644 index 0000000..c7656c9 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make new file mode 100644 index 0000000..8791cb6 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 27 +CMAKE_PROGRESS_2 = 28 + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..460267a --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json @@ -0,0 +1,135 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/deps", + "DEP_FILE_RULE_NAME" : "Bolt_Dashplugin_init_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB", + "QT_STATICPLUGIN" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..94fc314 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make new file mode 100644 index 0000000..1707870 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_init_autogen. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp + +imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin_init" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp + +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make +.PHONY : Bolt_Dashplugin_init_autogen + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build: Bolt_Dashplugin_init_autogen +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..1b02a03 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" + "Bolt_Dashplugin_init_autogen/timestamp" + "CMakeFiles/Bolt_Dashplugin_init_autogen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b7a01da --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..b0d50c8 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..61aecdd --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for Bolt_Dashplugin_init_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp + +Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps +Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build: Bolt_Dashplugin_init_autogen_timestamp_deps +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean + +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..1ede4ea --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..f5c74f7 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..a7fa8eb --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..05e27f5 --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Bolt_Dash/CMakeFiles/progress.marks b/build/imports/Bolt_Dash/CMakeFiles/progress.marks new file mode 100644 index 0000000..209e3ef --- /dev/null +++ b/build/imports/Bolt_Dash/CMakeFiles/progress.marks @@ -0,0 +1 @@ +20 diff --git a/build/imports/Bolt_Dash/Constants.qml b/build/imports/Bolt_Dash/Constants.qml new file mode 100644 index 0000000..6c20441 --- /dev/null +++ b/build/imports/Bolt_Dash/Constants.qml @@ -0,0 +1,29 @@ +pragma Singleton +import QtQuick 6.2 +// import QtQuick.Studio.Application + +QtObject { + readonly property int width: 800 + readonly property int height: 480 + + property string relativeFontDirectory: "fonts" + + /* Edit this comment to add your custom font */ + readonly property font font: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize + }) + readonly property font largeFont: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize * 1.6 + }) + + readonly property color backgroundColor: "#000000" + readonly property color textColor: "#ffffff" + readonly property color errColor: "#ff0000" + + + /*property StudioApplication application: StudioApplication { + fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + }*/ +} diff --git a/build/imports/Bolt_Dash/DirectoryFontLoader.qml b/build/imports/Bolt_Dash/DirectoryFontLoader.qml new file mode 100644 index 0000000..aa22eac --- /dev/null +++ b/build/imports/Bolt_Dash/DirectoryFontLoader.qml @@ -0,0 +1,34 @@ +// Copyright (C) 2019 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import Qt.labs.folderlistmodel 6.2 + +QtObject { + id: loader + + property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + property string relativeFontDirectory: "fonts" + + function loadFont(url) { + var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', + loader, + "dynamicFontLoader"); + } + + property FolderListModel folderModel: FolderListModel { + id: folderModel + folder: loader.fontDirectory + nameFilters: [ "*.ttf", "*.otf" ] + showDirs: false + + onStatusChanged: { + if (folderModel.status == FolderListModel.Ready) { + var i + for (i = 0; i < count; i++) { + loadFont(folderModel.get(i, "fileURL")) + } + } + } + } +} diff --git a/build/imports/Bolt_Dash/EventListModel.qml b/build/imports/Bolt_Dash/EventListModel.qml new file mode 100644 index 0000000..bd5e5c3 --- /dev/null +++ b/build/imports/Bolt_Dash/EventListModel.qml @@ -0,0 +1,15 @@ +// Copyright (C) 2018 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 + +ListModel { + id: eventListModel + + ListElement { + eventId: "enterPressed" + eventDescription: "Emitted when pressing the enter button" + shortcut: "Return" + parameters: "Enter" + } +} diff --git a/build/imports/Bolt_Dash/EventListSimulator.qml b/build/imports/Bolt_Dash/EventListSimulator.qml new file mode 100644 index 0000000..b7724cb --- /dev/null +++ b/build/imports/Bolt_Dash/EventListSimulator.qml @@ -0,0 +1,25 @@ +// Copyright (C) 2018 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only + +import QtQuick 6.2 +import QtQuick.Studio.EventSimulator 1.0 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: simulator + property bool active: true + + property Timer __timer: Timer { + id: timer + interval: 100 + onTriggered: { + EventSimulator.show() + } + } + + Component.onCompleted: { + EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) + if (simulator.active) + timer.start() + } +} diff --git a/build/imports/Bolt_Dash/Makefile b/build/imports/Bolt_Dash/Makefile new file mode 100644 index 0000000..7aaaece --- /dev/null +++ b/build/imports/Bolt_Dash/Makefile @@ -0,0 +1,820 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule + +# Convenience name for target. +Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule +.PHONY : Bolt_Dash + +# fast build rule for target. +Bolt_Dash/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build +.PHONY : Bolt_Dash/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule + +# Convenience name for target. +Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule +.PHONY : Bolt_Dash_qmltyperegistration + +# fast build rule for target. +Bolt_Dash_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build +.PHONY : Bolt_Dash_qmltyperegistration/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule +.PHONY : Bolt_Dash_resources_1 + +# fast build rule for target. +Bolt_Dash_resources_1/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build +.PHONY : Bolt_Dash_resources_1/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule + +# Convenience name for target. +Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule +.PHONY : Bolt_Dashplugin + +# fast build rule for target. +Bolt_Dashplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build +.PHONY : Bolt_Dashplugin/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule +.PHONY : Bolt_Dash_qmllint + +# fast build rule for target. +Bolt_Dash_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build +.PHONY : Bolt_Dash_qmllint/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule +.PHONY : Bolt_Dash_qmllint_json + +# fast build rule for target. +Bolt_Dash_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build +.PHONY : Bolt_Dash_qmllint_json/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule + +# Convenience name for target. +Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule +.PHONY : Bolt_Dash_qmllint_module + +# fast build rule for target. +Bolt_Dash_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build +.PHONY : Bolt_Dash_qmllint_module/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule + +# Convenience name for target. +Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule +.PHONY : Bolt_Dash_resources_2 + +# fast build rule for target. +Bolt_Dash_resources_2/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build +.PHONY : Bolt_Dash_resources_2/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule +.PHONY : Bolt_Dashplugin_init + +# fast build rule for target. +Bolt_Dashplugin_init/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build +.PHONY : Bolt_Dashplugin_init/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dash_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dash_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dash_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule + +# Convenience name for target. +Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule +.PHONY : Bolt_Dash_autogen + +# fast build rule for target. +Bolt_Dash_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build +.PHONY : Bolt_Dash_autogen/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dashplugin_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dashplugin_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule +.PHONY : Bolt_Dashplugin_autogen + +# fast build rule for target. +Bolt_Dashplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build +.PHONY : Bolt_Dashplugin_autogen/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps + +# fast build rule for target. +Bolt_Dashplugin_init_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build +.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule + +# Convenience name for target. +Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule +.PHONY : Bolt_Dashplugin_init_autogen + +# fast build rule for target. +Bolt_Dashplugin_init_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build +.PHONY : Bolt_Dashplugin_init_autogen/fast + +.rcc/qmlcache/Bolt_Dash_Constants_qml.o: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_Constants_qml.i: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_Constants_qml.s: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.o: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.i: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.s: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i + +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.o: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o + +# target to build an object file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.i: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i + +# target to preprocess a source file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i + +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.s: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s + +# target to generate assembly for a file +.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s +.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s + +.rcc/qrc_Bolt_Dash_raw_qml_0.o: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.o + +# target to build an object file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o + +.rcc/qrc_Bolt_Dash_raw_qml_0.i: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.i + +# target to preprocess a source file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i + +.rcc/qrc_Bolt_Dash_raw_qml_0.s: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.s + +# target to generate assembly for a file +.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s + +.rcc/qrc_Bolt_Dash_raw_qml_0_init.o: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.o + +# target to build an object file +.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o + +.rcc/qrc_Bolt_Dash_raw_qml_0_init.i: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.i + +# target to preprocess a source file +.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i + +.rcc/qrc_Bolt_Dash_raw_qml_0_init.s: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.s + +# target to generate assembly for a file +.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s +.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s + +.rcc/qrc_qmake_Bolt_Dash.o: .rcc/qrc_qmake_Bolt_Dash.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash.o + +# target to build an object file +.rcc/qrc_qmake_Bolt_Dash.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.o + +.rcc/qrc_qmake_Bolt_Dash.i: .rcc/qrc_qmake_Bolt_Dash.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash.i + +# target to preprocess a source file +.rcc/qrc_qmake_Bolt_Dash.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.i + +.rcc/qrc_qmake_Bolt_Dash.s: .rcc/qrc_qmake_Bolt_Dash.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash.s + +# target to generate assembly for a file +.rcc/qrc_qmake_Bolt_Dash.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.s + +.rcc/qrc_qmake_Bolt_Dash_init.o: .rcc/qrc_qmake_Bolt_Dash_init.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.o + +# target to build an object file +.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.o + +.rcc/qrc_qmake_Bolt_Dash_init.i: .rcc/qrc_qmake_Bolt_Dash_init.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.i + +# target to preprocess a source file +.rcc/qrc_qmake_Bolt_Dash_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.i + +.rcc/qrc_qmake_Bolt_Dash_init.s: .rcc/qrc_qmake_Bolt_Dash_init.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.s + +# target to generate assembly for a file +.rcc/qrc_qmake_Bolt_Dash_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s +.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.s + +Bolt_Dash_autogen/mocs_compilation.o: Bolt_Dash_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dash_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.o + +Bolt_Dash_autogen/mocs_compilation.i: Bolt_Dash_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dash_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.i + +Bolt_Dash_autogen/mocs_compilation.s: Bolt_Dash_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dash_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.s + +Bolt_Dashplugin_Bolt_DashPlugin.o: Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.o + +# target to build an object file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.o + +Bolt_Dashplugin_Bolt_DashPlugin.i: Bolt_Dashplugin_Bolt_DashPlugin.cpp.i +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.i + +# target to preprocess a source file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.i + +Bolt_Dashplugin_Bolt_DashPlugin.s: Bolt_Dashplugin_Bolt_DashPlugin.cpp.s +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.s + +# target to generate assembly for a file +Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s +.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.s + +Bolt_Dashplugin_autogen/mocs_compilation.o: Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.o + +Bolt_Dashplugin_autogen/mocs_compilation.i: Bolt_Dashplugin_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.i + +Bolt_Dashplugin_autogen/mocs_compilation.s: Bolt_Dashplugin_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.s + +Bolt_Dashplugin_init.o: Bolt_Dashplugin_init.cpp.o +.PHONY : Bolt_Dashplugin_init.o + +# target to build an object file +Bolt_Dashplugin_init.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o +.PHONY : Bolt_Dashplugin_init.cpp.o + +Bolt_Dashplugin_init.i: Bolt_Dashplugin_init.cpp.i +.PHONY : Bolt_Dashplugin_init.i + +# target to preprocess a source file +Bolt_Dashplugin_init.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i +.PHONY : Bolt_Dashplugin_init.cpp.i + +Bolt_Dashplugin_init.s: Bolt_Dashplugin_init.cpp.s +.PHONY : Bolt_Dashplugin_init.s + +# target to generate assembly for a file +Bolt_Dashplugin_init.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s +.PHONY : Bolt_Dashplugin_init.cpp.s + +Bolt_Dashplugin_init_autogen/mocs_compilation.o: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.o + +# target to build an object file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o + +Bolt_Dashplugin_init_autogen/mocs_compilation.i: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.i + +# target to preprocess a source file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i + +Bolt_Dashplugin_init_autogen/mocs_compilation.s: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.s + +# target to generate assembly for a file +Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s +.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s + +bolt_dash_qmltyperegistrations.o: bolt_dash_qmltyperegistrations.cpp.o +.PHONY : bolt_dash_qmltyperegistrations.o + +# target to build an object file +bolt_dash_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o +.PHONY : bolt_dash_qmltyperegistrations.cpp.o + +bolt_dash_qmltyperegistrations.i: bolt_dash_qmltyperegistrations.cpp.i +.PHONY : bolt_dash_qmltyperegistrations.i + +# target to preprocess a source file +bolt_dash_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i +.PHONY : bolt_dash_qmltyperegistrations.cpp.i + +bolt_dash_qmltyperegistrations.s: bolt_dash_qmltyperegistrations.cpp.s +.PHONY : bolt_dash_qmltyperegistrations.s + +# target to generate assembly for a file +bolt_dash_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s +.PHONY : bolt_dash_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... Bolt_Dash_autogen" + @echo "... Bolt_Dash_autogen_timestamp_deps" + @echo "... Bolt_Dash_qmllint" + @echo "... Bolt_Dash_qmllint_json" + @echo "... Bolt_Dash_qmllint_module" + @echo "... Bolt_Dash_qmltyperegistration" + @echo "... Bolt_Dashplugin_autogen" + @echo "... Bolt_Dashplugin_autogen_timestamp_deps" + @echo "... Bolt_Dashplugin_init_autogen" + @echo "... Bolt_Dashplugin_init_autogen_timestamp_deps" + @echo "... Bolt_Dash" + @echo "... Bolt_Dash_resources_1" + @echo "... Bolt_Dash_resources_2" + @echo "... Bolt_Dash_tooling" + @echo "... Bolt_Dashplugin" + @echo "... Bolt_Dashplugin_init" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i" + @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i" + @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.o" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.i" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.s" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.o" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.i" + @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.s" + @echo "... .rcc/qrc_qmake_Bolt_Dash.o" + @echo "... .rcc/qrc_qmake_Bolt_Dash.i" + @echo "... .rcc/qrc_qmake_Bolt_Dash.s" + @echo "... .rcc/qrc_qmake_Bolt_Dash_init.o" + @echo "... .rcc/qrc_qmake_Bolt_Dash_init.i" + @echo "... .rcc/qrc_qmake_Bolt_Dash_init.s" + @echo "... Bolt_Dash_autogen/mocs_compilation.o" + @echo "... Bolt_Dash_autogen/mocs_compilation.i" + @echo "... Bolt_Dash_autogen/mocs_compilation.s" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.o" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.i" + @echo "... Bolt_Dashplugin_Bolt_DashPlugin.s" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.o" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.i" + @echo "... Bolt_Dashplugin_autogen/mocs_compilation.s" + @echo "... Bolt_Dashplugin_init.o" + @echo "... Bolt_Dashplugin_init.i" + @echo "... Bolt_Dashplugin_init.s" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.o" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.i" + @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.s" + @echo "... bolt_dash_qmltyperegistrations.o" + @echo "... bolt_dash_qmltyperegistrations.i" + @echo "... bolt_dash_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/Bolt_Dash/cmake_install.cmake b/build/imports/Bolt_Dash/cmake_install.cmake new file mode 100644 index 0000000..0181251 --- /dev/null +++ b/build/imports/Bolt_Dash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json b/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/imports/Bolt_Dash/qmldir b/build/imports/Bolt_Dash/qmldir new file mode 100644 index 0000000..6e42ed5 --- /dev/null +++ b/build/imports/Bolt_Dash/qmldir @@ -0,0 +1,11 @@ +module Bolt_Dash +linktarget Bolt_Dashplugin +optional plugin Bolt_Dashplugin +classname Bolt_DashPlugin +typeinfo Bolt_Dash.qmltypes +prefer :/Bolt_Dash/ +singleton Constants 1.0 Constants.qml +DirectoryFontLoader 1.0 DirectoryFontLoader.qml +EventListModel 1.0 EventListModel.qml +EventListSimulator 1.0 EventListSimulator.qml + diff --git a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt new file mode 100644 index 0000000..c8f0862 --- /dev/null +++ b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..05e27f5 --- /dev/null +++ b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/CMakeFiles/progress.marks b/build/imports/CMakeFiles/progress.marks new file mode 100644 index 0000000..e85087a --- /dev/null +++ b/build/imports/CMakeFiles/progress.marks @@ -0,0 +1 @@ +31 diff --git a/build/imports/IO/.rcc/qmake_IO.qrc b/build/imports/IO/.rcc/qmake_IO.qrc new file mode 100644 index 0000000..ce07d2c --- /dev/null +++ b/build/imports/IO/.rcc/qmake_IO.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmldir + + + diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin.rsp new file mode 100644 index 0000000..23e5f34 --- /dev/null +++ b/build/imports/IO/.rcc/qmllint/IOPlugin.rsp @@ -0,0 +1,7 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp new file mode 100644 index 0000000..14862e3 --- /dev/null +++ b/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp @@ -0,0 +1,9 @@ +--bare +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc +--json +/Users/mason/Documents/Code/dash-cpp/build/IOPlugin_qmllint.json diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp new file mode 100644 index 0000000..71d52f0 --- /dev/null +++ b/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp @@ -0,0 +1,8 @@ +-I +/Users/mason/Documents/Code/dash-cpp/build/imports +-I +/opt/homebrew/share/qt/qml +--resource +/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc +--module +IO diff --git a/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..05e27f5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake new file mode 100644 index 0000000..a62b3c4 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO.dir/build.make b/build/imports/IO/CMakeFiles/IO.dir/build.make new file mode 100644 index 0000000..9e4b31b --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/IO/CMakeFiles/IO.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/IO/CMakeFiles/IO.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IO.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/IO/CMakeFiles/IO.dir/flags.make + +imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IO.dir/flags.make +imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/IO_autogen/mocs_compilation.cpp +imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IO.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp + +imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp > CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i + +imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s + +# Object files for target IO +IO_OBJECTS = \ +"CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" + +# External object files for target IO +IO_EXTERNAL_OBJECTS = + +imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o +imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/build.make +imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libIO.a" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO.dir/cmake_clean_target.cmake + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IO.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IO.dir/build: imports/IO/libIO.a +.PHONY : imports/IO/CMakeFiles/IO.dir/build + +imports/IO/CMakeFiles/IO.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IO.dir/clean + +imports/IO/CMakeFiles/IO.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IO.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake new file mode 100644 index 0000000..4aee8e5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/IO_autogen.dir/AutogenUsed.txt" + "CMakeFiles/IO_autogen.dir/ParseCache.txt" + "IO_autogen" + "CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" + "CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d" + "libIO.a" + "libIO.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/IO.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..67a6915 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libIO.a" +) diff --git a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make new file mode 100644 index 0000000..2a52f97 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for IO. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts new file mode 100644 index 0000000..f54395d --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for IO. diff --git a/build/imports/IO/CMakeFiles/IO.dir/depend.make b/build/imports/IO/CMakeFiles/IO.dir/depend.make new file mode 100644 index 0000000..8b32dbe --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for IO. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO.dir/flags.make b/build/imports/IO/CMakeFiles/IO.dir/flags.make new file mode 100644 index 0000000..7c56821 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include + +CXX_FLAGSarm64 = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + +CXX_FLAGS = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk + diff --git a/build/imports/IO/CMakeFiles/IO.dir/link.txt b/build/imports/IO/CMakeFiles/IO.dir/link.txt new file mode 100644 index 0000000..e930b5e --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libIO.a CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libIO.a diff --git a/build/imports/IO/CMakeFiles/IO.dir/progress.make b/build/imports/IO/CMakeFiles/IO.dir/progress.make new file mode 100644 index 0000000..efb07f4 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 29 +CMAKE_PROGRESS_2 = + diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake new file mode 100644 index 0000000..0452e74 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake @@ -0,0 +1,32 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make new file mode 100644 index 0000000..3456216 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make @@ -0,0 +1,203 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/IO/CMakeFiles/IOPlugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/IO/CMakeFiles/IOPlugin.dir/flags.make + +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: imports/IO/meta_types/IOPlugin_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json + +imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/qmltypes/IOPlugin_foreign_types.txt +imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes --import-name=IO --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated/IOPlugin.qmltypes + +imports/IO/IOPlugin.qmltypes: imports/IO/ioplugin_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate imports/IO/IOPlugin.qmltypes + +imports/IO/.rcc/qrc_qmake_IO.cpp: imports/IO/qmldir +imports/IO/.rcc/qrc_qmake_IO.cpp: imports/IO/.rcc/qmake_IO.qrc +imports/IO/.rcc/qrc_qmake_IO.cpp: /opt/homebrew/share/qt/libexec/rcc + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_IO" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp --name qmake_IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc + +imports/IO/meta_types/IOPlugin_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +imports/IO/meta_types/IOPlugin_json_file_list.txt: imports/IO/IOPlugin_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include + +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6ioplugin_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make +imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/IOPlugin_autogen/mocs_compilation.cpp +imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp + +imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp > CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i + +imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s + +imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make +imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/ioplugin_qmltyperegistrations.cpp +imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -MF CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp + +imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp > CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i + +imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s + +imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make +imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/.rcc/qrc_qmake_IO.cpp +imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -MF CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp + +imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp > CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i + +imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s + +imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make +imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp +imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o -MF CMakeFiles/IOPlugin.dir/io.cpp.o.d -o CMakeFiles/IOPlugin.dir/io.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp + +imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/io.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp > CMakeFiles/IOPlugin.dir/io.cpp.i + +imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/io.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp -o CMakeFiles/IOPlugin.dir/io.cpp.s + +# Object files for target IOPlugin +IOPlugin_OBJECTS = \ +"CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" \ +"CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" \ +"CMakeFiles/IOPlugin.dir/io.cpp.o" + +# External object files for target IOPlugin +IOPlugin_EXTERNAL_OBJECTS = + +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/build.make +imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/libQt6QmlBuiltins.a +imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX shared library libIOPlugin.dylib" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IOPlugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin.dir/build: imports/IO/libIOPlugin.dylib +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/build + +imports/IO/CMakeFiles/IOPlugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/clean + +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/.rcc/qrc_qmake_IO.cpp +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/IOPlugin.qmltypes +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/ioplugin_qmltyperegistrations.cpp +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/IOPlugin_json_file_list.txt +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json +imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..26f0b0f --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake @@ -0,0 +1,27 @@ +file(REMOVE_RECURSE + ".rcc/qrc_qmake_IO.cpp" + "CMakeFiles/IOPlugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt" + "IOPlugin_autogen" + "CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" + "CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d" + "CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d" + "CMakeFiles/IOPlugin.dir/io.cpp.o" + "CMakeFiles/IOPlugin.dir/io.cpp.o.d" + "CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" + "CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d" + "IOPlugin.qmltypes" + "ioplugin_qmltyperegistrations.cpp" + "libIOPlugin.dylib" + "libIOPlugin.pdb" + "meta_types/IOPlugin_json_file_list.txt" + "meta_types/IOPlugin_json_file_list.txt.timestamp" + "meta_types/qt6ioplugin_debug_metatypes.json" + "meta_types/qt6ioplugin_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/IOPlugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make new file mode 100644 index 0000000..aad3b52 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for IOPlugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts new file mode 100644 index 0000000..72a52de --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for IOPlugin. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make new file mode 100644 index 0000000..48295f3 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for IOPlugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make new file mode 100644 index 0000000..0258ea0 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt b/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt new file mode 100644 index 0000000..183c519 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -dynamiclib -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries -o libIOPlugin.dylib -install_name @rpath/libIOPlugin.dylib CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o CMakeFiles/IOPlugin.dir/io.cpp.o -F/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make new file mode 100644 index 0000000..bb29b4d --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = 30 +CMAKE_PROGRESS_2 = +CMAKE_PROGRESS_3 = 31 +CMAKE_PROGRESS_4 = 32 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 33 +CMAKE_PROGRESS_7 = +CMAKE_PROGRESS_8 = 34 +CMAKE_PROGRESS_9 = +CMAKE_PROGRESS_10 = 35 + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..d6269b8 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,126 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/deps", + "DEP_FILE_RULE_NAME" : "IOPlugin_autogen/timestamp", + "HEADERS" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.h", + "MU", + "EWIEGA46WW/moc_io.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "IOPlugin_EXPORTS", + "QT_CORE_LIB", + "QT_NETWORK_LIB", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", + "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0", + "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..f3421f8 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/IO/IOPlugin_autogen/timestamp" "custom" "imports/IO/IOPlugin_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make new file mode 100644 index 0000000..47c540b --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make + +imports/IO/CMakeFiles/IOPlugin_autogen: imports/IO/IOPlugin_autogen/timestamp + +imports/IO/IOPlugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/IO/IOPlugin_autogen/timestamp: imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp + +IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen +IOPlugin_autogen: imports/IO/IOPlugin_autogen/timestamp +IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make +.PHONY : IOPlugin_autogen + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_autogen.dir/build: IOPlugin_autogen +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/build + +imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean + +imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..e4a0be1 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPlugin_autogen" + "IOPlugin_autogen/mocs_compilation.cpp" + "IOPlugin_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..5b71a63 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..a87cd5f --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_autogen. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make new file mode 100644 index 0000000..9e6c9e4 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 36 + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..c50ed61 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make + +IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make +.PHONY : IOPlugin_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build: IOPlugin_autogen_timestamp_deps +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build + +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean + +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..4ef147b --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..53c976f --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..4bbae12 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make new file mode 100644 index 0000000..19ee9ff --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_qmllint. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make + +imports/IO/CMakeFiles/IOPlugin_qmllint: /opt/homebrew/bin/qmllint +imports/IO/CMakeFiles/IOPlugin_qmllint: imports/IO/.rcc/qmllint/IOPlugin.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E echo Nothing\ to\ do\ for\ target\ IOPlugin_qmllint. + +IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint +IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make +.PHONY : IOPlugin_qmllint + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build: IOPlugin_qmllint +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build + +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean + +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake new file mode 100644 index 0000000..0e74e13 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPlugin_qmllint" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make new file mode 100644 index 0000000..1741b94 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_qmllint. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts new file mode 100644 index 0000000..e22eafa --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_qmllint. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make new file mode 100644 index 0000000..b05694d --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_qmllint_json. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make + +imports/IO/CMakeFiles/IOPlugin_qmllint_json: /opt/homebrew/bin/qmllint +imports/IO/CMakeFiles/IOPlugin_qmllint_json: imports/IO/.rcc/qmllint/IOPlugin_json.rsp + +IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json +IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make +.PHONY : IOPlugin_qmllint_json + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build: IOPlugin_qmllint_json +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build + +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean + +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake new file mode 100644 index 0000000..7a05bdd --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPlugin_qmllint_json" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make new file mode 100644 index 0000000..0857ea3 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_qmllint_json. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts new file mode 100644 index 0000000..c5ce1f8 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_qmllint_json. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make new file mode 100644 index 0000000..2fa3a55 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_qmllint_module. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make + +imports/IO/CMakeFiles/IOPlugin_qmllint_module: /opt/homebrew/bin/qmllint +imports/IO/CMakeFiles/IOPlugin_qmllint_module: imports/IO/.rcc/qmllint/IOPlugin_module.rsp + cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp + +IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module +IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make +.PHONY : IOPlugin_qmllint_module + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build: IOPlugin_qmllint_module +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build + +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean + +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake new file mode 100644 index 0000000..0a9d190 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPlugin_qmllint_module" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make new file mode 100644 index 0000000..44eef48 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_qmllint_module. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts new file mode 100644 index 0000000..a7d0835 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_qmllint_module. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake new file mode 100644 index 0000000..43d8e22 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/IO/IOPlugin_autogen/timestamp" "custom" "imports/IO/IOPlugin_autogen/deps" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ) + + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make new file mode 100644 index 0000000..c704e61 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make @@ -0,0 +1,129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPlugin_qmltyperegistration. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make + +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration: imports/IO/ioplugin_qmltyperegistrations.cpp +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration: imports/IO/IOPlugin.qmltypes + +imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/qmltypes/IOPlugin_foreign_types.txt +imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json +imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes --import-name=IO --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated/IOPlugin.qmltypes + +imports/IO/IOPlugin.qmltypes: imports/IO/ioplugin_qmltyperegistrations.cpp + @$(CMAKE_COMMAND) -E touch_nocreate imports/IO/IOPlugin.qmltypes + +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6ioplugin_debug_metatypes.json" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true + +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc +imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: imports/IO/meta_types/IOPlugin_json_file_list.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json + +imports/IO/meta_types/IOPlugin_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser +imports/IO/meta_types/IOPlugin_json_file_list.txt: imports/IO/IOPlugin_autogen/timestamp + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include + +imports/IO/IOPlugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/IO/IOPlugin_autogen/timestamp: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target IOPlugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp + +IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration +IOPlugin_qmltyperegistration: imports/IO/IOPlugin.qmltypes +IOPlugin_qmltyperegistration: imports/IO/IOPlugin_autogen/timestamp +IOPlugin_qmltyperegistration: imports/IO/ioplugin_qmltyperegistrations.cpp +IOPlugin_qmltyperegistration: imports/IO/meta_types/IOPlugin_json_file_list.txt +IOPlugin_qmltyperegistration: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json +IOPlugin_qmltyperegistration: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen +IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make +.PHONY : IOPlugin_qmltyperegistration + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build: IOPlugin_qmltyperegistration +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build + +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean + +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake new file mode 100644 index 0000000..fdd487c --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPlugin_qmltyperegistration" + "IOPlugin.qmltypes" + "IOPlugin_autogen/mocs_compilation.cpp" + "IOPlugin_autogen/timestamp" + "ioplugin_qmltyperegistrations.cpp" + "meta_types/IOPlugin_json_file_list.txt" + "meta_types/IOPlugin_json_file_list.txt.timestamp" + "meta_types/qt6ioplugin_debug_metatypes.json" + "meta_types/qt6ioplugin_debug_metatypes.json.gen" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make new file mode 100644 index 0000000..7096ca2 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPlugin_qmltyperegistration. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts new file mode 100644 index 0000000..c2ea182 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPlugin_qmltyperegistration. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make new file mode 100644 index 0000000..ee94005 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 37 +CMAKE_PROGRESS_3 = +CMAKE_PROGRESS_4 = 38 +CMAKE_PROGRESS_5 = + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake new file mode 100644 index 0000000..5909030 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d" + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make new file mode 100644 index 0000000..b993795 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make @@ -0,0 +1,131 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Include any dependencies generated for this target. +include imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make + +# Include the compile flags for this target's objects. +include imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp > CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/IOPluginplugin_IOPlugin.cpp +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -MF CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp > CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i + +imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s + +# Object files for target IOPluginplugin +IOPluginplugin_OBJECTS = \ +"CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" + +# External object files for target IOPluginplugin +IOPluginplugin_EXTERNAL_OBJECTS = + +imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o +imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o +imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/build.make +imports/IO/libIOPluginplugin.dylib: imports/IO/libIOPlugin.dylib +imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml +imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/libQt6QmlBuiltins.a +imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork +imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore +imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared module libIOPluginplugin.dylib" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IOPluginplugin.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPluginplugin.dir/build: imports/IO/libIOPluginplugin.dylib +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/build + +imports/IO/CMakeFiles/IOPluginplugin.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/clean + +imports/IO/CMakeFiles/IOPluginplugin.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake new file mode 100644 index 0000000..11c3ff4 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPluginplugin_autogen.dir/AutogenUsed.txt" + "CMakeFiles/IOPluginplugin_autogen.dir/ParseCache.txt" + "IOPluginplugin_autogen" + "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" + "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d" + "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" + "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d" + "libIOPluginplugin.dylib" + "libIOPluginplugin.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/IOPluginplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make new file mode 100644 index 0000000..daad4a6 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for IOPluginplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts new file mode 100644 index 0000000..a622dec --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for IOPluginplugin. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make new file mode 100644 index 0000000..742f0e5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for IOPluginplugin. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make new file mode 100644 index 0000000..9e300e6 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB + +CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers + +CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + +CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt new file mode 100644 index 0000000..d882557 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -bundle -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries -o libIOPluginplugin.dylib CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -F/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO -Wl,-rpath,/opt/homebrew/lib libIOPlugin.dylib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make new file mode 100644 index 0000000..6d7a107 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 39 +CMAKE_PROGRESS_2 = 40 +CMAKE_PROGRESS_3 = + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..9f0e144 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json @@ -0,0 +1,115 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/deps", + "DEP_FILE_RULE_NAME" : "IOPluginplugin_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "IOPluginplugin_EXPORTS", + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_NETWORK_LIB", + "QT_PLUGIN", + "QT_QMLBUILTINS_LIB", + "QT_QMLINTEGRATION_LIB", + "QT_QML_LIB" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/opt/homebrew/lib/QtQml.framework/Headers", + "/opt/homebrew/lib/QtQml.framework", + "/opt/homebrew/lib/QtCore.framework/Headers", + "/opt/homebrew/lib/QtCore.framework", + "/opt/homebrew/share/qt/mkspecs/macx-clang", + "/opt/homebrew/include", + "/opt/homebrew/include/QtQmlIntegration", + "/opt/homebrew/include/QtQmlBuiltins", + "/opt/homebrew/lib/QtNetwork.framework/Headers", + "/opt/homebrew/lib/QtNetwork.framework", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "-Muri=IO" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..8002672 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/IO/IOPluginplugin_autogen/timestamp" "custom" "imports/IO/IOPluginplugin_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make new file mode 100644 index 0000000..c8daa63 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPluginplugin_autogen. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make + +imports/IO/CMakeFiles/IOPluginplugin_autogen: imports/IO/IOPluginplugin_autogen/timestamp + +imports/IO/IOPluginplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/IO/IOPluginplugin_autogen/timestamp: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IOPluginplugin" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp + +IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen +IOPluginplugin_autogen: imports/IO/IOPluginplugin_autogen/timestamp +IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make +.PHONY : IOPluginplugin_autogen + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build: IOPluginplugin_autogen +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build + +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean + +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..99de594 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPluginplugin_autogen" + "IOPluginplugin_autogen/mocs_compilation.cpp" + "IOPluginplugin_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..58978a2 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPluginplugin_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..b166c65 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPluginplugin_autogen. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make new file mode 100644 index 0000000..b390e26 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 41 + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..6bf0b49 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IOPluginplugin_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make + +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps: imports/IO/IOPluginplugin_IOPlugin.cpp + +IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps +IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make +.PHONY : IOPluginplugin_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build: IOPluginplugin_autogen_timestamp_deps +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build + +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean + +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..2cf776e --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/IOPluginplugin_autogen_timestamp_deps" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..cd6c5ef --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IOPluginplugin_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..f336632 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IOPluginplugin_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ea2532a --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json @@ -0,0 +1,84 @@ +{ + "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen", + "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", + "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", + "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", + "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", + "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", + "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" + ], + "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/deps", + "DEP_FILE_RULE_NAME" : "IO_autogen/timestamp", + "HEADERS" : [], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include", + "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : [], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", + "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", + "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", + "/Library/Developer/CommandLineTools/usr/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/Library/Developer/CommandLineTools/usr/bin/c++", + "-dM", + "-E", + "-c", + "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "MULTI_CONFIG" : false, + "PARALLEL" : 12, + "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenUsed.txt", + "SOURCES" : [], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : + [ + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", + "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" + ], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : false, + "VERBOSITY" : 0 +} diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..b73f639 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "imports/IO/IO_autogen/timestamp" "custom" "imports/IO/IO_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make new file mode 100644 index 0000000..ebbd18b --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make @@ -0,0 +1,93 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IO_autogen. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IO_autogen.dir/progress.make + +imports/IO/CMakeFiles/IO_autogen: imports/IO/IO_autogen/timestamp + +imports/IO/IO_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc +imports/IO/IO_autogen/timestamp: imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IO" + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json Debug + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp + +IO_autogen: imports/IO/CMakeFiles/IO_autogen +IO_autogen: imports/IO/IO_autogen/timestamp +IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/build.make +.PHONY : IO_autogen + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IO_autogen.dir/build: IO_autogen +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/build + +imports/IO/CMakeFiles/IO_autogen.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO_autogen.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/clean + +imports/IO/CMakeFiles/IO_autogen.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..9b30fb5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/IO_autogen" + "IO_autogen/mocs_compilation.cpp" + "IO_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IO_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..789cb81 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IO_autogen. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..4311093 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IO_autogen. diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make new file mode 100644 index 0000000..225de34 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = + diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..a757bb5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for IO_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make + +IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make +.PHONY : IO_autogen_timestamp_deps + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build: IO_autogen_timestamp_deps +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build + +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean + +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend + diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..fb47c0d --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..427134d --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for IO_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..a50422a --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for IO_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/CMakeFiles/progress.marks b/build/imports/IO/CMakeFiles/progress.marks new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/build/imports/IO/CMakeFiles/progress.marks @@ -0,0 +1 @@ +11 diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make new file mode 100644 index 0000000..4572b3c --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make @@ -0,0 +1,83 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +# Utility rule file for qt_internal_plugins. + +# Include any custom commands dependencies for this target. +include imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make + +# Include the progress variables for this target. +include imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make + +qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make +.PHONY : qt_internal_plugins + +# Rule to build all files generated by this target. +imports/IO/CMakeFiles/qt_internal_plugins.dir/build: qt_internal_plugins +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/build + +imports/IO/CMakeFiles/qt_internal_plugins.dir/clean: + cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/clean + +imports/IO/CMakeFiles/qt_internal_plugins.dir/depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/depend + diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake new file mode 100644 index 0000000..d36db1c --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/qt_internal_plugins.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make new file mode 100644 index 0000000..a7eb7e0 --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for qt_internal_plugins. +# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts new file mode 100644 index 0000000..6cd921c --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for qt_internal_plugins. diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make @@ -0,0 +1 @@ + diff --git a/build/imports/IO/IOPlugin_qml_module_dir_map.qrc b/build/imports/IO/IOPlugin_qml_module_dir_map.qrc new file mode 100644 index 0000000..b4722d5 --- /dev/null +++ b/build/imports/IO/IOPlugin_qml_module_dir_map.qrc @@ -0,0 +1,6 @@ + + + /Users/mason/Documents/Code/dash-cpp/build/imports/IO + + + diff --git a/build/imports/IO/IOPluginplugin_IOPlugin.cpp b/build/imports/IO/IOPluginplugin_IOPlugin.cpp new file mode 100644 index 0000000..6041c49 --- /dev/null +++ b/build/imports/IO/IOPluginplugin_IOPlugin.cpp @@ -0,0 +1,26 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + + + +QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_IO); + +class IOPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + IOPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +QT_KEEP_SYMBOL(qml_register_types_IO); + } +}; + + + +#include "IOPluginplugin_IOPlugin.moc" diff --git a/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp b/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp new file mode 100644 index 0000000..1c1d41e --- /dev/null +++ b/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp @@ -0,0 +1,28 @@ +// This file is autogenerated by CMake. Do not edit. + +#include +#include + + + + +$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> + +class IOPlugin : public QQmlEngineExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) + +public: + IOPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) + { + +$<$:QT_KEEP_SYMBOL($);> + } +}; + + + +#include "IOPluginplugin_IOPlugin.moc" diff --git a/build/imports/IO/Makefile b/build/imports/IO/Makefile new file mode 100644 index 0000000..041bac3 --- /dev/null +++ b/build/imports/IO/Makefile @@ -0,0 +1,588 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/IO//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +imports/IO/CMakeFiles/IO.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO.dir/rule +.PHONY : imports/IO/CMakeFiles/IO.dir/rule + +# Convenience name for target. +IO: imports/IO/CMakeFiles/IO.dir/rule +.PHONY : IO + +# fast build rule for target. +IO/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build +.PHONY : IO/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/rule + +# Convenience name for target. +IOPlugin: imports/IO/CMakeFiles/IOPlugin.dir/rule +.PHONY : IOPlugin + +# fast build rule for target. +IOPlugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build +.PHONY : IOPlugin/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule + +# Convenience name for target. +IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule +.PHONY : IOPlugin_qmltyperegistration + +# fast build rule for target. +IOPlugin_qmltyperegistration/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build +.PHONY : IOPlugin_qmltyperegistration/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPluginplugin.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/rule + +# Convenience name for target. +IOPluginplugin: imports/IO/CMakeFiles/IOPluginplugin.dir/rule +.PHONY : IOPluginplugin + +# fast build rule for target. +IOPluginplugin/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build +.PHONY : IOPluginplugin/fast + +# Convenience name for target. +imports/IO/CMakeFiles/qt_internal_plugins.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/rule + +# Convenience name for target. +qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/rule +.PHONY : qt_internal_plugins + +# fast build rule for target. +qt_internal_plugins/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build +.PHONY : qt_internal_plugins/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule + +# Convenience name for target. +IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule +.PHONY : IOPlugin_qmllint + +# fast build rule for target. +IOPlugin_qmllint/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build +.PHONY : IOPlugin_qmllint/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule + +# Convenience name for target. +IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule +.PHONY : IOPlugin_qmllint_json + +# fast build rule for target. +IOPlugin_qmllint_json/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build +.PHONY : IOPlugin_qmllint_json/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule + +# Convenience name for target. +IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule +.PHONY : IOPlugin_qmllint_module + +# fast build rule for target. +IOPlugin_qmllint_module/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build +.PHONY : IOPlugin_qmllint_module/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule +.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule +.PHONY : IO_autogen_timestamp_deps + +# fast build rule for target. +IO_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build +.PHONY : IO_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IO_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen.dir/rule +.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/rule + +# Convenience name for target. +IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/rule +.PHONY : IO_autogen + +# fast build rule for target. +IO_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build +.PHONY : IO_autogen/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule +.PHONY : IOPlugin_autogen_timestamp_deps + +# fast build rule for target. +IOPlugin_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build +.PHONY : IOPlugin_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule + +# Convenience name for target. +IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule +.PHONY : IOPlugin_autogen + +# fast build rule for target. +IOPlugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build +.PHONY : IOPlugin_autogen/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule +.PHONY : IOPluginplugin_autogen_timestamp_deps + +# fast build rule for target. +IOPluginplugin_autogen_timestamp_deps/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build +.PHONY : IOPluginplugin_autogen_timestamp_deps/fast + +# Convenience name for target. +imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule +.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule + +# Convenience name for target. +IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule +.PHONY : IOPluginplugin_autogen + +# fast build rule for target. +IOPluginplugin_autogen/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build +.PHONY : IOPluginplugin_autogen/fast + +.rcc/qrc_qmake_IO.o: .rcc/qrc_qmake_IO.cpp.o +.PHONY : .rcc/qrc_qmake_IO.o + +# target to build an object file +.rcc/qrc_qmake_IO.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o +.PHONY : .rcc/qrc_qmake_IO.cpp.o + +.rcc/qrc_qmake_IO.i: .rcc/qrc_qmake_IO.cpp.i +.PHONY : .rcc/qrc_qmake_IO.i + +# target to preprocess a source file +.rcc/qrc_qmake_IO.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i +.PHONY : .rcc/qrc_qmake_IO.cpp.i + +.rcc/qrc_qmake_IO.s: .rcc/qrc_qmake_IO.cpp.s +.PHONY : .rcc/qrc_qmake_IO.s + +# target to generate assembly for a file +.rcc/qrc_qmake_IO.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s +.PHONY : .rcc/qrc_qmake_IO.cpp.s + +IOPlugin_autogen/mocs_compilation.o: IOPlugin_autogen/mocs_compilation.cpp.o +.PHONY : IOPlugin_autogen/mocs_compilation.o + +# target to build an object file +IOPlugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o +.PHONY : IOPlugin_autogen/mocs_compilation.cpp.o + +IOPlugin_autogen/mocs_compilation.i: IOPlugin_autogen/mocs_compilation.cpp.i +.PHONY : IOPlugin_autogen/mocs_compilation.i + +# target to preprocess a source file +IOPlugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i +.PHONY : IOPlugin_autogen/mocs_compilation.cpp.i + +IOPlugin_autogen/mocs_compilation.s: IOPlugin_autogen/mocs_compilation.cpp.s +.PHONY : IOPlugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +IOPlugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s +.PHONY : IOPlugin_autogen/mocs_compilation.cpp.s + +IOPluginplugin_IOPlugin.o: IOPluginplugin_IOPlugin.cpp.o +.PHONY : IOPluginplugin_IOPlugin.o + +# target to build an object file +IOPluginplugin_IOPlugin.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o +.PHONY : IOPluginplugin_IOPlugin.cpp.o + +IOPluginplugin_IOPlugin.i: IOPluginplugin_IOPlugin.cpp.i +.PHONY : IOPluginplugin_IOPlugin.i + +# target to preprocess a source file +IOPluginplugin_IOPlugin.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i +.PHONY : IOPluginplugin_IOPlugin.cpp.i + +IOPluginplugin_IOPlugin.s: IOPluginplugin_IOPlugin.cpp.s +.PHONY : IOPluginplugin_IOPlugin.s + +# target to generate assembly for a file +IOPluginplugin_IOPlugin.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s +.PHONY : IOPluginplugin_IOPlugin.cpp.s + +IOPluginplugin_autogen/mocs_compilation.o: IOPluginplugin_autogen/mocs_compilation.cpp.o +.PHONY : IOPluginplugin_autogen/mocs_compilation.o + +# target to build an object file +IOPluginplugin_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o +.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.o + +IOPluginplugin_autogen/mocs_compilation.i: IOPluginplugin_autogen/mocs_compilation.cpp.i +.PHONY : IOPluginplugin_autogen/mocs_compilation.i + +# target to preprocess a source file +IOPluginplugin_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i +.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.i + +IOPluginplugin_autogen/mocs_compilation.s: IOPluginplugin_autogen/mocs_compilation.cpp.s +.PHONY : IOPluginplugin_autogen/mocs_compilation.s + +# target to generate assembly for a file +IOPluginplugin_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s +.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.s + +IO_autogen/mocs_compilation.o: IO_autogen/mocs_compilation.cpp.o +.PHONY : IO_autogen/mocs_compilation.o + +# target to build an object file +IO_autogen/mocs_compilation.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o +.PHONY : IO_autogen/mocs_compilation.cpp.o + +IO_autogen/mocs_compilation.i: IO_autogen/mocs_compilation.cpp.i +.PHONY : IO_autogen/mocs_compilation.i + +# target to preprocess a source file +IO_autogen/mocs_compilation.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i +.PHONY : IO_autogen/mocs_compilation.cpp.i + +IO_autogen/mocs_compilation.s: IO_autogen/mocs_compilation.cpp.s +.PHONY : IO_autogen/mocs_compilation.s + +# target to generate assembly for a file +IO_autogen/mocs_compilation.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s +.PHONY : IO_autogen/mocs_compilation.cpp.s + +io.o: io.cpp.o +.PHONY : io.o + +# target to build an object file +io.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o +.PHONY : io.cpp.o + +io.i: io.cpp.i +.PHONY : io.i + +# target to preprocess a source file +io.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.i +.PHONY : io.cpp.i + +io.s: io.cpp.s +.PHONY : io.s + +# target to generate assembly for a file +io.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.s +.PHONY : io.cpp.s + +ioplugin_qmltyperegistrations.o: ioplugin_qmltyperegistrations.cpp.o +.PHONY : ioplugin_qmltyperegistrations.o + +# target to build an object file +ioplugin_qmltyperegistrations.cpp.o: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o +.PHONY : ioplugin_qmltyperegistrations.cpp.o + +ioplugin_qmltyperegistrations.i: ioplugin_qmltyperegistrations.cpp.i +.PHONY : ioplugin_qmltyperegistrations.i + +# target to preprocess a source file +ioplugin_qmltyperegistrations.cpp.i: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i +.PHONY : ioplugin_qmltyperegistrations.cpp.i + +ioplugin_qmltyperegistrations.s: ioplugin_qmltyperegistrations.cpp.s +.PHONY : ioplugin_qmltyperegistrations.s + +# target to generate assembly for a file +ioplugin_qmltyperegistrations.cpp.s: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s +.PHONY : ioplugin_qmltyperegistrations.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... IOPlugin_autogen" + @echo "... IOPlugin_autogen_timestamp_deps" + @echo "... IOPlugin_qmllint" + @echo "... IOPlugin_qmllint_json" + @echo "... IOPlugin_qmllint_module" + @echo "... IOPlugin_qmltyperegistration" + @echo "... IOPluginplugin_autogen" + @echo "... IOPluginplugin_autogen_timestamp_deps" + @echo "... IO_autogen" + @echo "... IO_autogen_timestamp_deps" + @echo "... qt_internal_plugins" + @echo "... IO" + @echo "... IOPlugin" + @echo "... IOPluginplugin" + @echo "... .rcc/qrc_qmake_IO.o" + @echo "... .rcc/qrc_qmake_IO.i" + @echo "... .rcc/qrc_qmake_IO.s" + @echo "... IOPlugin_autogen/mocs_compilation.o" + @echo "... IOPlugin_autogen/mocs_compilation.i" + @echo "... IOPlugin_autogen/mocs_compilation.s" + @echo "... IOPluginplugin_IOPlugin.o" + @echo "... IOPluginplugin_IOPlugin.i" + @echo "... IOPluginplugin_IOPlugin.s" + @echo "... IOPluginplugin_autogen/mocs_compilation.o" + @echo "... IOPluginplugin_autogen/mocs_compilation.i" + @echo "... IOPluginplugin_autogen/mocs_compilation.s" + @echo "... IO_autogen/mocs_compilation.o" + @echo "... IO_autogen/mocs_compilation.i" + @echo "... IO_autogen/mocs_compilation.s" + @echo "... io.o" + @echo "... io.i" + @echo "... io.s" + @echo "... ioplugin_qmltyperegistrations.o" + @echo "... ioplugin_qmltyperegistrations.i" + @echo "... ioplugin_qmltyperegistrations.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/IO/cmake_install.cmake b/build/imports/IO/cmake_install.cmake new file mode 100644 index 0000000..c49c819 --- /dev/null +++ b/build/imports/IO/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + diff --git a/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json b/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/imports/IO/qmldir b/build/imports/IO/qmldir new file mode 100644 index 0000000..21b85a2 --- /dev/null +++ b/build/imports/IO/qmldir @@ -0,0 +1,7 @@ +module IO +linktarget IOPluginplugin +optional plugin IOPluginplugin +classname IOPlugin +typeinfo IOPlugin.qmltypes +prefer :/IO/ + diff --git a/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt b/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt new file mode 100644 index 0000000..c8f0862 --- /dev/null +++ b/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Makefile b/build/imports/Makefile new file mode 100644 index 0000000..d84a0da --- /dev/null +++ b/build/imports/Makefile @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.30 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports//CMakeFiles/progress.marks + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/imports/cmake_install.cmake b/build/imports/cmake_install.cmake new file mode 100644 index 0000000..3d0b4d7 --- /dev/null +++ b/build/imports/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/mason/Documents/Code/dash-cpp/build/imports/IO/cmake_install.cmake") +endif() + diff --git a/build/meta_types/qt6bolt_dashapp_debug_metatypes.json b/build/meta_types/qt6bolt_dashapp_debug_metatypes.json new file mode 100644 index 0000000..e69de29 diff --git a/build/qmltypes/Bolt_DashApp_foreign_types.txt b/build/qmltypes/Bolt_DashApp_foreign_types.txt new file mode 100644 index 0000000..8595dec --- /dev/null +++ b/build/qmltypes/Bolt_DashApp_foreign_types.txt @@ -0,0 +1 @@ +--foreign-types=/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json \ No newline at end of file From 0988d890464147b714112bbd9d1f996c00636473 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 28 Aug 2024 16:35:57 -0400 Subject: [PATCH 139/165] Try using existing gpsd for gps instead of reading serial port --- Bolt_Dash/backend.cpp | 2 +- Bolt_Dash/gpsprocessing.cpp | 78 +++++++++++++++++-------------------- Bolt_Dash/gpsprocessing.h | 17 +++----- 3 files changed, 42 insertions(+), 55 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 897e187..9ae43c6 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -22,7 +22,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&parserStuff); + std::thread run_gps(&gpsMain); run_gps.detach(); } diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 7bd9847..acc93e4 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,54 +1,48 @@ #include "gpsprocessing.h" -const char *SERIAL_PORT = "/dev/ACM0"; // Serial port for GPS -const int BAUD_RATE = B9600; // Baud rate for GPS communication - -int initializeGPS() { - int fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY); - if (fd == -1) { - perror("Unable to open serial port"); - return -1; - } +int gpsMain() { + gpsmm gps_rec("localhost", DEFAULT_GPSD_PORT); - struct termios options; - tcgetattr(fd, &options); - cfsetispeed(&options, BAUD_RATE); - cfsetospeed(&options, BAUD_RATE); - options.c_cflag |= (CLOCAL | CREAD); - options.c_cflag &= ~PARENB; - options.c_cflag &= ~CSTOPB; - options.c_cflag &= ~CSIZE; - options.c_cflag |= CS8; - tcsetattr(fd, TCSANOW, &options); - - return fd; -} - -int parserStuff() { - // Function to initialize GPS serial port - int gps_fd = initializeGPS(); - if (gps_fd < 0) { - std::cerr << "Failed to initialize GPS serial port" << std::endl; + if (!gps_rec.stream(WATCH_ENABLE | WATCH_JSON)) { + std::cerr << "No GPSD running." << std::endl; return 1; } - std::cout << "PiCAN+ GPS initialized successfully" << std::endl; - - // Main loop while (true) { - // Read GPS data - char gps_buffer[256]; - int n = read(gps_fd, gps_buffer, sizeof(gps_buffer)); - if (n > 0) { - gps_buffer[n] = 0; // Null-terminate the string - // std::cout << "GPS Data: " << gps_buffer; - GPSData currentData = decodeNMEA(gps_buffer); - printGPSData(currentData); + struct gps_data_t *gpsd_data; + + if (!gps_rec.waiting(5000000)) { + continue; + } + + gpsd_data = gps_rec.read(); + + if (gpsd_data == nullptr) { + std::cerr << "Read error." << std::endl; + continue; + } + + if ((gpsd_data->fix.mode == MODE_2D || gpsd_data->fix.mode == MODE_3D) && + !std::isnan(gpsd_data->fix.latitude) && + !std::isnan(gpsd_data->fix.longitude)) { + + std::cout << std::fixed << std::setprecision(6); + std::cout << "Latitude: " << gpsd_data->fix.latitude << std::endl; + std::cout << "Longitude: " << gpsd_data->fix.longitude << std::endl; + std::cout << "Altitude: " << gpsd_data->fix.altitude << " m" << std::endl; + std::cout << "Speed: " << gpsd_data->fix.speed * 3.6 << " km/h" << std::endl; + + // Use timespec_t for time + std::cout << "Timestamp: " + << gpsd_data->fix.time.tv_sec << "." + << std::setfill('0') << std::setw(9) + << gpsd_data->fix.time.tv_nsec << std::endl; + + std::cout << std::endl; } - usleep(100000); // Sleep for 100ms + sleep(1); } - close(gps_fd); return 0; -} +} \ No newline at end of file diff --git a/Bolt_Dash/gpsprocessing.h b/Bolt_Dash/gpsprocessing.h index 02bbdfd..1a6125b 100644 --- a/Bolt_Dash/gpsprocessing.h +++ b/Bolt_Dash/gpsprocessing.h @@ -1,16 +1,9 @@ -#ifndef GPSPROCESSING_H -#define GPSPROCESSING_H +#pragma once -#include -#include +#include +#include #include -#include +#include #include -#include "nmea_decoder.h" - -int initializeGPS(); - -int parserStuff(); - -#endif \ No newline at end of file +int gpsMain(); \ No newline at end of file From 40f55ceaa400d3a58debee02c23482c6e520e7aa Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 28 Aug 2024 16:40:41 -0400 Subject: [PATCH 140/165] Whoops kept build folder in --- .gitignore | 3 +- .../api/v1/query/client-vscode/query.json | 1 - .../reply/cache-v2-4f2284380e850db36450.json | 5967 ----------------- .../cmakeFiles-v1-81ec662148f00936beea.json | 5038 -------------- .../codemodel-v2-9e1aa1876566bda061f7.json | 650 -- ...irectory-.-Debug-c763ad29e698621ff67d.json | 45 - ...ry-content-Debug-61a361743d88a3b42c45.json | 14 - ...ry-imports-Debug-615074570c3908afab44.json | 14 - ....Bolt_Dash-Debug-826bc3c800d0ab2caed0.json | 14 - ...imports.IO-Debug-292cee666d28555cd386.json | 14 - .../reply/index-2024-08-28T20-25-29-0248.json | 132 - ...-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json | 703 -- ...lt_DashApp-Debug-eb462bdc3b44739a892a.json | 1600 ----- ...pp_autogen-Debug-ecac5cdf9083af5a0e90.json | 75 - ...stamp_deps-Debug-dd6fa5d8215e24bf5e96.json | 50 - ...importscan-Debug-c50036dcb3d9905198cb.json | 120 - ...pp_qmllint-Debug-86360ad26642c7135a80.json | 110 - ...llint_json-Debug-e6f29d11dfb6cf4124b2.json | 110 - ...int_module-Debug-09c57076607543db8839.json | 110 - ...gistration-Debug-bed60cad2623cab775fd.json | 138 - ...pp_tooling-Debug-b5a316b22109d18669c5.json | 104 - ...sh_autogen-Debug-441b69b2d2859eb87ef9.json | 75 - ...stamp_deps-Debug-088cb1adfedc1814c818.json | 38 - ...sh_qmllint-Debug-8f84f953a3c3747dcfa4.json | 98 - ...llint_json-Debug-b9482acbc0f5cb9eee92.json | 98 - ...int_module-Debug-5161ed4a6133ec9c44db.json | 98 - ...gistration-Debug-a66ba952e1eb06fb9c42.json | 126 - ...esources_1-Debug-f941936bb9e211476b67.json | 263 - ...esources_2-Debug-4a8635105ce5670d28ed.json | 270 - ...sh_tooling-Debug-fa310d612e1f5c4b7e79.json | 134 - ...Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json | 301 - ...in_autogen-Debug-9a452770f8adbf060a01.json | 75 - ...stamp_deps-Debug-f9d79c4e9cde3feff6ed.json | 62 - ...lugin_init-Debug-d8f518305c4ecf6747f6.json | 289 - ...it_autogen-Debug-6cbb6c2e197bd8d1f37d.json | 75 - ...stamp_deps-Debug-32f76fa5b6be2d7ecb15.json | 62 - .../target-IO-Debug-e29c6efea1915d85c9e6.json | 137 - ...t-IOPlugin-Debug-e858e202624a3206316e.json | 621 -- ...in_autogen-Debug-ab7dda293435bacb6cef.json | 75 - ...stamp_deps-Debug-9fd2f2bd055f0f2aa787.json | 31 - ...in_qmllint-Debug-8c11c37e67daa846bd4d.json | 98 - ...llint_json-Debug-ff36221727ea077c298a.json | 98 - ...int_module-Debug-e500ecfaad5c8fc0f0e5.json | 98 - ...gistration-Debug-ef5f2c0b53e30c6e5e52.json | 126 - ...uginplugin-Debug-a0d4e74bb53dc236a11a.json | 423 -- ...in_autogen-Debug-0789b3865f46588f5ad0.json | 75 - ...stamp_deps-Debug-7c334fe2ed061162f2bb.json | 62 - ...IO_autogen-Debug-708994b234752366cd0d.json | 75 - ...stamp_deps-Debug-c486d73ceaf28f507353.json | 31 - ...ll_qmllint-Debug-c143a655f3229854e7a1.json | 208 - ...llint_json-Debug-02e8fac95724d14079aa.json | 208 - ...int_module-Debug-74f2c776ef292c1a5eef.json | 208 - ...istrations-Debug-fbf9e0225f3838680c13.json | 158 - ...et-content-Debug-84c13ddb4d05224351df.json | 1353 ---- ...nt_autogen-Debug-3c4e7cf7b92ed045bf43.json | 75 - ...stamp_deps-Debug-cf12f537e2a66db07150.json | 38 - ...nt_qmllint-Debug-8142ca0703017c202a06.json | 98 - ...llint_json-Debug-7eab1ed0c12a3f64d3b1.json | 98 - ...int_module-Debug-8f5301cedfba2c65c02b.json | 98 - ...gistration-Debug-4d171b3e279cd861953b.json | 126 - ...esources_1-Debug-3dfee9aca78a1157a591.json | 263 - ...esources_2-Debug-4e21ea579599e366b50a.json | 270 - ...nt_tooling-Debug-31cbc5df92c7478ca653.json | 532 -- ...tentplugin-Debug-2c9a48946c97ef59f438.json | 301 - ...in_autogen-Debug-c1a4b967070723e2f2f4.json | 75 - ...stamp_deps-Debug-c808e5e877b5935fa4e2.json | 62 - ...lugin_init-Debug-202e8c1956da63ca4598.json | 289 - ...it_autogen-Debug-7e23e3d44851a0a93369.json | 75 - ...stamp_deps-Debug-b58281811959a68fc485.json | 62 - ...al_plugins-Debug-73d78de408bb540280e3.json | 76 - .../toolchains-v1-3df0db7d651d973da145.json | 61 - build/.qt/QtDeploySupport.cmake | 70 - build/.qt/QtDeployTargets.cmake | 3 - .../.qt/deploy_qml_imports/Bolt_DashApp.cmake | 20 - .../Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake | 38 - .../Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp | 15 - build/.rcc/Bolt_DashApp_raw_qml_0.qrc | 6 - build/.rcc/configuration.qrc | 6 - build/.rcc/qmake_Main.qrc | 6 - .../Bolt_DashApp_qml_loader_file_list.rsp | 7 - build/.rcc/qmllint/Bolt_DashApp.rsp | 12 - build/.rcc/qmllint/Bolt_DashApp_json.rsp | 14 - build/.rcc/qmllint/Bolt_DashApp_module.rsp | 12 - .../CMakeFiles/3.30.0/CMakeCXXCompiler.cmake | 101 - .../3.30.0/CMakeDetermineCompilerABI_CXX.bin | Bin 16984 -> 0 bytes build/CMakeFiles/3.30.0/CMakeSystem.cmake | 15 - .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 919 --- .../3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 1712 -> 0 bytes .../Bolt_DashApp.dir/DependInfo.cmake | 23 - build/CMakeFiles/Bolt_DashApp.dir/build.make | 132 - .../Bolt_DashApp.dir/cmake_clean.cmake | 14 - .../Bolt_DashApp.dir/compiler_depend.make | 2 - .../Bolt_DashApp.dir/compiler_depend.ts | 2 - build/CMakeFiles/Bolt_DashApp.dir/depend.make | 2 - build/CMakeFiles/Bolt_DashApp.dir/flags.make | 12 - build/CMakeFiles/Bolt_DashApp.dir/link.txt | 1 - .../CMakeFiles/Bolt_DashApp.dir/progress.make | 3 - .../Bolt_DashApp_autogen.dir/AutogenInfo.json | 1169 ---- .../Bolt_DashApp_autogen.dir/DependInfo.cmake | 23 - .../Bolt_DashApp_autogen.dir/build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 22 - .../Bolt_DashApp_qmlimportscan.dir/build.make | 95 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../Bolt_DashApp_qmllint.dir/DependInfo.cmake | 22 - .../Bolt_DashApp_qmllint.dir/build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../Bolt_DashApp_qmllint_json.dir/build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 22 - .../build.make | 89 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 29 - .../build.make | 136 - .../cmake_clean.cmake | 16 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 6 - .../Bolt_DashApp_tooling.dir/DependInfo.cmake | 22 - .../Bolt_DashApp_tooling.dir/build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_DashApp_tooling.dir/progress.make | 2 - build/CMakeFiles/CMakeConfigureLog.yaml | 322 - .../CMakeDirectoryInformation.cmake | 16 - build/CMakeFiles/CMakeRuleHashes.txt | 129 - build/CMakeFiles/Makefile.cmake | 923 --- build/CMakeFiles/Makefile2 | 1802 ----- build/CMakeFiles/TargetDirectories.txt | 89 - .../all_qmllint.dir/DependInfo.cmake | 22 - build/CMakeFiles/all_qmllint.dir/build.make | 83 - .../all_qmllint.dir/cmake_clean.cmake | 5 - .../all_qmllint.dir/compiler_depend.make | 2 - .../all_qmllint.dir/compiler_depend.ts | 2 - .../CMakeFiles/all_qmllint.dir/progress.make | 1 - .../all_qmllint_json.dir/DependInfo.cmake | 22 - .../all_qmllint_json.dir/build.make | 83 - .../all_qmllint_json.dir/cmake_clean.cmake | 5 - .../all_qmllint_json.dir/compiler_depend.make | 2 - .../all_qmllint_json.dir/compiler_depend.ts | 2 - .../all_qmllint_json.dir/progress.make | 1 - .../all_qmllint_module.dir/DependInfo.cmake | 22 - .../all_qmllint_module.dir/build.make | 83 - .../all_qmllint_module.dir/cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../all_qmllint_module.dir/compiler_depend.ts | 2 - .../all_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../all_qmltyperegistrations.dir/build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - build/CMakeFiles/cmake.check_cache | 1 - build/CMakeFiles/progress.marks | 1 - .../Main/Bolt_DashApp_qml_module_dir_map.qrc | 6 - build/Main/main.qml | 9 - build/Main/qmldir | 4 - build/Makefile | 1042 --- build/cmake_install.cmake | 81 - build/compile_commands.json | 332 - build/content/.rcc/content_raw_qml_0.qrc | 37 - build/content/.rcc/qmake_content.qrc | 6 - .../qmlcache/content_qml_loader_file_list.rsp | 25 - build/content/.rcc/qmllint/content.rsp | 30 - build/content/.rcc/qmllint/content_json.rsp | 32 - build/content/.rcc/qmllint/content_module.rsp | 10 - .../.rcc/qrc_content_raw_qml_0_init.cpp | 14 - build/content/.rcc/qrc_qmake_content_init.cpp | 14 - build/content/App.qml | 44 - build/content/BMSFaultDetails.qml | 93 - build/content/BatteryReadout.qml | 87 - build/content/BatterySlider.qml | 41 - build/content/BikeStatus.qml | 102 - build/content/BoltLeanAngle.qml | 30 - .../CMakeDirectoryInformation.cmake | 16 - .../CMakeFiles/content.dir/DependInfo.cmake | 54 - .../content/CMakeFiles/content.dir/build.make | 829 --- .../CMakeFiles/content.dir/cmake_clean.cmake | 94 - .../content.dir/cmake_clean_target.cmake | 3 - .../content.dir/compiler_depend.make | 2 - .../CMakeFiles/content.dir/compiler_depend.ts | 2 - .../CMakeFiles/content.dir/depend.make | 2 - .../content/CMakeFiles/content.dir/flags.make | 12 - build/content/CMakeFiles/content.dir/link.txt | 2 - .../CMakeFiles/content.dir/progress.make | 56 - .../content_autogen.dir/AutogenInfo.json | 161 - .../content_autogen.dir/DependInfo.cmake | 23 - .../CMakeFiles/content_autogen.dir/build.make | 93 - .../content_autogen.dir/cmake_clean.cmake | 10 - .../content_autogen.dir/compiler_depend.make | 2 - .../content_autogen.dir/compiler_depend.ts | 2 - .../content_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../content_qmllint.dir/DependInfo.cmake | 22 - .../CMakeFiles/content_qmllint.dir/build.make | 109 - .../content_qmllint.dir/cmake_clean.cmake | 8 - .../content_qmllint.dir/compiler_depend.make | 2 - .../content_qmllint.dir/compiler_depend.ts | 2 - .../content_qmllint.dir/progress.make | 1 - .../content_qmllint_json.dir/DependInfo.cmake | 22 - .../content_qmllint_json.dir/build.make | 109 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../content_qmllint_module.dir/build.make | 109 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 29 - .../build.make | 129 - .../cmake_clean.cmake | 16 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 6 - .../content_resources_1.dir/DependInfo.cmake | 23 - .../content_resources_1.dir/build.make | 101 - .../content_resources_1.dir/cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_resources_1.dir/depend.make | 2 - .../content_resources_1.dir/flags.make | 12 - .../content_resources_1.dir/progress.make | 2 - .../content_resources_2.dir/DependInfo.cmake | 23 - .../content_resources_2.dir/build.make | 101 - .../content_resources_2.dir/cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../content_resources_2.dir/depend.make | 2 - .../content_resources_2.dir/flags.make | 12 - .../content_resources_2.dir/progress.make | 2 - .../content_tooling.dir/DependInfo.cmake | 22 - .../CMakeFiles/content_tooling.dir/build.make | 243 - .../content_tooling.dir/cmake_clean.cmake | 39 - .../content_tooling.dir/compiler_depend.make | 2 - .../content_tooling.dir/compiler_depend.ts | 2 - .../content_tooling.dir/progress.make | 33 - .../contentplugin.dir/DependInfo.cmake | 24 - .../CMakeFiles/contentplugin.dir/build.make | 127 - .../contentplugin.dir/cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../contentplugin.dir/compiler_depend.make | 2 - .../contentplugin.dir/compiler_depend.ts | 2 - .../CMakeFiles/contentplugin.dir/depend.make | 2 - .../CMakeFiles/contentplugin.dir/flags.make | 12 - .../CMakeFiles/contentplugin.dir/link.txt | 2 - .../contentplugin.dir/progress.make | 4 - .../AutogenInfo.json | 166 - .../DependInfo.cmake | 23 - .../contentplugin_autogen.dir/build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../contentplugin_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 86 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../contentplugin_init.dir/DependInfo.cmake | 24 - .../contentplugin_init.dir/build.make | 116 - .../contentplugin_init.dir/cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../contentplugin_init.dir/compiler_depend.ts | 2 - .../contentplugin_init.dir/depend.make | 2 - .../contentplugin_init.dir/flags.make | 12 - .../contentplugin_init.dir/progress.make | 3 - .../AutogenInfo.json | 169 - .../DependInfo.cmake | 23 - .../contentplugin_init_autogen.dir/build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 86 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - build/content/CMakeFiles/progress.marks | 1 - build/content/Debug1.qml | 66 - build/content/DebugBMS.qml | 69 - build/content/DebugItem1.ui.qml | 61 - build/content/DebugMain.qml | 65 - build/content/DebugMotor.qml | 52 - build/content/DebugOverview.qml | 5 - build/content/DebugPDU.qml | 53 - build/content/FaultMotorStatus.qml | 227 - build/content/FullBatterySlider.qml | 37 - build/content/FullSlider.qml | 56 - build/content/Makefile | 1279 ---- .../Pictures/Virginia_Tech_Hokies_logo.svg | 7 - .../battery-twotone-0-svgrepo-com.svg | 6 - build/content/Pictures/battery.svg | 6 - build/content/Pictures/battery_temp.svg | 11 - build/content/Pictures/controller_temp.svg | 3 - build/content/Pictures/leanAngleBack.png | Bin 55425 -> 0 bytes build/content/Pictures/motor_temp.svg | 12 - build/content/Pictures/motorcycleIcon.png | Bin 19552 -> 0 bytes build/content/Screen01.ui.qml | 101 - build/content/Speedometer.qml | 40 - build/content/SpeedometerDecorations.qml | 65 - build/content/TempSlider.qml | 65 - build/content/TemperatureIsland.qml | 70 - build/content/cmake_install.cmake | 39 - build/content/content_qml_module_dir_map.qrc | 6 - build/content/contentplugin_contentPlugin.cpp | 32 - .../contentplugin_contentPlugin_in.cpp | 36 - build/content/contentplugin_init.cpp | 2 - .../fonts/MesloLGSDZNerdFontMono-Regular.ttf | Bin 2308356 -> 0 bytes build/content/fonts/fonts.txt | 1 - build/content/fonts/nasalization-rg.otf | Bin 89220 -> 0 bytes .../qt6content_debug_metatypes.json | 0 build/content/qmldir | 28 - .../qmltypes/content_foreign_types.txt | 1 - .../Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc | 9 - .../Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc | 6 - .../Bolt_Dash_qml_loader_file_list.rsp | 8 - .../Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp | 13 - .../Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp | 15 - .../.rcc/qmllint/Bolt_Dash_module.rsp | 10 - .../.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp | 14 - .../.rcc/qrc_qmake_Bolt_Dash_init.cpp | 14 - .../Bolt_Dash_qml_module_dir_map.qrc | 6 - .../Bolt_Dashplugin_Bolt_DashPlugin.cpp | 32 - .../Bolt_Dashplugin_Bolt_DashPlugin_in.cpp | 36 - .../Bolt_Dash/Bolt_Dashplugin_init.cpp | 2 - .../CMakeFiles/Bolt_Dash.dir/DependInfo.cmake | 37 - .../CMakeFiles/Bolt_Dash.dir/build.make | 342 - .../Bolt_Dash.dir/cmake_clean.cmake | 43 - .../Bolt_Dash.dir/cmake_clean_target.cmake | 3 - .../Bolt_Dash.dir/compiler_depend.make | 2 - .../Bolt_Dash.dir/compiler_depend.ts | 2 - .../CMakeFiles/Bolt_Dash.dir/depend.make | 2 - .../CMakeFiles/Bolt_Dash.dir/flags.make | 12 - .../CMakeFiles/Bolt_Dash.dir/link.txt | 2 - .../CMakeFiles/Bolt_Dash.dir/progress.make | 22 - .../Bolt_Dash_autogen.dir/AutogenInfo.json | 127 - .../Bolt_Dash_autogen.dir/DependInfo.cmake | 23 - .../Bolt_Dash_autogen.dir/build.make | 93 - .../Bolt_Dash_autogen.dir/cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../Bolt_Dash_autogen.dir/compiler_depend.ts | 2 - .../Bolt_Dash_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../Bolt_Dash_qmllint.dir/DependInfo.cmake | 22 - .../Bolt_Dash_qmllint.dir/build.make | 92 - .../Bolt_Dash_qmllint.dir/cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../Bolt_Dash_qmllint.dir/compiler_depend.ts | 2 - .../Bolt_Dash_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../Bolt_Dash_qmllint_json.dir/build.make | 92 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../Bolt_Dash_qmllint_module.dir/build.make | 92 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../DependInfo.cmake | 29 - .../build.make | 129 - .../cmake_clean.cmake | 16 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 6 - .../DependInfo.cmake | 23 - .../Bolt_Dash_resources_1.dir/build.make | 101 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_resources_1.dir/depend.make | 2 - .../Bolt_Dash_resources_1.dir/flags.make | 12 - .../Bolt_Dash_resources_1.dir/progress.make | 2 - .../DependInfo.cmake | 23 - .../Bolt_Dash_resources_2.dir/build.make | 101 - .../cmake_clean.cmake | 9 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dash_resources_2.dir/depend.make | 2 - .../Bolt_Dash_resources_2.dir/flags.make | 12 - .../Bolt_Dash_resources_2.dir/progress.make | 2 - .../Bolt_Dash_tooling.dir/DependInfo.cmake | 22 - .../Bolt_Dash_tooling.dir/build.make | 103 - .../Bolt_Dash_tooling.dir/cmake_clean.cmake | 11 - .../compiler_depend.make | 2 - .../Bolt_Dash_tooling.dir/compiler_depend.ts | 2 - .../Bolt_Dash_tooling.dir/progress.make | 5 - .../Bolt_Dashplugin.dir/DependInfo.cmake | 24 - .../CMakeFiles/Bolt_Dashplugin.dir/build.make | 127 - .../Bolt_Dashplugin.dir/cmake_clean.cmake | 16 - .../cmake_clean_target.cmake | 3 - .../Bolt_Dashplugin.dir/compiler_depend.make | 2 - .../Bolt_Dashplugin.dir/compiler_depend.ts | 2 - .../Bolt_Dashplugin.dir/depend.make | 2 - .../CMakeFiles/Bolt_Dashplugin.dir/flags.make | 12 - .../CMakeFiles/Bolt_Dashplugin.dir/link.txt | 2 - .../Bolt_Dashplugin.dir/progress.make | 4 - .../AutogenInfo.json | 132 - .../DependInfo.cmake | 23 - .../Bolt_Dashplugin_autogen.dir/build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dashplugin_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 86 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../Bolt_Dashplugin_init.dir/DependInfo.cmake | 24 - .../Bolt_Dashplugin_init.dir/build.make | 116 - .../cmake_clean.cmake | 14 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../Bolt_Dashplugin_init.dir/depend.make | 2 - .../Bolt_Dashplugin_init.dir/flags.make | 12 - .../Bolt_Dashplugin_init.dir/progress.make | 3 - .../AutogenInfo.json | 135 - .../DependInfo.cmake | 23 - .../build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 86 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../CMakeDirectoryInformation.cmake | 16 - .../Bolt_Dash/CMakeFiles/progress.marks | 1 - build/imports/Bolt_Dash/Constants.qml | 29 - .../imports/Bolt_Dash/DirectoryFontLoader.qml | 34 - build/imports/Bolt_Dash/EventListModel.qml | 15 - .../imports/Bolt_Dash/EventListSimulator.qml | 25 - build/imports/Bolt_Dash/Makefile | 820 --- build/imports/Bolt_Dash/cmake_install.cmake | 39 - .../qt6bolt_dash_debug_metatypes.json | 0 build/imports/Bolt_Dash/qmldir | 11 - .../qmltypes/Bolt_Dash_foreign_types.txt | 1 - .../CMakeDirectoryInformation.cmake | 16 - build/imports/CMakeFiles/progress.marks | 1 - build/imports/IO/.rcc/qmake_IO.qrc | 6 - build/imports/IO/.rcc/qmllint/IOPlugin.rsp | 7 - .../imports/IO/.rcc/qmllint/IOPlugin_json.rsp | 9 - .../IO/.rcc/qmllint/IOPlugin_module.rsp | 8 - .../CMakeDirectoryInformation.cmake | 16 - .../IO/CMakeFiles/IO.dir/DependInfo.cmake | 23 - build/imports/IO/CMakeFiles/IO.dir/build.make | 111 - .../IO/CMakeFiles/IO.dir/cmake_clean.cmake | 14 - .../IO.dir/cmake_clean_target.cmake | 3 - .../IO/CMakeFiles/IO.dir/compiler_depend.make | 2 - .../IO/CMakeFiles/IO.dir/compiler_depend.ts | 2 - .../imports/IO/CMakeFiles/IO.dir/depend.make | 2 - build/imports/IO/CMakeFiles/IO.dir/flags.make | 12 - build/imports/IO/CMakeFiles/IO.dir/link.txt | 2 - .../IO/CMakeFiles/IO.dir/progress.make | 3 - .../CMakeFiles/IOPlugin.dir/DependInfo.cmake | 32 - .../IO/CMakeFiles/IOPlugin.dir/build.make | 203 - .../CMakeFiles/IOPlugin.dir/cmake_clean.cmake | 27 - .../IOPlugin.dir/compiler_depend.make | 2 - .../IOPlugin.dir/compiler_depend.ts | 2 - .../IO/CMakeFiles/IOPlugin.dir/depend.make | 2 - .../IO/CMakeFiles/IOPlugin.dir/flags.make | 12 - .../IO/CMakeFiles/IOPlugin.dir/link.txt | 1 - .../IO/CMakeFiles/IOPlugin.dir/progress.make | 11 - .../IOPlugin_autogen.dir/AutogenInfo.json | 126 - .../IOPlugin_autogen.dir/DependInfo.cmake | 23 - .../IOPlugin_autogen.dir/build.make | 93 - .../IOPlugin_autogen.dir/cmake_clean.cmake | 10 - .../IOPlugin_autogen.dir/compiler_depend.make | 2 - .../IOPlugin_autogen.dir/compiler_depend.ts | 2 - .../IOPlugin_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../IOPlugin_qmllint.dir/DependInfo.cmake | 22 - .../IOPlugin_qmllint.dir/build.make | 88 - .../IOPlugin_qmllint.dir/cmake_clean.cmake | 8 - .../IOPlugin_qmllint.dir/compiler_depend.make | 2 - .../IOPlugin_qmllint.dir/compiler_depend.ts | 2 - .../IOPlugin_qmllint.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../IOPlugin_qmllint_json.dir/build.make | 87 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../IOPlugin_qmllint_json.dir/progress.make | 1 - .../DependInfo.cmake | 22 - .../IOPlugin_qmllint_module.dir/build.make | 88 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../IOPlugin_qmllint_module.dir/progress.make | 1 - .../DependInfo.cmake | 29 - .../build.make | 129 - .../cmake_clean.cmake | 16 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 6 - .../IOPluginplugin.dir/DependInfo.cmake | 24 - .../CMakeFiles/IOPluginplugin.dir/build.make | 131 - .../IOPluginplugin.dir/cmake_clean.cmake | 16 - .../IOPluginplugin.dir/compiler_depend.make | 2 - .../IOPluginplugin.dir/compiler_depend.ts | 2 - .../CMakeFiles/IOPluginplugin.dir/depend.make | 2 - .../CMakeFiles/IOPluginplugin.dir/flags.make | 12 - .../IO/CMakeFiles/IOPluginplugin.dir/link.txt | 1 - .../IOPluginplugin.dir/progress.make | 4 - .../AutogenInfo.json | 115 - .../DependInfo.cmake | 23 - .../IOPluginplugin_autogen.dir/build.make | 93 - .../cmake_clean.cmake | 10 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../IOPluginplugin_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../build.make | 86 - .../cmake_clean.cmake | 8 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - .../IO_autogen.dir/AutogenInfo.json | 84 - .../IO_autogen.dir/DependInfo.cmake | 23 - .../IO/CMakeFiles/IO_autogen.dir/build.make | 93 - .../IO_autogen.dir/cmake_clean.cmake | 10 - .../IO_autogen.dir/compiler_depend.make | 2 - .../IO_autogen.dir/compiler_depend.ts | 2 - .../CMakeFiles/IO_autogen.dir/progress.make | 2 - .../DependInfo.cmake | 22 - .../IO_autogen_timestamp_deps.dir/build.make | 83 - .../cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../progress.make | 1 - build/imports/IO/CMakeFiles/progress.marks | 1 - .../qt_internal_plugins.dir/DependInfo.cmake | 22 - .../qt_internal_plugins.dir/build.make | 83 - .../qt_internal_plugins.dir/cmake_clean.cmake | 5 - .../compiler_depend.make | 2 - .../compiler_depend.ts | 2 - .../qt_internal_plugins.dir/progress.make | 1 - .../IO/IOPlugin_qml_module_dir_map.qrc | 6 - build/imports/IO/IOPluginplugin_IOPlugin.cpp | 26 - .../imports/IO/IOPluginplugin_IOPlugin_in.cpp | 28 - build/imports/IO/Makefile | 588 -- build/imports/IO/cmake_install.cmake | 39 - .../qt6ioplugin_debug_metatypes.json | 0 build/imports/IO/qmldir | 7 - .../IO/qmltypes/IOPlugin_foreign_types.txt | 1 - build/imports/Makefile | 189 - build/imports/cmake_install.cmake | 49 - .../qt6bolt_dashapp_debug_metatypes.json | 0 build/qmltypes/Bolt_DashApp_foreign_types.txt | 1 - 601 files changed, 2 insertions(+), 47217 deletions(-) delete mode 100644 build/.cmake/api/v1/query/client-vscode/query.json delete mode 100644 build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json delete mode 100644 build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json delete mode 100644 build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json delete mode 100644 build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json delete mode 100644 build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json delete mode 100644 build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json delete mode 100644 build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json delete mode 100644 build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json delete mode 100644 build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json delete mode 100644 build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json delete mode 100644 build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json delete mode 100644 build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json delete mode 100644 build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json delete mode 100644 build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json delete mode 100644 build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json delete mode 100644 build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json delete mode 100644 build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json delete mode 100644 build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json delete mode 100644 build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json delete mode 100644 build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json delete mode 100644 build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json delete mode 100644 build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json delete mode 100644 build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json delete mode 100644 build/.qt/QtDeploySupport.cmake delete mode 100644 build/.qt/QtDeployTargets.cmake delete mode 100644 build/.qt/deploy_qml_imports/Bolt_DashApp.cmake delete mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake delete mode 100644 build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp delete mode 100644 build/.rcc/Bolt_DashApp_raw_qml_0.qrc delete mode 100644 build/.rcc/configuration.qrc delete mode 100644 build/.rcc/qmake_Main.qrc delete mode 100644 build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp_json.rsp delete mode 100644 build/.rcc/qmllint/Bolt_DashApp_module.rsp delete mode 100644 build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake delete mode 100755 build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 build/CMakeFiles/3.30.0/CMakeSystem.cmake delete mode 100644 build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100644 build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/flags.make delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/link.txt delete mode 100644 build/CMakeFiles/Bolt_DashApp.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make delete mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/CMakeFiles/CMakeRuleHashes.txt delete mode 100644 build/CMakeFiles/Makefile.cmake delete mode 100644 build/CMakeFiles/Makefile2 delete mode 100644 build/CMakeFiles/TargetDirectories.txt delete mode 100644 build/CMakeFiles/all_qmllint.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/all_qmllint.dir/build.make delete mode 100644 build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/all_qmllint.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/all_qmllint.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/all_qmllint.dir/progress.make delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/build.make delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/all_qmllint_json.dir/progress.make delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/build.make delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/all_qmllint_module.dir/progress.make delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/build.make delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/all_qmltyperegistrations.dir/progress.make delete mode 100644 build/CMakeFiles/cmake.check_cache delete mode 100644 build/CMakeFiles/progress.marks delete mode 100644 build/Main/Bolt_DashApp_qml_module_dir_map.qrc delete mode 100644 build/Main/main.qml delete mode 100644 build/Main/qmldir delete mode 100644 build/Makefile delete mode 100644 build/cmake_install.cmake delete mode 100644 build/compile_commands.json delete mode 100644 build/content/.rcc/content_raw_qml_0.qrc delete mode 100644 build/content/.rcc/qmake_content.qrc delete mode 100644 build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp delete mode 100644 build/content/.rcc/qmllint/content.rsp delete mode 100644 build/content/.rcc/qmllint/content_json.rsp delete mode 100644 build/content/.rcc/qmllint/content_module.rsp delete mode 100644 build/content/.rcc/qrc_content_raw_qml_0_init.cpp delete mode 100644 build/content/.rcc/qrc_qmake_content_init.cpp delete mode 100644 build/content/App.qml delete mode 100644 build/content/BMSFaultDetails.qml delete mode 100644 build/content/BatteryReadout.qml delete mode 100644 build/content/BatterySlider.qml delete mode 100644 build/content/BikeStatus.qml delete mode 100644 build/content/BoltLeanAngle.qml delete mode 100644 build/content/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/content/CMakeFiles/content.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content.dir/build.make delete mode 100644 build/content/CMakeFiles/content.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content.dir/cmake_clean_target.cmake delete mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content.dir/depend.make delete mode 100644 build/content/CMakeFiles/content.dir/flags.make delete mode 100644 build/content/CMakeFiles/content.dir/link.txt delete mode 100644 build/content/CMakeFiles/content.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint_json.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmllint_module.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/build.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/build.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/depend.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/flags.make delete mode 100644 build/content/CMakeFiles/content_resources_1.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/build.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/depend.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/flags.make delete mode 100644 build/content/CMakeFiles/content_resources_2.dir/progress.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/content_tooling.dir/build.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/content_tooling.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake delete mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin.dir/depend.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/flags.make delete mode 100644 build/content/CMakeFiles/contentplugin.dir/link.txt delete mode 100644 build/content/CMakeFiles/contentplugin.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/flags.make delete mode 100644 build/content/CMakeFiles/contentplugin_init.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/content/CMakeFiles/progress.marks delete mode 100644 build/content/Debug1.qml delete mode 100644 build/content/DebugBMS.qml delete mode 100644 build/content/DebugItem1.ui.qml delete mode 100644 build/content/DebugMain.qml delete mode 100644 build/content/DebugMotor.qml delete mode 100644 build/content/DebugOverview.qml delete mode 100644 build/content/DebugPDU.qml delete mode 100644 build/content/FaultMotorStatus.qml delete mode 100644 build/content/FullBatterySlider.qml delete mode 100644 build/content/FullSlider.qml delete mode 100644 build/content/Makefile delete mode 100644 build/content/Pictures/Virginia_Tech_Hokies_logo.svg delete mode 100644 build/content/Pictures/battery-twotone-0-svgrepo-com.svg delete mode 100644 build/content/Pictures/battery.svg delete mode 100644 build/content/Pictures/battery_temp.svg delete mode 100644 build/content/Pictures/controller_temp.svg delete mode 100644 build/content/Pictures/leanAngleBack.png delete mode 100644 build/content/Pictures/motor_temp.svg delete mode 100644 build/content/Pictures/motorcycleIcon.png delete mode 100644 build/content/Screen01.ui.qml delete mode 100644 build/content/Speedometer.qml delete mode 100644 build/content/SpeedometerDecorations.qml delete mode 100644 build/content/TempSlider.qml delete mode 100644 build/content/TemperatureIsland.qml delete mode 100644 build/content/cmake_install.cmake delete mode 100644 build/content/content_qml_module_dir_map.qrc delete mode 100644 build/content/contentplugin_contentPlugin.cpp delete mode 100644 build/content/contentplugin_contentPlugin_in.cpp delete mode 100644 build/content/contentplugin_init.cpp delete mode 100755 build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf delete mode 100644 build/content/fonts/fonts.txt delete mode 100644 build/content/fonts/nasalization-rg.otf delete mode 100644 build/content/meta_types/qt6content_debug_metatypes.json delete mode 100644 build/content/qmldir delete mode 100644 build/content/qmltypes/content_foreign_types.txt delete mode 100644 build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc delete mode 100644 build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc delete mode 100644 build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp delete mode 100644 build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp delete mode 100644 build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp delete mode 100644 build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc delete mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp delete mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp delete mode 100644 build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/Bolt_Dash/CMakeFiles/progress.marks delete mode 100644 build/imports/Bolt_Dash/Constants.qml delete mode 100644 build/imports/Bolt_Dash/DirectoryFontLoader.qml delete mode 100644 build/imports/Bolt_Dash/EventListModel.qml delete mode 100644 build/imports/Bolt_Dash/EventListSimulator.qml delete mode 100644 build/imports/Bolt_Dash/Makefile delete mode 100644 build/imports/Bolt_Dash/cmake_install.cmake delete mode 100644 build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json delete mode 100644 build/imports/Bolt_Dash/qmldir delete mode 100644 build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt delete mode 100644 build/imports/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/CMakeFiles/progress.marks delete mode 100644 build/imports/IO/.rcc/qmake_IO.qrc delete mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin.rsp delete mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp delete mode 100644 build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp delete mode 100644 build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/depend.make delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/flags.make delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/link.txt delete mode 100644 build/imports/IO/CMakeFiles/IO.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make delete mode 100644 build/imports/IO/CMakeFiles/progress.marks delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts delete mode 100644 build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make delete mode 100644 build/imports/IO/IOPlugin_qml_module_dir_map.qrc delete mode 100644 build/imports/IO/IOPluginplugin_IOPlugin.cpp delete mode 100644 build/imports/IO/IOPluginplugin_IOPlugin_in.cpp delete mode 100644 build/imports/IO/Makefile delete mode 100644 build/imports/IO/cmake_install.cmake delete mode 100644 build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json delete mode 100644 build/imports/IO/qmldir delete mode 100644 build/imports/IO/qmltypes/IOPlugin_foreign_types.txt delete mode 100644 build/imports/Makefile delete mode 100644 build/imports/cmake_install.cmake delete mode 100644 build/meta_types/qt6bolt_dashapp_debug_metatypes.json delete mode 100644 build/qmltypes/Bolt_DashApp_foreign_types.txt diff --git a/.gitignore b/.gitignore index 405fbc1..a0d6992 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ **.user *.qtds.** **/CMakeCache.txt -.clangd \ No newline at end of file +.clangd +build/ \ No newline at end of file diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json deleted file mode 100644 index 82bb964..0000000 --- a/build/.cmake/api/v1/query/client-vscode/query.json +++ /dev/null @@ -1 +0,0 @@ -{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json b/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json deleted file mode 100644 index 453b46b..0000000 --- a/build/.cmake/api/v1/reply/cache-v2-4f2284380e850db36450.json +++ /dev/null @@ -1,5967 +0,0 @@ -{ - "entries" : - [ - { - "name" : "BUILD_QDS_COMPONENTS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build design studio components" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "Bolt_DashApp_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/build" - }, - { - "name" : "Bolt_DashApp_IS_TOP_LEVEL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "ON" - }, - { - "name" : "Bolt_DashApp_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "name" : "CMAKE_ADDR2LINE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_ADDR2LINE-NOTFOUND" - }, - { - "name" : "CMAKE_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ar" - }, - { - "name" : "CMAKE_BUILD_TYPE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "STRING", - "value" : "Debug" - }, - { - "name" : "CMAKE_CACHEFILE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "This is the directory where this CMakeCache.txt was created" - } - ], - "type" : "INTERNAL", - "value" : "/Users/mason/Documents/Code/dash-cpp/build" - }, - { - "name" : "CMAKE_CACHE_MAJOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Major version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_CACHE_MINOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minor version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "30" - }, - { - "name" : "CMAKE_CACHE_PATCH_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Patch version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "0" - }, - { - "name" : "CMAKE_COLOR_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable/Disable color output during build." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CMAKE_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake" - }, - { - "name" : "CMAKE_CPACK_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cpack program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cpack" - }, - { - "name" : "CMAKE_CTEST_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to ctest program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ctest" - }, - { - "name" : "CMAKE_CXX_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "CXX compiler" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/c++" - }, - { - "name" : "CMAKE_CXX_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_CXX_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_DLLTOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_DLLTOOL-NOTFOUND" - }, - { - "name" : "CMAKE_EDIT_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cache edit program executable." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake" - }, - { - "name" : "CMAKE_EXECUTABLE_FORMAT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executable file format" - } - ], - "type" : "INTERNAL", - "value" : "MACHO" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "BOOL", - "value" : "TRUE" - }, - { - "name" : "CMAKE_EXTRA_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of external makefile project generator." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake." - } - ], - "type" : "STATIC", - "value" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/pkgRedirects" - }, - { - "name" : "CMAKE_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator." - } - ], - "type" : "INTERNAL", - "value" : "Unix Makefiles" - }, - { - "name" : "CMAKE_GENERATOR_INSTANCE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Generator instance identifier." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator platform." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_TOOLSET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator toolset." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_HAVE_LIBC_PTHREAD", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_HOME_DIRECTORY", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Source directory with the top level CMakeLists.txt file for this project" - } - ], - "type" : "INTERNAL", - "value" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "name" : "CMAKE_INSTALL_BINDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "User executables (bin)" - } - ], - "type" : "PATH", - "value" : "bin" - }, - { - "name" : "CMAKE_INSTALL_DATADIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only architecture-independent data (DATAROOTDIR)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_DATAROOTDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only architecture-independent data root (share)" - } - ], - "type" : "PATH", - "value" : "share" - }, - { - "name" : "CMAKE_INSTALL_DOCDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_INCLUDEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "C header files (include)" - } - ], - "type" : "PATH", - "value" : "include" - }, - { - "name" : "CMAKE_INSTALL_INFODIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Info documentation (DATAROOTDIR/info)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_LIBDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Object code libraries (lib)" - } - ], - "type" : "PATH", - "value" : "lib" - }, - { - "name" : "CMAKE_INSTALL_LIBEXECDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Program executables (libexec)" - } - ], - "type" : "PATH", - "value" : "libexec" - }, - { - "name" : "CMAKE_INSTALL_LOCALEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Locale-dependent data (DATAROOTDIR/locale)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_LOCALSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Modifiable single-machine data (var)" - } - ], - "type" : "PATH", - "value" : "var" - }, - { - "name" : "CMAKE_INSTALL_MANDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Man documentation (DATAROOTDIR/man)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_NAME_TOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Users/mason/anaconda3/bin/install_name_tool" - }, - { - "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "C header files for non-gcc (/usr/include)" - } - ], - "type" : "PATH", - "value" : "/usr/include" - }, - { - "name" : "CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install path prefix, prepended onto install directories." - } - ], - "type" : "PATH", - "value" : "/usr/local" - }, - { - "name" : "CMAKE_INSTALL_RUNSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Run-time variable data (LOCALSTATEDIR/run)" - } - ], - "type" : "PATH", - "value" : "" - }, - { - "name" : "CMAKE_INSTALL_SBINDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "System admin executables (sbin)" - } - ], - "type" : "PATH", - "value" : "sbin" - }, - { - "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Modifiable architecture-independent data (com)" - } - ], - "type" : "PATH", - "value" : "com" - }, - { - "name" : "CMAKE_INSTALL_SYSCONFDIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Read-only single-machine data (etc)" - } - ], - "type" : "PATH", - "value" : "etc" - }, - { - "name" : "CMAKE_LINKER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ld" - }, - { - "name" : "CMAKE_MAKE_PROGRAM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/make" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_NM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/nm" - }, - { - "name" : "CMAKE_NUMBER_OF_MAKEFILES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "number of local generators" - } - ], - "type" : "INTERNAL", - "value" : "5" - }, - { - "name" : "CMAKE_OBJCOPY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_OBJCOPY-NOTFOUND" - }, - { - "name" : "CMAKE_OBJDUMP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/objdump" - }, - { - "name" : "CMAKE_OSX_ARCHITECTURES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Build architectures for OSX" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_OSX_DEPLOYMENT_TARGET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_OSX_SYSROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The product will be built against the headers and libraries located inside the indicated SDK." - } - ], - "type" : "PATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - }, - { - "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Platform information initialized" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_PROJECT_DESCRIPTION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_HOMEPAGE_URL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_NAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "Bolt_DashApp" - }, - { - "name" : "CMAKE_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/ranlib" - }, - { - "name" : "CMAKE_READELF", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_READELF-NOTFOUND" - }, - { - "name" : "CMAKE_ROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake installation." - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SKIP_INSTALL_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_SKIP_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when using shared libraries." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STRIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/strip" - }, - { - "name" : "CMAKE_TAPI", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/usr/bin/tapi" - }, - { - "name" : "CMAKE_UNAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "uname command" - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/uname" - }, - { - "name" : "CMAKE_VERBOSE_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." - } - ], - "type" : "BOOL", - "value" : "FALSE" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding OpenGL" - } - ], - "type" : "INTERNAL", - "value" : "[/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework][c ][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding Threads" - } - ], - "type" : "INTERNAL", - "value" : "[TRUE][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding WrapAtomic" - } - ], - "type" : "INTERNAL", - "value" : "[1][v()]" - }, - { - "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Details about finding WrapOpenGL" - } - ], - "type" : "INTERNAL", - "value" : "[ON][v()]" - }, - { - "name" : "HAVE_STDATOMIC", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Test HAVE_STDATOMIC" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "LINK_INSIGHT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Link Qt Insight Tracker library" - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "MACDEPLOYQT_EXECUTABLE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/opt/homebrew/bin/macdeployqt" - }, - { - "name" : "OPENGL_GLU_INCLUDE_DIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Include for the OpenGL GLU library" - } - ], - "type" : "PATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "OPENGL_INCLUDE_DIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Include for OpenGL" - } - ], - "type" : "PATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "OPENGL_gl_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "OpenGL GL library" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "OPENGL_glu_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "OpenGL GLU library" - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/OpenGL.framework" - }, - { - "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Additional directories where find(Qt6 ...) components are searched" - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "QT_FEATURE_accessibility", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: accessibility (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_accessibility_atspi_bridge", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_action", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: action (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_aesni", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: aesni (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_alloca", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_alloca_h", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca_h (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_alloca_malloc_h", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_android_style_assets", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: android_style_assets (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_animation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: animation (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_appstore_compliant", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_arm_crc32", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_arm_crypto", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: arm_crypto (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_avx", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512bw", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512bw (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512cd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512cd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512dq", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512dq (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512er", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512er (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512f", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512f (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512ifma", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512ifma (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512pf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512pf (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vbmi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vbmi2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_avx512vl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: avx512vl (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_backtrace", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: backtrace (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_brotli", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: brotli (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cborstreamreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cborstreamwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clipboard", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clipboard (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clock_gettime", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clock_gettime (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_clock_monotonic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_close_range", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: close_range (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_colornames", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: colornames (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_commandlineparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: commandlineparser (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_concatenatetablesproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_concurrent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: concurrent (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cpp_winrt", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cross_compile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cross_compile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cssparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cssparser (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_ctf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ctf (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cursor", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cursor (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx11_future", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx11_future (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx17_filesystem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_cxx20", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx20 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cxx2a", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx2a (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_cxx2b", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: cxx2b (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_datestring", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: datestring (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_datetimeparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: datetimeparser (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dbus", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dbus (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dbus_linked", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dbus_linked (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_debug", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: debug (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_debug_and_release", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: debug_and_release (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_desktopservices", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: desktopservices (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_developer_build", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: developer_build (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_direct2d", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: direct2d (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_direct2d1_1", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directwrite", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directwrite (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_directwrite3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_dladdr", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dladdr (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dlopen", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dlopen (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dnslookup", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dnslookup (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_doubleconversion", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: doubleconversion (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_draganddrop", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: draganddrop (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_drm_atomic", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_dtls", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dtls (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_dynamicgl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_easingcurve", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: easingcurve (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_egl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: egl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_egl_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_brcm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_egldevice", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_gbm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_mali", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_openwfd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_rcar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_viv", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_viv_wl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_vsp2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_eglfs_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_etw", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: etw (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_evdev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: evdev (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_f16c", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: f16c (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_filesystemiterator", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_filesystemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_filesystemwatcher", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_fontconfig", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: fontconfig (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_force_asserts", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: force_asserts (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_forkfd_pidfd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_framework", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: framework (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_freetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: freetype (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_futimens", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: futimens (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_future", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: future (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gc_binaries", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gc_binaries (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_gestures", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gestures (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_getauxval", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getauxval (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_getentropy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getentropy (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_getifaddrs", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: getifaddrs (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gif", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gif (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_glib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: glib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_graphicsframecapture", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gssapi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gssapi (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_gui", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: gui (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_harfbuzz", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_highdpiscaling", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_hijricalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: hijricalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_http", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: http (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_ico", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ico (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_icu", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: icu (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_identityproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_im", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: im (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_image_heuristic_mask", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_image_text", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: image_text (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_bmp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_ppm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_xbm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformat_xpm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageformatplugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_imageio_text_loading", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_inotify", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: inotify (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_integrityfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: integrityfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_integrityhid", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: integrityhid (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_intelcet", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: intelcet (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ipv6ifname", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ipv6ifname (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_islamiccivilcalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_itemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: itemmodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_jalalicalendar", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_journald", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: journald (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_kms", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: kms (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_largefile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: largefile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libinput", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libinput_axis_api", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libinput_hires_wheel_support", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_libproxy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libproxy (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_library", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: library (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libresolv", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libresolv (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_libudev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: libudev (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linkat", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linkat (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linux_netlink", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linux_netlink (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_linuxfb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: linuxfb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_localserver", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: localserver (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_lttng", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: lttng (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_mimetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mimetype (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mimetype_database", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mimetype_database (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mips_dsp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mips_dsp (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_mips_dspr2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_movie", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: movie (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_mtdev", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: mtdev (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_multiprocess", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: multiprocess (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_neon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: neon (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_network", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: network (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networkdiskcache", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkdiskcache (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networkinterface", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkinterface (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_networklistmanager", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networklistmanager (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_networkproxy", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: networkproxy (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_no_direct_extern_access", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ocsp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ocsp (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_opengl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengl (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_opengles2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles3 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles31", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles31 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opengles32", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opengles32 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_openssl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_openssl_hash", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl_hash (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_openssl_linked", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openssl_linked (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opensslv11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opensslv11 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_opensslv30", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: opensslv30 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_openvg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: openvg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_pcre2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pcre2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_pdf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pdf (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_permissions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: permissions (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_picture", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: picture (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_pkg_config", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: pkg_config (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_plugin_manifest", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_poll_exit_on_error", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_poll", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_poll (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_poll_pollts", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_pollts (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_ppoll", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_poll_select", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: poll_select (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_posix_fallocate", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_posix_sem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_sem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_posix_shm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: posix_shm (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_precompile_header", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: precompile_header (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_printsupport", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: printsupport (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_private_tests", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: private_tests (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_process", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: process (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_processenvironment", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: processenvironment (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_proxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: proxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_publicsuffix_qt", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: publicsuffix_qt (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_publicsuffix_system", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: publicsuffix_system (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qml_animation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_animation (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_debug", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_debug (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_delegate_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_delegate_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_itemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_itemmodel (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_jit", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_jit (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qml_list_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_list_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_locale", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_locale (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_network", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_network (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_object_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_object_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_preview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_preview (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_profiler", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_profiler (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_python", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_python (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_ssl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_ssl (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_table_model", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_table_model (from target Qt6::QmlModels)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_worker_script", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_worker_script (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_xml_http_request", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_xml_http_request (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qml_xmllistmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qml_xmllistmodel (from target Qt6::Qml)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_qqnx_imf", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qqnx_pps", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_qt_framework", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: qt_framework (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_animatedimage", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_animatedimage (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_canvas", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_canvas (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_designer", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_designer (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_draganddrop", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_draganddrop (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_flipable", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_flipable (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_gridview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_gridview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_itemview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_itemview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_listview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_listview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_particles", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_particles (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_path", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_path (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_pathview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_pathview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_pixmap_cache_threaded_download", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_pixmap_cache_threaded_download (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_positioners", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_positioners (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_repeater", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_repeater (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_shadereffect", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_shadereffect (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_sprite", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_sprite (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_tableview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_tableview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_treeview", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_treeview (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_quick_viewtransitions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: quick_viewtransitions (from target Qt6::Quick)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_raster_64bit", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_raster_fp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: raster_fp (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_rdrnd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rdrnd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_rdseed", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rdseed (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_reduce_exports", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: reduce_exports (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_reduce_relocations", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_regularexpression", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: regularexpression (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_relocatable", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: relocatable (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_renameat2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: renameat2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_res_setservers", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: res_setservers (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_rpath", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: rpath (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_schannel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: schannel (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sctp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sctp (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_securetransport", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: securetransport (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_separate_debug_info", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sessionmanager", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_settings", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: settings (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sha3_fast", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sha3_fast (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_shani", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shani (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_shared", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shared (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sharedmemory", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sharedmemory (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_shortcut", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: shortcut (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_signaling_nan", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: signaling_nan (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_simulator_and_device", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_slog2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: slog2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_socks5", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: socks5 (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sortfilterproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sql", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sql (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sse2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse3 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse4_1", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse4_1 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_sse4_2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sse4_2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ssl", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ssl (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sspi", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sspi (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_ssse3", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: ssse3 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_stack_protector_strong", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stack_protector_strong (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_standarditemmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_static", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: static (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_std_atomic64", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_stdlib_libcpp", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_stringlistmodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_syslog", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: syslog (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_system_doubleconversion", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_freetype", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_freetype (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_harfbuzz", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_jpeg", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_libb2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_libb2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_pcre2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_png", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_png (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_proxies", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_proxies (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_textmarkdownreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_system_xcb_xinput", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_system_zlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: system_zlib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_systemsemaphore", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_systemtrayicon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sysv_sem", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sysv_sem (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_sysv_shm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: sysv_shm (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_tabletevent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tabletevent (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_temporaryfile", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: temporaryfile (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_testlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: testlib (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textdate", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textdate (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_texthtmlparser", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textmarkdownreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textmarkdownwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_textodfwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_thread", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: thread (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_timezone", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: timezone (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_topleveldomain", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: topleveldomain (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_translation", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: translation (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_transposeproxymodel", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_tslib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tslib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_tuiotouch", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_udpsocket", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: udpsocket (from target Qt6::Network)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undocommand", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undocommand (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undogroup", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undogroup (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_undostack", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: undostack (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_use_bfd_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_gold_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_lld_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_use_mold_linker", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vaes", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vaes (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_validator", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: validator (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_vkgen", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vkgen (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_vkkhrdisplay", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vnc", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vnc (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vsp2", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vsp2 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_vulkan", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: vulkan (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_wasm_exceptions", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_wasm_simd128", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_wayland", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wayland (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_whatsthis", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: whatsthis (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_wheelevent", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: wheelevent (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_widgets", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: widgets (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_x86intrin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: x86intrin (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_egl_plugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_glx", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_glx_plugin", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_native_painting", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_sm", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xcb_xlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xkbcommon", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xkbcommon_x11", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xlib", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xlib (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_xml", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xml (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstream", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstream (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstreamreader", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xmlstreamwriter", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "QT_FEATURE_xrender", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: xrender (from target Qt6::Gui)" - } - ], - "type" : "INTERNAL", - "value" : "OFF" - }, - { - "name" : "QT_FEATURE_zstd", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Qt feature: zstd (from target Qt6::Core)" - } - ], - "type" : "INTERNAL", - "value" : "ON" - }, - { - "name" : "Qt6CoreTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6CoreTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6CoreTools" - }, - { - "name" : "Qt6Core_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Core." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Core" - }, - { - "name" : "Qt6DBusTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6DBusTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6DBusTools" - }, - { - "name" : "Qt6DBus_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6DBus." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6DBus" - }, - { - "name" : "Qt6GuiTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6GuiTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6GuiTools" - }, - { - "name" : "Qt6Gui_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Gui." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Gui" - }, - { - "name" : "Qt6Network_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Network." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Network" - }, - { - "name" : "Qt6OpenGL_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6OpenGL." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6OpenGL" - }, - { - "name" : "Qt6QmlBuiltins_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlBuiltins." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins" - }, - { - "name" : "Qt6QmlCompilerPlusPrivate_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivate." - } - ], - "type" : "PATH", - "value" : "Qt6QmlCompilerPlusPrivate_DIR-NOTFOUND" - }, - { - "name" : "Qt6QmlIntegration_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlIntegration." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration" - }, - { - "name" : "Qt6QmlModels_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlModels." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlModels" - }, - { - "name" : "Qt6QmlTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QmlTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QmlTools" - }, - { - "name" : "Qt6Qml_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Qml." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Qml" - }, - { - "name" : "Qt6QuickTools_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6QuickTools." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6QuickTools" - }, - { - "name" : "Qt6Quick_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6Quick." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6Quick" - }, - { - "name" : "Qt6_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "The directory containing a CMake configuration file for Qt6." - } - ], - "type" : "PATH", - "value" : "/opt/homebrew/lib/cmake/Qt6" - }, - { - "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" - }, - { - "name" : "Vulkan_GLSLC_EXECUTABLE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" - }, - { - "name" : "Vulkan_INCLUDE_DIR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a file." - } - ], - "type" : "PATH", - "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" - }, - { - "name" : "Vulkan_LIBRARY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a library." - } - ], - "type" : "FILEPATH", - "value" : "Vulkan_LIBRARY-NOTFOUND" - }, - { - "name" : "WrapOpenGL_AGL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to a library." - } - ], - "type" : "FILEPATH", - "value" : "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks/AGL.framework" - }, - { - "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "CMAKE_INSTALL_PREFIX during last run" - } - ], - "type" : "INTERNAL", - "value" : "/usr/local" - }, - { - "name" : "__qt_qml_macros_module_base_dir", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "/opt/homebrew/lib/cmake/Qt6Qml" - } - ], - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json deleted file mode 100644 index 84865a0..0000000 --- a/build/.cmake/api/v1/reply/cmakeFiles-v1-81ec662148f00936beea.json +++ /dev/null @@ -1,5038 +0,0 @@ -{ - "inputs" : - [ - { - "path" : "CMakeLists.txt" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystem.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeUnixFindMake.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Determine-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCompilerIdDetection.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/FeatureTesting.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "path" : "qmlmodules" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "path" : "insight" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - }, - { - "path" : "content/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" - }, - { - "path" : "imports/CMakeLists.txt" - }, - { - "path" : "imports/Bolt_Dash/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - }, - { - "path" : "imports/IO/CMakeLists.txt" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - }, - { - "isExternal" : true, - "path" : "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - }, - { - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" - } - ], - "kind" : "cmakeFiles", - "paths" : - { - "build" : "/Users/mason/Documents/Code/dash-cpp/build", - "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - "version" : - { - "major" : 1, - "minor" : 1 - } -} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json b/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json deleted file mode 100644 index 8ef1498..0000000 --- a/build/.cmake/api/v1/reply/codemodel-v2-9e1aa1876566bda061f7.json +++ /dev/null @@ -1,650 +0,0 @@ -{ - "configurations" : - [ - { - "directories" : - [ - { - "build" : ".", - "childIndexes" : - [ - 1, - 2 - ], - "hasInstallRule" : true, - "jsonFile" : "directory-.-Debug-c763ad29e698621ff67d.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "projectIndex" : 0, - "source" : ".", - "targetIndexes" : - [ - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 38, - 39, - 40, - 41 - ] - }, - { - "build" : "content", - "jsonFile" : "directory-content-Debug-61a361743d88a3b42c45.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 0, - "projectIndex" : 0, - "source" : "content", - "targetIndexes" : - [ - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57 - ] - }, - { - "build" : "imports", - "childIndexes" : - [ - 3, - 4 - ], - "jsonFile" : "directory-imports-Debug-615074570c3908afab44.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 0, - "projectIndex" : 0, - "source" : "imports" - }, - { - "build" : "imports/Bolt_Dash", - "jsonFile" : "directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 2, - "projectIndex" : 0, - "source" : "imports/Bolt_Dash", - "targetIndexes" : - [ - 0, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "build" : "imports/IO", - "jsonFile" : "directory-imports.IO-Debug-292cee666d28555cd386.json", - "minimumCMakeVersion" : - { - "string" : "3.16" - }, - "parentIndex" : 2, - "projectIndex" : 0, - "source" : "imports/IO", - "targetIndexes" : - [ - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 58 - ] - } - ], - "name" : "Debug", - "projects" : - [ - { - "directoryIndexes" : - [ - 0, - 1, - 2, - 3, - 4 - ], - "name" : "Bolt_DashApp", - "targetIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58 - ] - } - ], - "targets" : - [ - { - "directoryIndex" : 3, - "id" : "Bolt_Dash::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json", - "name" : "Bolt_Dash", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json", - "name" : "Bolt_DashApp", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json", - "name" : "Bolt_DashApp_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json", - "name" : "Bolt_DashApp_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json", - "name" : "Bolt_DashApp_qmlimportscan", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json", - "name" : "Bolt_DashApp_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json", - "name" : "Bolt_DashApp_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json", - "name" : "Bolt_DashApp_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json", - "name" : "Bolt_DashApp_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", - "jsonFile" : "target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json", - "name" : "Bolt_DashApp_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json", - "name" : "Bolt_Dash_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json", - "name" : "Bolt_Dash_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json", - "name" : "Bolt_Dash_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json", - "name" : "Bolt_Dash_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json", - "name" : "Bolt_Dash_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json", - "name" : "Bolt_Dash_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json", - "name" : "Bolt_Dash_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json", - "name" : "Bolt_Dash_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json", - "name" : "Bolt_Dash_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json", - "name" : "Bolt_Dashplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json", - "name" : "Bolt_Dashplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json", - "name" : "Bolt_Dashplugin_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json", - "name" : "Bolt_Dashplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json", - "name" : "Bolt_Dashplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 3, - "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929", - "jsonFile" : "target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json", - "name" : "Bolt_Dashplugin_init_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IO::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IO-Debug-e29c6efea1915d85c9e6.json", - "name" : "IO", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin-Debug-e858e202624a3206316e.json", - "name" : "IOPlugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json", - "name" : "IOPlugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json", - "name" : "IOPlugin_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json", - "name" : "IOPlugin_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json", - "name" : "IOPlugin_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json", - "name" : "IOPlugin_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json", - "name" : "IOPlugin_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPluginplugin::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json", - "name" : "IOPluginplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json", - "name" : "IOPluginplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json", - "name" : "IOPluginplugin_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IO_autogen::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IO_autogen-Debug-708994b234752366cd0d.json", - "name" : "IO_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "jsonFile" : "target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json", - "name" : "IO_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "all_qmllint::@6890427a1f51a3e7e1df", - "jsonFile" : "target-all_qmllint-Debug-c143a655f3229854e7a1.json", - "name" : "all_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "all_qmllint_json::@6890427a1f51a3e7e1df", - "jsonFile" : "target-all_qmllint_json-Debug-02e8fac95724d14079aa.json", - "name" : "all_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "all_qmllint_module::@6890427a1f51a3e7e1df", - "jsonFile" : "target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json", - "name" : "all_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 0, - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", - "jsonFile" : "target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json", - "name" : "all_qmltyperegistrations", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content-Debug-84c13ddb4d05224351df.json", - "name" : "content", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json", - "name" : "content_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json", - "name" : "content_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_qmllint::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint-Debug-8142ca0703017c202a06.json", - "name" : "content_qmllint", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json", - "name" : "content_qmllint_json", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json", - "name" : "content_qmllint_module", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json", - "name" : "content_qmltyperegistration", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_resources_1::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_resources_1-Debug-3dfee9aca78a1157a591.json", - "name" : "content_resources_1", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_resources_2::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_resources_2-Debug-4e21ea579599e366b50a.json", - "name" : "content_resources_2", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "content_tooling::@73a38b9e525c9c2ae262", - "jsonFile" : "target-content_tooling-Debug-31cbc5df92c7478ca653.json", - "name" : "content_tooling", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin-Debug-2c9a48946c97ef59f438.json", - "name" : "contentplugin", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json", - "name" : "contentplugin_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json", - "name" : "contentplugin_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin_init::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_init-Debug-202e8c1956da63ca4598.json", - "name" : "contentplugin_init", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json", - "name" : "contentplugin_init_autogen", - "projectIndex" : 0 - }, - { - "directoryIndex" : 1, - "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "jsonFile" : "target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json", - "name" : "contentplugin_init_autogen_timestamp_deps", - "projectIndex" : 0 - }, - { - "directoryIndex" : 4, - "id" : "qt_internal_plugins::@6adf3e82e1b4a763410e", - "jsonFile" : "target-qt_internal_plugins-Debug-73d78de408bb540280e3.json", - "name" : "qt_internal_plugins", - "projectIndex" : 0 - } - ] - } - ], - "kind" : "codemodel", - "paths" : - { - "build" : "/Users/mason/Documents/Code/dash-cpp/build", - "source" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - "version" : - { - "major" : 2, - "minor" : 7 - } -} diff --git a/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json b/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json deleted file mode 100644 index 48285fd..0000000 --- a/build/.cmake/api/v1/reply/directory-.-Debug-c763ad29e698621ff67d.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : - [ - "install" - ], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - }, - { - "command" : 0, - "file" : 0, - "line" : 59, - "parent" : 0 - } - ] - }, - "installers" : - [ - { - "backtrace" : 1, - "component" : "Unspecified", - "destination" : "bin", - "paths" : - [ - "Bolt_DashApp" - ], - "targetId" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "targetIndex" : 1, - "type" : "target" - } - ], - "paths" : - { - "build" : ".", - "source" : "." - } -} diff --git a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json b/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json deleted file mode 100644 index 4437fd9..0000000 --- a/build/.cmake/api/v1/reply/directory-content-Debug-61a361743d88a3b42c45.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "content", - "source" : "content" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json b/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json deleted file mode 100644 index 6572549..0000000 --- a/build/.cmake/api/v1/reply/directory-imports-Debug-615074570c3908afab44.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports", - "source" : "imports" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json b/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json deleted file mode 100644 index 9c2180d..0000000 --- a/build/.cmake/api/v1/reply/directory-imports.Bolt_Dash-Debug-826bc3c800d0ab2caed0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - } -} diff --git a/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json b/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json deleted file mode 100644 index c1a5c66..0000000 --- a/build/.cmake/api/v1/reply/directory-imports.IO-Debug-292cee666d28555cd386.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - } -} diff --git a/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json b/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json deleted file mode 100644 index 15c8c45..0000000 --- a/build/.cmake/api/v1/reply/index-2024-08-28T20-25-29-0248.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "cmake" : - { - "generator" : - { - "multiConfig" : false, - "name" : "Unix Makefiles" - }, - "paths" : - { - "cmake" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "cpack" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cpack", - "ctest" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/ctest", - "root" : "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake" - }, - "version" : - { - "isDirty" : false, - "major" : 3, - "minor" : 30, - "patch" : 0, - "string" : "3.30.0", - "suffix" : "" - } - }, - "objects" : - [ - { - "jsonFile" : "codemodel-v2-9e1aa1876566bda061f7.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 7 - } - }, - { - "jsonFile" : "cache-v2-4f2284380e850db36450.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-81ec662148f00936beea.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 1 - } - }, - { - "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ], - "reply" : - { - "client-vscode" : - { - "query.json" : - { - "requests" : - [ - { - "kind" : "cache", - "version" : 2 - }, - { - "kind" : "codemodel", - "version" : 2 - }, - { - "kind" : "toolchains", - "version" : 1 - }, - { - "kind" : "cmakeFiles", - "version" : 1 - } - ], - "responses" : - [ - { - "jsonFile" : "cache-v2-4f2284380e850db36450.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "codemodel-v2-9e1aa1876566bda061f7.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 7 - } - }, - { - "jsonFile" : "toolchains-v1-3df0db7d651d973da145.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-81ec662148f00936beea.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 1 - } - } - ] - } - } - } -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json b/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json deleted file mode 100644 index 0101f00..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash-Debug-a243f40dd973bf6c21d7.json +++ /dev/null @@ -1,703 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/libBolt_Dash.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "_qt_internal_target_enable_qmlcachegen", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2682, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 647, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2730, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 541, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 3057, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 3082, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2882, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1415, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 3048, - "parent" : 9 - }, - { - "command" : 14, - "file" : 2, - "line" : 590, - "parent" : 5 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 15 - }, - { - "command" : 12, - "file" : 0, - "line" : 2390, - "parent" : 16 - }, - { - "command" : 10, - "file" : 0, - "line" : 2004, - "parent" : 17 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 15, - "file" : 2, - "line" : 2618, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 1239, - "parent" : 20 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 14, - "file" : 2, - "line" : 2749, - "parent" : 6 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 29 - }, - { - "command" : 12, - "file" : 0, - "line" : 2390, - "parent" : 30 - }, - { - "command" : 10, - "file" : 0, - "line" : 2004, - "parent" : 31 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 17, - "file" : 3, - "line" : 1, - "parent" : 33 - }, - { - "command" : 16, - "file" : 0, - "line" : 768, - "parent" : 34 - }, - { - "command" : 10, - "file" : 0, - "line" : 2117, - "parent" : 35 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 3, - 5, - 6, - 8, - 10, - 12, - 13 - ] - } - ], - "dependencies" : - [ - { - "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929" - }, - { - "backtrace" : 7, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dash::@4896ae50d004c4a48929", - "name" : "Bolt_Dash", - "nameOnDisk" : "libBolt_Dash.a", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 17 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 4, - 7, - 9, - 11, - 14, - 15, - 16, - 30, - 31, - 32, - 33 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 2, - 3, - 5, - 6, - 8, - 10, - 12, - 13 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 19, - "path" : "imports/Bolt_Dash/Constants.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 21, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 23, - "path" : "imports/Bolt_Dash/DirectoryFontLoader.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 25, - "path" : "imports/Bolt_Dash/EventListModel.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 27, - "path" : "imports/Bolt_Dash/EventListSimulator.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 32, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 36, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json deleted file mode 100644 index 1d4eefd..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp-Debug-eb462bdc3b44739a892a.json +++ /dev/null @@ -1,1600 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "Bolt_DashApp" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_executable", - "_qt_internal_create_executable", - "qt6_add_executable", - "qt_add_executable", - "install", - "target_link_libraries", - "__qt_internal_propagate_object_files", - "__qt_internal_propagate_object_library", - "qt6_add_qml_module", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "include", - "set_target_properties", - "find_package", - "find_dependency", - "_qt_internal_find_third_party_dependencies", - "qt6_add_qml_plugin", - "add_dependencies", - "_qt_internal_scan_qml_imports", - "_qt_internal_generate_deploy_qml_imports_script", - "cmake_language", - "_qt_internal_finalize_executable", - "qt6_finalize_target", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt_add_resources", - "qt6_extract_metatypes", - "_qt_internal_target_enable_qmlcachegen", - "_qt_internal_expose_deferred_files_to_ide" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "qmlmodules", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 16, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 869, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 575, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 629, - "parent" : 3 - }, - { - "command" : 4, - "file" : 1, - "line" : 59, - "parent" : 0 - }, - { - "command" : 5, - "file" : 1, - "line" : 40, - "parent" : 0 - }, - { - "file" : 3 - }, - { - "command" : 8, - "file" : 3, - "line" : 5, - "parent" : 7 - }, - { - "command" : 7, - "file" : 2, - "line" : 668, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 9 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 10 - }, - { - "file" : 4 - }, - { - "command" : 8, - "file" : 4, - "line" : 10, - "parent" : 12 - }, - { - "command" : 7, - "file" : 2, - "line" : 668, - "parent" : 13 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 14 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 15 - }, - { - "command" : 11, - "file" : 2, - "line" : 590, - "parent" : 8 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 17 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 18 - }, - { - "command" : 7, - "file" : 0, - "line" : 1995, - "parent" : 19 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 20 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 21 - }, - { - "command" : 12, - "file" : 2, - "line" : 647, - "parent" : 8 - }, - { - "command" : 11, - "file" : 2, - "line" : 2749, - "parent" : 23 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 24 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 25 - }, - { - "command" : 7, - "file" : 0, - "line" : 1995, - "parent" : 26 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 27 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 28 - }, - { - "command" : 11, - "file" : 2, - "line" : 590, - "parent" : 13 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 30 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 31 - }, - { - "command" : 7, - "file" : 0, - "line" : 1995, - "parent" : 32 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 33 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 34 - }, - { - "command" : 12, - "file" : 2, - "line" : 647, - "parent" : 13 - }, - { - "command" : 11, - "file" : 2, - "line" : 2749, - "parent" : 36 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 37 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 38 - }, - { - "command" : 7, - "file" : 0, - "line" : 1995, - "parent" : 39 - }, - { - "command" : 6, - "file" : 0, - "line" : 1922, - "parent" : 40 - }, - { - "command" : 5, - "file" : 0, - "line" : 1870, - "parent" : 41 - }, - { - "command" : 13, - "file" : 1, - "line" : 52, - "parent" : 0 - }, - { - "file" : 5, - "parent" : 43 - }, - { - "command" : 5, - "file" : 5, - "line" : 14, - "parent" : 44 - }, - { - "command" : 15, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "file" : 8, - "parent" : 46 - }, - { - "command" : 15, - "file" : 8, - "line" : 167, - "parent" : 47 - }, - { - "file" : 7, - "parent" : 48 - }, - { - "command" : 13, - "file" : 7, - "line" : 55, - "parent" : 49 - }, - { - "file" : 6, - "parent" : 50 - }, - { - "command" : 14, - "file" : 6, - "line" : 62, - "parent" : 51 - }, - { - "command" : 15, - "file" : 8, - "line" : 167, - "parent" : 47 - }, - { - "file" : 13, - "parent" : 53 - }, - { - "command" : 13, - "file" : 13, - "line" : 43, - "parent" : 54 - }, - { - "file" : 12, - "parent" : 55 - }, - { - "command" : 17, - "file" : 12, - "line" : 33, - "parent" : 56 - }, - { - "command" : 16, - "file" : 11, - "line" : 36, - "parent" : 57 - }, - { - "command" : 15, - "file" : 10, - "line" : 76, - "parent" : 58 - }, - { - "file" : 9, - "parent" : 59 - }, - { - "command" : 5, - "file" : 9, - "line" : 48, - "parent" : 60 - }, - { - "command" : 13, - "file" : 13, - "line" : 55, - "parent" : 54 - }, - { - "file" : 14, - "parent" : 62 - }, - { - "command" : 14, - "file" : 14, - "line" : 62, - "parent" : 63 - }, - { - "command" : 18, - "file" : 2, - "line" : 625, - "parent" : 8 - }, - { - "command" : 5, - "file" : 2, - "line" : 2227, - "parent" : 65 - }, - { - "command" : 18, - "file" : 2, - "line" : 625, - "parent" : 13 - }, - { - "command" : 5, - "file" : 2, - "line" : 2227, - "parent" : 67 - }, - { - "command" : 15, - "file" : 8, - "line" : 167, - "parent" : 47 - }, - { - "file" : 16, - "parent" : 69 - }, - { - "command" : 13, - "file" : 16, - "line" : 56, - "parent" : 70 - }, - { - "file" : 15, - "parent" : 71 - }, - { - "command" : 14, - "file" : 15, - "line" : 62, - "parent" : 72 - }, - { - "command" : 5, - "file" : 0, - "line" : 576, - "parent" : 2 - }, - { - "command" : 15, - "file" : 8, - "line" : 167, - "parent" : 47 - }, - { - "file" : 18, - "parent" : 75 - }, - { - "command" : 13, - "file" : 18, - "line" : 57, - "parent" : 76 - }, - { - "file" : 17, - "parent" : 77 - }, - { - "command" : 14, - "file" : 17, - "line" : 62, - "parent" : 78 - }, - { - "command" : 8, - "file" : 5, - "line" : 4, - "parent" : 44 - }, - { - "command" : 12, - "file" : 2, - "line" : 647, - "parent" : 80 - }, - { - "command" : 19, - "file" : 2, - "line" : 2730, - "parent" : 81 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 24, - "file" : 19, - "line" : 1, - "parent" : 83 - }, - { - "command" : 23, - "file" : 0, - "line" : 774, - "parent" : 84 - }, - { - "command" : 22, - "file" : 0, - "line" : 678, - "parent" : 85 - }, - { - "command" : 21, - "file" : 0, - "line" : 678, - "parent" : 86 - }, - { - "command" : 20, - "file" : 2, - "line" : 3468, - "parent" : 87 - }, - { - "command" : 19, - "file" : 2, - "line" : 3284, - "parent" : 88 - }, - { - "command" : 25, - "file" : 1, - "line" : 38, - "parent" : 0 - }, - { - "command" : 26, - "file" : 2, - "line" : 541, - "parent" : 80 - }, - { - "command" : 25, - "file" : 2, - "line" : 3057, - "parent" : 91 - }, - { - "command" : 25, - "file" : 2, - "line" : 3082, - "parent" : 91 - }, - { - "command" : 28, - "file" : 1, - "line" : 32, - "parent" : 0 - }, - { - "command" : 11, - "file" : 0, - "line" : 389, - "parent" : 94 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 95 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 96 - }, - { - "command" : 27, - "file" : 0, - "line" : 2004, - "parent" : 97 - }, - { - "command" : 29, - "file" : 2, - "line" : 2882, - "parent" : 91 - }, - { - "command" : 27, - "file" : 0, - "line" : 1415, - "parent" : 99 - }, - { - "command" : 27, - "file" : 2, - "line" : 3048, - "parent" : 91 - }, - { - "command" : 11, - "file" : 2, - "line" : 590, - "parent" : 80 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 102 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 103 - }, - { - "command" : 27, - "file" : 0, - "line" : 2004, - "parent" : 104 - }, - { - "command" : 27, - "file" : 2, - "line" : 2514, - "parent" : 81 - }, - { - "command" : 30, - "file" : 2, - "line" : 2618, - "parent" : 81 - }, - { - "command" : 27, - "file" : 2, - "line" : 1239, - "parent" : 107 - }, - { - "command" : 27, - "file" : 2, - "line" : 2666, - "parent" : 81 - }, - { - "command" : 11, - "file" : 2, - "line" : 2749, - "parent" : 81 - }, - { - "command" : 10, - "file" : 0, - "line" : 337, - "parent" : 110 - }, - { - "command" : 9, - "file" : 0, - "line" : 2390, - "parent" : 111 - }, - { - "command" : 27, - "file" : 0, - "line" : 2004, - "parent" : 112 - }, - { - "command" : 31, - "file" : 0, - "line" : 768, - "parent" : 84 - }, - { - "command" : 27, - "file" : 0, - "line" : 2117, - "parent" : 114 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 74, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_GUI_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_OPENGL_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QMLMODELS_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QUICK_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQuick.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQmlModels.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtOpenGL.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include" - }, - { - "backtrace" : 90, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers" - }, - { - "backtrace" : 92, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 93, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtGui.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQuick.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQmlModels.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtOpenGL.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 74 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1, - 3, - 4, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 17, - 18, - 20, - 21, - 22 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 82, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 89, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 45, - "id" : "content::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 45, - "id" : "content_resources_1::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 45, - "id" : "contentplugin::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 45, - "id" : "content_resources_2::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 45, - "id" : "contentplugin_init::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 45, - "id" : "Bolt_Dash::@4896ae50d004c4a48929" - }, - { - "backtrace" : 45, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" - }, - { - "backtrace" : 45, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" - }, - { - "backtrace" : 45, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" - }, - { - "backtrace" : 45, - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929" - }, - { - "backtrace" : 45, - "id" : "IOPlugin::@6adf3e82e1b4a763410e" - }, - { - "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 0, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df" - } - ], - "id" : "Bolt_DashApp::@6890427a1f51a3e7e1df", - "install" : - { - "destinations" : - [ - { - "backtrace" : 5, - "path" : "bin" - } - ], - "prefix" : - { - "path" : "/usr/local" - } - }, - "link" : - { - "commandFragments" : - [ - { - "fragment" : "-g", - "role" : "flags" - }, - { - "fragment" : "", - "role" : "flags" - }, - { - "backtrace" : 6, - "fragment" : "-Xlinker", - "role" : "flags" - }, - { - "backtrace" : 6, - "fragment" : "-no_warn_duplicate_libraries", - "role" : "flags" - }, - { - "fragment" : "-F/opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "role" : "libraries" - }, - { - "backtrace" : 11, - "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 11, - "fragment" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 16, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 16, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 22, - "fragment" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 29, - "fragment" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 35, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 42, - "fragment" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "/opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "-lpigpio", - "role" : "libraries" - }, - { - "backtrace" : 45, - "fragment" : "content/libcontentplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 45, - "fragment" : "imports/Bolt_Dash/libBolt_Dashplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 45, - "fragment" : "imports/IO/libIOPlugin.dylib", - "role" : "libraries" - }, - { - "backtrace" : 45, - "fragment" : "content/libcontentplugin.a", - "role" : "libraries" - }, - { - "backtrace" : 52, - "fragment" : "/opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels", - "role" : "libraries" - }, - { - "backtrace" : 52, - "fragment" : "/opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "/opt/homebrew/lib/QtGui.framework/Versions/A/QtGui", - "role" : "libraries" - }, - { - "backtrace" : 61, - "fragment" : "-framework OpenGL", - "role" : "libraries" - }, - { - "fragment" : "-framework AGL", - "role" : "libraries" - }, - { - "backtrace" : 64, - "fragment" : "-framework AppKit", - "role" : "libraries" - }, - { - "backtrace" : 64, - "fragment" : "-framework ImageIO", - "role" : "libraries" - }, - { - "backtrace" : 64, - "fragment" : "-framework Metal", - "role" : "libraries" - }, - { - "backtrace" : 66, - "fragment" : "content/libcontent.a", - "role" : "libraries" - }, - { - "backtrace" : 68, - "fragment" : "imports/Bolt_Dash/libBolt_Dash.a", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 73, - "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", - "role" : "libraries" - }, - { - "backtrace" : 73, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 74, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 79, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 79, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "Bolt_DashApp", - "nameOnDisk" : "Bolt_DashApp", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 28, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1, - 3, - 4, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 17, - 18, - 20, - 21, - 22 - ] - }, - { - "name" : "Header Files", - "sourceIndexes" : - [ - 2, - 5, - 6 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 16, - 19, - 23, - 24, - 25, - 26, - 27 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/main.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "path" : "backend.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "backend.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "can.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "path" : "can.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 4, - "path" : "web.h", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "web.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "gpsprocessing.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/includes/source/NMEAParser.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/includes/source/GPSService.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/includes/source/GPSFix.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/includes/source/NMEACommand.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "src/includes/source/NumberConversion.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "compileGroupIndex" : 0, - "path" : "nmea_decoder.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 98, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 100, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 101, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 105, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 106, - "path" : "main.qml", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 108, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 109, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 113, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 115, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 115, - "path" : "qtquickcontrols2.conf", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 115, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 115, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/qmldir", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 115, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 74, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 6, - "path" : "/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 45, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 45, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 45, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json", - "sourceGroupIndex" : 0 - } - ], - "type" : "EXECUTABLE" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json deleted file mode 100644 index 0892ca5..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen-Debug-ecac5cdf9083af5a0e90.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_autogen::@6890427a1f51a3e7e1df", - "isGeneratorProvided" : true, - "name" : "Bolt_DashApp_autogen", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json deleted file mode 100644 index 5de4a32..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_autogen_timestamp_deps-Debug-dd6fa5d8215e24bf5e96.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 0, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "IOPlugin::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df", - "isGeneratorProvided" : true, - "name" : "Bolt_DashApp_autogen_timestamp_deps", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json deleted file mode 100644 index ca06261..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmlimportscan-Debug-c50036dcb3d9905198cb.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_scan_qml_imports", - "_qt_internal_generate_deploy_qml_imports_script", - "cmake_language", - "_qt_internal_finalize_executable", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "file" : 3, - "line" : -1, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 1, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 774, - "parent" : 2 - }, - { - "command" : 3, - "file" : 1, - "line" : 678, - "parent" : 3 - }, - { - "command" : 2, - "file" : 1, - "line" : 678, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 3468, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 3282, - "parent" : 6 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_qmlimportscan::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmlimportscan", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 7, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json deleted file mode 100644 index 37c7ba3..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint-Debug-86360ad26642c7135a80.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 962, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json deleted file mode 100644 index 96c817a..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_json-Debug-e6f29d11dfb6cf4124b2.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 989, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint_json", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json deleted file mode 100644 index cdd575f..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmllint_module-Debug-09c57076607543db8839.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1027, - "parent" : 5 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmllint_module", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json deleted file mode 100644 index 632fc3d..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_qmltyperegistration-Debug-bed60cad2623cab775fd.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "include" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 3018, - "parent" : 4 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_DashApp_autogen_timestamp_deps::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_qmltyperegistration", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4, - 5, - 6 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json b/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json deleted file mode 100644 index a465d89..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_DashApp_tooling-Debug-b5a316b22109d18669c5.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2729, - "parent" : 4 - }, - { - "command" : 4, - "file" : 0, - "line" : 2732, - "parent" : 4 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_DashApp_tooling::@6890427a1f51a3e7e1df", - "name" : "Bolt_DashApp_tooling", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/main.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/Main/main.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json deleted file mode 100644 index b756b50..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen-Debug-441b69b2d2859eb87ef9.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dash_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json deleted file mode 100644 index 452eb3b..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_autogen_timestamp_deps-Debug-088cb1adfedc1814c818.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dash_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json deleted file mode 100644 index a1f284e..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint-Debug-8f84f953a3c3747dcfa4.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 962, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json deleted file mode 100644 index e65e1a7..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_json-Debug-b9482acbc0f5cb9eee92.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 989, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint_json", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json deleted file mode 100644 index a102fae..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmllint_module-Debug-5161ed4a6133ec9c44db.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1027, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmllint_module", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json deleted file mode 100644 index 64e0b4b..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_qmltyperegistration-Debug-a66ba952e1eb06fb9c42.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 3018, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_Dash_autogen_timestamp_deps::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_qmltyperegistration", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4, - 5, - 6 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json deleted file mode 100644 index 30f90c0..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_1-Debug-f941936bb9e211476b67.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library", - "target_include_directories" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 590, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2390, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1951, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1964, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1995, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1893, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - }, - { - "command" : 9, - "file" : 0, - "line" : 1967, - "parent" : 4 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_resources_1", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json deleted file mode 100644 index b142d31..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_resources_2-Debug-4a8635105ce5670d28ed.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library", - "target_include_directories" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 647, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2749, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2390, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1951, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1964, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1995, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1893, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1967, - "parent" : 5 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 12, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include" - }, - { - "backtrace" : 12, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 13 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_resources_2", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json b/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json deleted file mode 100644 index 8d6896c..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dash_tooling-Debug-fa310d612e1f5c4b7e79.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 10, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2729, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2732, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dash_tooling::@4896ae50d004c4a48929", - "name" : "Bolt_Dash_tooling", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 4, - 5, - 6, - 7 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json deleted file mode 100644 index 5709301..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin-Debug-188f7d99bfb7fd4ce5ed.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/libBolt_Dashplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 625, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2022, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2451, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 2227, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 2223, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2518, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2456, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 2216, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929" - }, - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash_resources_1::@4896ae50d004c4a48929" - }, - { - "backtrace" : 6, - "id" : "Bolt_Dash_resources_2::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dashplugin::@4896ae50d004c4a48929", - "name" : "Bolt_Dashplugin", - "nameOnDisk" : "libBolt_Dashplugin.a", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 2 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json deleted file mode 100644 index 26d6bf1..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen-Debug-9a452770f8adbf060a01.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json deleted file mode 100644 index 69b0cc2..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_autogen_timestamp_deps-Debug-f9d79c4e9cde3feff6ed.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_autogen_timestamp_deps::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json deleted file mode 100644 index 728fb7c..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init-Debug-d8f518305c4ecf6747f6.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 10, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 664, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 668, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1893, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929" - }, - { - "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929" - } - ], - "id" : "Bolt_Dashplugin_init::@4896ae50d004c4a48929", - "name" : "Bolt_Dashplugin_init", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 2 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json deleted file mode 100644 index b72ee81..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen-Debug-6cbb6c2e197bd8d1f37d.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_init_autogen::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_init_autogen", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json b/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json deleted file mode 100644 index fdc4f7d..0000000 --- a/build/.cmake/api/v1/reply/target-Bolt_Dashplugin_init_autogen_timestamp_deps-Debug-32f76fa5b6be2d7ecb15.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/Bolt_Dash/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "Bolt_Dashplugin_init_autogen_timestamp_deps::@4896ae50d004c4a48929", - "isGeneratorProvided" : true, - "name" : "Bolt_Dashplugin_init_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/Bolt_Dash", - "source" : "imports/Bolt_Dash" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json b/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json deleted file mode 100644 index 3126841..0000000 --- a/build/.cmake/api/v1/reply/target-IO-Debug-e29c6efea1915d85c9e6.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "imports/IO/libIO.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2682, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 3 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include" - } - ], - "language" : "CXX", - "sourceIndexes" : - [ - 0 - ] - } - ], - "dependencies" : - [ - { - "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - }, - { - "backtrace" : 0, - "id" : "IO_autogen::@6adf3e82e1b4a763410e" - } - ], - "id" : "IO::@6adf3e82e1b4a763410e", - "name" : "IO", - "nameOnDisk" : "libIO.a", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json b/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json deleted file mode 100644 index 9e4aa8d..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin-Debug-e858e202624a3206316e.json +++ /dev/null @@ -1,621 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/IO/libIOPlugin.dylib" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt6_add_qml_module", - "target_link_libraries", - "set_target_properties", - "include", - "find_package", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 387, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 3 - }, - { - "command" : 4, - "file" : 1, - "line" : 392, - "parent" : 1 - }, - { - "file" : 6 - }, - { - "command" : 7, - "file" : 6, - "line" : 10, - "parent" : 6 - }, - { - "file" : 5, - "parent" : 7 - }, - { - "command" : 7, - "file" : 5, - "line" : 167, - "parent" : 8 - }, - { - "file" : 4, - "parent" : 9 - }, - { - "command" : 6, - "file" : 4, - "line" : 56, - "parent" : 10 - }, - { - "file" : 3, - "parent" : 11 - }, - { - "command" : 5, - "file" : 3, - "line" : 62, - "parent" : 12 - }, - { - "command" : 7, - "file" : 5, - "line" : 167, - "parent" : 8 - }, - { - "file" : 8, - "parent" : 14 - }, - { - "command" : 6, - "file" : 8, - "line" : 57, - "parent" : 15 - }, - { - "file" : 7, - "parent" : 16 - }, - { - "command" : 5, - "file" : 7, - "line" : 62, - "parent" : 17 - }, - { - "command" : 9, - "file" : 1, - "line" : 541, - "parent" : 1 - }, - { - "command" : 8, - "file" : 1, - "line" : 3057, - "parent" : 19 - }, - { - "command" : 8, - "file" : 1, - "line" : 3082, - "parent" : 19 - }, - { - "command" : 11, - "file" : 1, - "line" : 2882, - "parent" : 19 - }, - { - "command" : 10, - "file" : 0, - "line" : 1415, - "parent" : 22 - }, - { - "command" : 10, - "file" : 1, - "line" : 3048, - "parent" : 19 - }, - { - "command" : 14, - "file" : 1, - "line" : 590, - "parent" : 1 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 25 - }, - { - "command" : 12, - "file" : 0, - "line" : 2390, - "parent" : 26 - }, - { - "command" : 10, - "file" : 0, - "line" : 2004, - "parent" : 27 - }, - { - "command" : 10, - "file" : 1, - "line" : 637, - "parent" : 1 - }, - { - "file" : 2, - "line" : -1, - "parent" : 0 - }, - { - "command" : 16, - "file" : 9, - "line" : 1, - "parent" : 30 - }, - { - "command" : 15, - "file" : 0, - "line" : 768, - "parent" : 31 - }, - { - "command" : 10, - "file" : 0, - "line" : 2117, - "parent" : 32 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" - } - ], - "defines" : - [ - { - "define" : "IOPlugin_EXPORTS" - }, - { - "backtrace" : 5, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 5, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include" - }, - { - "backtrace" : 20, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 21, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 21, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 5 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 3, - 5 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e" - }, - { - "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - } - ], - "id" : "IOPlugin::@6adf3e82e1b4a763410e", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "", - "role" : "flags" - }, - { - "backtrace" : 5, - "fragment" : "-Xlinker", - "role" : "flags" - }, - { - "backtrace" : 5, - "fragment" : "-no_warn_duplicate_libraries", - "role" : "flags" - }, - { - "fragment" : "-F/opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/opt/homebrew/lib", - "role" : "libraries" - }, - { - "backtrace" : 5, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 13, - "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", - "role" : "libraries" - }, - { - "backtrace" : 13, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 13, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 18, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 18, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "IOPlugin", - "nameOnDisk" : "libIOPlugin.dylib", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 8 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 6, - 7, - 15, - 16, - 17, - 18 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 2, - 3, - 5 - ] - }, - { - "name" : "Header Files", - "sourceIndexes" : - [ - 4 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 9, - 10, - 11, - 12, - 13, - 14 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 23, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 29, - "path" : "imports/IO/io.h", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 29, - "compileGroupIndex" : 0, - "path" : "imports/IO/io.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 33, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 33, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 5, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "SHARED_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json b/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json deleted file mode 100644 index 3031198..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_autogen-Debug-ab7dda293435bacb6cef.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IOPlugin_autogen::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IOPlugin_autogen", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json b/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json deleted file mode 100644 index ed8654f..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_autogen_timestamp_deps-Debug-9fd2f2bd055f0f2aa787.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IOPlugin_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json deleted file mode 100644 index 83f3789..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint-Debug-8c11c37e67daa846bd4d.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2285, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 962, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e", - "name" : "IOPlugin_qmllint", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json deleted file mode 100644 index a7fe40c..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_json-Debug-ff36221727ea077c298a.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2285, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 989, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e", - "name" : "IOPlugin_qmllint_json", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json deleted file mode 100644 index 42dbf60..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_qmllint_module-Debug-e500ecfaad5c8fc0f0e5.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2285, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1027, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e", - "name" : "IOPlugin_qmllint_module", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json b/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json deleted file mode 100644 index 00f5f02..0000000 --- a/build/.cmake/api/v1/reply/target-IOPlugin_qmltyperegistration-Debug-ef5f2c0b53e30c6e5e52.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 3018, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "IOPlugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e", - "name" : "IOPlugin_qmltyperegistration", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4, - 5, - 6 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json b/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json deleted file mode 100644 index f50a1ed..0000000 --- a/build/.cmake/api/v1/reply/target-IOPluginplugin-Debug-a0d4e74bb53dc236a11a.json +++ /dev/null @@ -1,423 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "imports/IO/libIOPluginplugin.dylib" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "set_target_properties", - "include", - "find_package", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 625, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2022, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2451, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 2223, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 2227, - "parent" : 2 - }, - { - "file" : 6 - }, - { - "command" : 8, - "file" : 6, - "line" : 10, - "parent" : 8 - }, - { - "file" : 5, - "parent" : 9 - }, - { - "command" : 8, - "file" : 5, - "line" : 167, - "parent" : 10 - }, - { - "file" : 4, - "parent" : 11 - }, - { - "command" : 7, - "file" : 4, - "line" : 56, - "parent" : 12 - }, - { - "file" : 3, - "parent" : 13 - }, - { - "command" : 6, - "file" : 3, - "line" : 62, - "parent" : 14 - }, - { - "command" : 8, - "file" : 5, - "line" : 167, - "parent" : 10 - }, - { - "file" : 8, - "parent" : 16 - }, - { - "command" : 7, - "file" : 8, - "line" : 57, - "parent" : 17 - }, - { - "file" : 7, - "parent" : 18 - }, - { - "command" : 6, - "file" : 7, - "line" : 62, - "parent" : 19 - }, - { - "command" : 9, - "file" : 0, - "line" : 2518, - "parent" : 3 - }, - { - "command" : 10, - "file" : 1, - "line" : 2216, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC" - } - ], - "defines" : - [ - { - "define" : "IOPluginplugin_EXPORTS" - }, - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 21, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 6, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 21, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 6, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 6, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 6, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 6 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - }, - { - "backtrace" : 0, - "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e" - }, - { - "backtrace" : 7, - "id" : "IOPlugin::@6adf3e82e1b4a763410e" - } - ], - "id" : "IOPluginplugin::@6adf3e82e1b4a763410e", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "", - "role" : "flags" - }, - { - "backtrace" : 6, - "fragment" : "-Xlinker", - "role" : "flags" - }, - { - "backtrace" : 6, - "fragment" : "-no_warn_duplicate_libraries", - "role" : "flags" - }, - { - "fragment" : "-F/opt/homebrew/lib", - "role" : "frameworkPath" - }, - { - "fragment" : "-Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO -Wl,-rpath,/opt/homebrew/lib", - "role" : "libraries" - }, - { - "backtrace" : 7, - "fragment" : "libIOPlugin.dylib", - "role" : "libraries" - }, - { - "backtrace" : 6, - "fragment" : "/opt/homebrew/lib/QtQml.framework/Versions/A/QtQml", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "/opt/homebrew/lib/libQt6QmlBuiltins.a", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "/opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork", - "role" : "libraries" - }, - { - "backtrace" : 15, - "fragment" : "/opt/homebrew/lib/QtCore.framework/Versions/A/QtCore", - "role" : "libraries" - }, - { - "backtrace" : 20, - "fragment" : "-framework IOKit", - "role" : "libraries" - }, - { - "backtrace" : 20, - "fragment" : "-framework DiskArbitration", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "IOPluginplugin", - "nameOnDisk" : "libIOPluginplugin.dylib", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 2 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "MODULE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json deleted file mode 100644 index 18d00c2..0000000 --- a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen-Debug-0789b3865f46588f5ad0.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IOPluginplugin_autogen::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IOPluginplugin_autogen", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json b/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json deleted file mode 100644 index 937320e..0000000 --- a/build/.cmake/api/v1/reply/target-IOPluginplugin_autogen_timestamp_deps-Debug-7c334fe2ed061162f2bb.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IOPluginplugin_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IOPluginplugin_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json b/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json deleted file mode 100644 index d75cc3b..0000000 --- a/build/.cmake/api/v1/reply/target-IO_autogen-Debug-708994b234752366cd0d.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IO_autogen::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IO_autogen", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json b/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json deleted file mode 100644 index 1d86b14..0000000 --- a/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-c486d73ceaf28f507353.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "IO_autogen_timestamp_deps::@6adf3e82e1b4a763410e", - "isGeneratorProvided" : true, - "name" : "IO_autogen_timestamp_deps", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json b/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json deleted file mode 100644 index eccef36..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint-Debug-c143a655f3229854e7a1.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 1043, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 1136, - "parent" : 6 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 6 - }, - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 5, - "parent" : 9 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 10 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 11 - }, - { - "command" : 1, - "file" : 0, - "line" : 1043, - "parent" : 12 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 13 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 10, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 1043, - "parent" : 18 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2285, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 1043, - "parent" : 24 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 25 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 8, - "id" : "Bolt_DashApp_qmllint::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "content_qmllint::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 20, - "id" : "Bolt_Dash_qmllint::@4896ae50d004c4a48929" - }, - { - "backtrace" : 26, - "id" : "IOPlugin_qmllint::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "all_qmllint::@6890427a1f51a3e7e1df", - "name" : "all_qmllint", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json b/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json deleted file mode 100644 index dc7ef5c..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint_json-Debug-02e8fac95724d14079aa.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 1045, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 1136, - "parent" : 6 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 6 - }, - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 5, - "parent" : 9 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 10 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 11 - }, - { - "command" : 1, - "file" : 0, - "line" : 1045, - "parent" : 12 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 13 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 10, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 1045, - "parent" : 18 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2285, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 1045, - "parent" : 24 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 25 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 8, - "id" : "Bolt_DashApp_qmllint_json::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 20, - "id" : "Bolt_Dash_qmllint_json::@4896ae50d004c4a48929" - }, - { - "backtrace" : 26, - "id" : "IOPlugin_qmllint_json::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "all_qmllint_json::@6890427a1f51a3e7e1df", - "name" : "all_qmllint_json", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json b/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json deleted file mode 100644 index 3872032..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmllint_module-Debug-74f2c776ef292c1a5eef.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "backtrace" : 7, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_add_all_qmllint_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "include", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 4, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 3 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 4 - }, - { - "command" : 1, - "file" : 0, - "line" : 1047, - "parent" : 5 - }, - { - "command" : 0, - "file" : 0, - "line" : 1136, - "parent" : 6 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 6 - }, - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 5, - "parent" : 9 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 10 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 11 - }, - { - "command" : 1, - "file" : 0, - "line" : 1047, - "parent" : 12 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 13 - }, - { - "file" : 4 - }, - { - "command" : 4, - "file" : 4, - "line" : 10, - "parent" : 15 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 16 - }, - { - "command" : 2, - "file" : 0, - "line" : 2532, - "parent" : 17 - }, - { - "command" : 1, - "file" : 0, - "line" : 1047, - "parent" : 18 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 19 - }, - { - "file" : 5 - }, - { - "command" : 4, - "file" : 5, - "line" : 6, - "parent" : 21 - }, - { - "command" : 3, - "file" : 0, - "line" : 647, - "parent" : 22 - }, - { - "command" : 2, - "file" : 0, - "line" : 2285, - "parent" : 23 - }, - { - "command" : 1, - "file" : 0, - "line" : 1047, - "parent" : 24 - }, - { - "command" : 6, - "file" : 0, - "line" : 1139, - "parent" : 25 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 8, - "id" : "Bolt_DashApp_qmllint_module::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 14, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 20, - "id" : "Bolt_Dash_qmllint_module::@4896ae50d004c4a48929" - }, - { - "backtrace" : 26, - "id" : "IOPlugin_qmllint_module::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "all_qmllint_module::@6890427a1f51a3e7e1df", - "name" : "all_qmllint_module", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json b/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json deleted file mode 100644 index dbe4d95..0000000 --- a/build/.cmake/api/v1/reply/target-all_qmltyperegistrations-Debug-fbf9e0225f3838680c13.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module", - "include", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "qmlmodules", - "CMakeLists.txt", - "content/CMakeLists.txt", - "imports/Bolt_Dash/CMakeLists.txt", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 52, - "parent" : 0 - }, - { - "file" : 1, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 4, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 3025, - "parent" : 4 - }, - { - "command" : 4, - "file" : 0, - "line" : 3028, - "parent" : 4 - }, - { - "file" : 3 - }, - { - "command" : 2, - "file" : 3, - "line" : 5, - "parent" : 7 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 8 - }, - { - "command" : 4, - "file" : 0, - "line" : 3028, - "parent" : 9 - }, - { - "file" : 4 - }, - { - "command" : 2, - "file" : 4, - "line" : 10, - "parent" : 11 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 12 - }, - { - "command" : 4, - "file" : 0, - "line" : 3028, - "parent" : 13 - }, - { - "file" : 5 - }, - { - "command" : 2, - "file" : 5, - "line" : 6, - "parent" : 15 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 16 - }, - { - "command" : 4, - "file" : 0, - "line" : 3028, - "parent" : 17 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "Bolt_DashApp_qmltyperegistration::@6890427a1f51a3e7e1df" - }, - { - "backtrace" : 10, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 14, - "id" : "Bolt_Dash_qmltyperegistration::@4896ae50d004c4a48929" - }, - { - "backtrace" : 18, - "id" : "IOPlugin_qmltyperegistration::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", - "name" : "all_qmltyperegistrations", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json b/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json deleted file mode 100644 index 3d3e160..0000000 --- a/build/.cmake/api/v1/reply/target-content-Debug-84c13ddb4d05224351df.json +++ /dev/null @@ -1,1353 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "content/libcontent.a" - } - ], - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "qt_add_library", - "add_dependencies", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_link_libraries", - "target_include_directories", - "_qt_internal_qml_type_registration", - "target_sources", - "qt6_extract_metatypes", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "_qt_internal_target_enable_qmlcachegen", - "_qt_internal_expose_deferred_files_to_ide", - "qt6_finalize_target" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:743:EVAL" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 4, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 2682, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 3 - }, - { - "command" : 6, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 5, - "file" : 2, - "line" : 647, - "parent" : 5 - }, - { - "command" : 4, - "file" : 2, - "line" : 2730, - "parent" : 6 - }, - { - "command" : 7, - "file" : 2, - "line" : 392, - "parent" : 5 - }, - { - "command" : 9, - "file" : 2, - "line" : 541, - "parent" : 5 - }, - { - "command" : 8, - "file" : 2, - "line" : 3057, - "parent" : 9 - }, - { - "command" : 8, - "file" : 2, - "line" : 3082, - "parent" : 9 - }, - { - "command" : 11, - "file" : 2, - "line" : 2882, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1415, - "parent" : 12 - }, - { - "command" : 10, - "file" : 2, - "line" : 3048, - "parent" : 9 - }, - { - "command" : 14, - "file" : 2, - "line" : 590, - "parent" : 5 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 15 - }, - { - "command" : 12, - "file" : 0, - "line" : 2390, - "parent" : 16 - }, - { - "command" : 10, - "file" : 0, - "line" : 2004, - "parent" : 17 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 15, - "file" : 2, - "line" : 2618, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 1239, - "parent" : 20 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2514, - "parent" : 6 - }, - { - "command" : 10, - "file" : 2, - "line" : 2666, - "parent" : 6 - }, - { - "command" : 14, - "file" : 2, - "line" : 2749, - "parent" : 6 - }, - { - "command" : 13, - "file" : 0, - "line" : 337, - "parent" : 63 - }, - { - "command" : 12, - "file" : 0, - "line" : 2390, - "parent" : 64 - }, - { - "command" : 10, - "file" : 0, - "line" : 2004, - "parent" : 65 - }, - { - "file" : 1, - "line" : -1, - "parent" : 0 - }, - { - "command" : 17, - "file" : 3, - "line" : 1, - "parent" : 67 - }, - { - "command" : 16, - "file" : 0, - "line" : 768, - "parent" : 68 - }, - { - "command" : 10, - "file" : 0, - "line" : 2117, - "parent" : 69 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 10, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 8 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 2, - 3, - 5, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 47 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 7, - "id" : "content_tooling::@73a38b9e525c9c2ae262" - }, - { - "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "content_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "content::@73a38b9e525c9c2ae262", - "name" : "content", - "nameOnDisk" : "libcontent.a", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 62 - ] - }, - { - "name" : "", - "sourceIndexes" : - [ - 1, - 4, - 7, - 9, - 11, - 13, - 15, - 17, - 19, - 21, - 23, - 25, - 27, - 29, - 31, - 33, - 35, - 37, - 39, - 41, - 43, - 45, - 48, - 49, - 50, - 51, - 52, - 53, - 56, - 57, - 58, - 59, - 60, - 61, - 92, - 93, - 94, - 95 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 2, - 3, - 5, - 6, - 8, - 10, - 12, - 14, - 16, - 18, - 20, - 22, - 24, - 26, - 28, - 30, - 32, - 34, - 36, - 38, - 40, - 42, - 44, - 46, - 47 - ] - }, - { - "name" : "Resources", - "sourceIndexes" : - [ - 54, - 55 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 13, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 14, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 18, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 19, - "path" : "content/App.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 21, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 22, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 23, - "path" : "content/Screen01.ui.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 24, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 25, - "path" : "content/Speedometer.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 26, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 27, - "path" : "content/BatterySlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 28, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 29, - "path" : "content/TempSlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 30, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 31, - "path" : "content/Debug1.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 32, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 33, - "path" : "content/BoltLeanAngle.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 34, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 35, - "path" : "content/BikeStatus.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 36, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 37, - "path" : "content/BatteryReadout.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 38, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 39, - "path" : "content/FullBatterySlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 40, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 41, - "path" : "content/TemperatureIsland.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 42, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 43, - "path" : "content/FullSlider.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 44, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 45, - "path" : "content/BMSFaultDetails.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 46, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 47, - "path" : "content/DebugItem1.ui.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 48, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 49, - "path" : "content/FaultMotorStatus.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 50, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 51, - "path" : "content/SpeedometerDecorations.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 52, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 53, - "path" : "content/DebugMain.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 54, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 55, - "path" : "content/DebugMotor.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 56, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 57, - "path" : "content/DebugOverview.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 58, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 59, - "path" : "content/DebugBMS.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 60, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 61, - "path" : "content/DebugPDU.qml", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 62, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 66, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 70, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/qmldir", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/fonts/fonts.txt", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/fonts/nasalization-rg.otf", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/fonts/MesloLGSDZNerdFontMono-Regular.ttf", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/leanAngleBack.png", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/motorcycleIcon.png", - "sourceGroupIndex" : 3 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/battery-twotone-0-svgrepo-com.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/battery.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/battery_temp.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/controller_temp.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/motor_temp.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 70, - "path" : "content/Pictures/Virginia_Tech_Hokies_logo.svg", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", - "sourceGroupIndex" : 4 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 8, - "path" : "/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json", - "sourceGroupIndex" : 1 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json b/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json deleted file mode 100644 index a0b555c..0000000 --- a/build/.cmake/api/v1/reply/target-content_autogen-Debug-3c4e7cf7b92ed045bf43.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "content_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json b/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json deleted file mode 100644 index 40f13d3..0000000 --- a/build/.cmake/api/v1/reply/target-content_autogen_timestamp_deps-Debug-cf12f537e2a66db07150.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 0, - "id" : "content_tooling::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "content_autogen_timestamp_deps", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json b/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json deleted file mode 100644 index ebc8061..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint-Debug-8142ca0703017c202a06.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 962, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "content_qmllint::@73a38b9e525c9c2ae262", - "name" : "content_qmllint", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json b/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json deleted file mode 100644 index f311d8b..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint_json-Debug-7eab1ed0c12a3f64d3b1.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 989, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "content_qmllint_json::@73a38b9e525c9c2ae262", - "name" : "content_qmllint_json", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json b/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json deleted file mode 100644 index d6d91ac..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmllint_module-Debug-8f5301cedfba2c65c02b.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_target_enable_qmllint", - "qt6_target_qml_sources", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 2, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 1, - "file" : 0, - "line" : 2532, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 1027, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" - } - ], - "folder" : - { - "name" : "QtInternalTargets/QmlLinter" - }, - "id" : "content_qmllint_module::@73a38b9e525c9c2ae262", - "name" : "content_qmllint_module", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json b/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json deleted file mode 100644 index e094576..0000000 --- a/build/.cmake/api/v1/reply/target-content_qmltyperegistration-Debug-4d171b3e279cd861953b.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "_qt_internal_qml_type_registration", - "qt6_add_qml_module" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 541, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 3018, - "parent" : 2 - } - ] - }, - "dependencies" : - [ - { - "id" : "content_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_qmltyperegistration::@73a38b9e525c9c2ae262", - "name" : "content_qmltyperegistration", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2, - 3, - 4, - 5, - 6 - ] - } - ], - "sources" : - [ - { - "backtrace" : 3, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json b/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json deleted file mode 100644 index d4af599..0000000 --- a/build/.cmake/api/v1/reply/target-content_resources_1-Debug-3dfee9aca78a1157a591.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library", - "target_include_directories" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 590, - "parent" : 1 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2390, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 1951, - "parent" : 4 - }, - { - "command" : 5, - "file" : 0, - "line" : 1964, - "parent" : 4 - }, - { - "command" : 8, - "file" : 0, - "line" : 1995, - "parent" : 4 - }, - { - "command" : 7, - "file" : 0, - "line" : 1893, - "parent" : 7 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - }, - { - "command" : 9, - "file" : 0, - "line" : 1967, - "parent" : 4 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - }, - { - "command" : 6, - "file" : 0, - "line" : 2765, - "parent" : 8 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 6, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 10, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 11, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 10, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 12 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "content_resources_1::@73a38b9e525c9c2ae262", - "name" : "content_resources_1", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json b/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json deleted file mode 100644 index 156d351..0000000 --- a/build/.cmake/api/v1/reply/target-content_resources_2-Debug-4e21ea579599e366b50a.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" - } - ], - "backtrace" : 6, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "__qt_propagate_generated_resource", - "_qt_internal_process_resource", - "qt6_add_resources", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_compile_definitions", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library", - "target_include_directories" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 5, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 4, - "file" : 1, - "line" : 647, - "parent" : 1 - }, - { - "command" : 3, - "file" : 1, - "line" : 2749, - "parent" : 2 - }, - { - "command" : 2, - "file" : 0, - "line" : 337, - "parent" : 3 - }, - { - "command" : 1, - "file" : 0, - "line" : 2390, - "parent" : 4 - }, - { - "command" : 0, - "file" : 0, - "line" : 1951, - "parent" : 5 - }, - { - "command" : 6, - "file" : 0, - "line" : 1964, - "parent" : 5 - }, - { - "command" : 9, - "file" : 0, - "line" : 1995, - "parent" : 5 - }, - { - "command" : 8, - "file" : 0, - "line" : 1893, - "parent" : 8 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - }, - { - "command" : 10, - "file" : 0, - "line" : 1967, - "parent" : 5 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - }, - { - "command" : 7, - "file" : 0, - "line" : 2765, - "parent" : 9 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 10, - "define" : "QT_QML_LIB" - } - ], - "frameworks" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 11, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 12, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include" - }, - { - "backtrace" : 12, - "path" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 12, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 11, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 13 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "content_resources_2::@73a38b9e525c9c2ae262", - "name" : "content_resources_2", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 6, - "compileGroupIndex" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json b/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json deleted file mode 100644 index d412e1c..0000000 --- a/build/.cmake/api/v1/reply/target-content_tooling-Debug-31cbc5df92c7478ca653.json +++ /dev/null @@ -1,532 +0,0 @@ -{ - "backtrace" : 3, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "qt6_target_qml_sources", - "qt6_add_qml_module", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 5, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 647, - "parent" : 1 - }, - { - "command" : 0, - "file" : 0, - "line" : 2729, - "parent" : 2 - }, - { - "command" : 3, - "file" : 0, - "line" : 2732, - "parent" : 2 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "content_tooling::@73a38b9e525c9c2ae262", - "name" : "content_tooling", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 26, - 27, - 28, - 29, - 30, - 31 - ] - }, - { - "name" : "Resources", - "sourceIndexes" : - [ - 24, - 25 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63 - ] - } - ], - "sources" : - [ - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/App.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 4, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/App.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg.rule", - "sourceGroupIndex" : 2 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "INTERFACE_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json b/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json deleted file mode 100644 index 822bcda..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin-Debug-2c9a48946c97ef59f438.json +++ /dev/null @@ -1,301 +0,0 @@ -{ - "archive" : {}, - "artifacts" : - [ - { - "path" : "content/libcontentplugin.a" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "target_link_libraries", - "target_compile_definitions", - "target_sources" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 4, - "file" : 2, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 1, - "line" : 625, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 2022, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2451, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 4 - }, - { - "command" : 5, - "file" : 1, - "line" : 2227, - "parent" : 2 - }, - { - "command" : 5, - "file" : 1, - "line" : 2223, - "parent" : 2 - }, - { - "command" : 6, - "file" : 0, - "line" : 2518, - "parent" : 3 - }, - { - "command" : 6, - "file" : 0, - "line" : 2456, - "parent" : 3 - }, - { - "command" : 7, - "file" : 1, - "line" : 2216, - "parent" : 2 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 7, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 7, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 7, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 7, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 9, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 7, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 7 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "backtrace" : 6, - "id" : "content::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 6, - "id" : "content_resources_1::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 6, - "id" : "content_resources_2::@73a38b9e525c9c2ae262" - }, - { - "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "contentplugin::@73a38b9e525c9c2ae262", - "name" : "contentplugin", - "nameOnDisk" : "libcontentplugin.a", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 2 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 10, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "STATIC_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json deleted file mode 100644 index f1f5236..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_autogen-Debug-c1a4b967070723e2f2f4.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json b/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json deleted file mode 100644 index 56bb592..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_autogen_timestamp_deps-Debug-c808e5e877b5935fa4e2.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_autogen_timestamp_deps", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json b/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json deleted file mode 100644 index c14b1f2..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_init-Debug-202e8c1956da63ca4598.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - }, - { - "path" : "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - } - ], - "backtrace" : 5, - "backtraceGraph" : - { - "commands" : - [ - "add_library", - "_qt_internal_add_library", - "qt6_add_library", - "__qt_internal_add_static_plugin_init_object_library", - "qt6_add_qml_module", - "set_property", - "_qt_internal_copy_dependency_properties", - "__qt_internal_propagate_object_library" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 3 - }, - { - "command" : 4, - "file" : 3, - "line" : 5, - "parent" : 0 - }, - { - "command" : 3, - "file" : 2, - "line" : 664, - "parent" : 1 - }, - { - "command" : 2, - "file" : 1, - "line" : 258, - "parent" : 2 - }, - { - "command" : 1, - "file" : 0, - "line" : 2564, - "parent" : 3 - }, - { - "command" : 0, - "file" : 0, - "line" : 2659, - "parent" : 4 - }, - { - "command" : 7, - "file" : 2, - "line" : 668, - "parent" : 1 - }, - { - "command" : 6, - "file" : 0, - "line" : 1893, - "parent" : 6 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - }, - { - "command" : 5, - "file" : 0, - "line" : 2765, - "parent" : 7 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - } - ], - "defines" : - [ - { - "backtrace" : 8, - "define" : "QT_CORE_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_DEPRECATED_WARNINGS" - }, - { - "backtrace" : 8, - "define" : "QT_NETWORK_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_PLUGIN" - }, - { - "backtrace" : 8, - "define" : "QT_QMLBUILTINS_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QMLINTEGRATION_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_QML_LIB" - }, - { - "backtrace" : 8, - "define" : "QT_STATICPLUGIN" - } - ], - "frameworks" : - [ - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework" - } - ], - "includes" : - [ - { - "backtrace" : 0, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtQml.framework/Headers" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlIntegration" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/include/QtQmlBuiltins" - }, - { - "backtrace" : 9, - "path" : "/opt/homebrew/lib/QtNetwork.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/lib/QtCore.framework/Headers" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/share/qt/mkspecs/macx-clang" - }, - { - "backtrace" : 9, - "isSystem" : true, - "path" : "/opt/homebrew/include" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 10 - ], - "standard" : "17" - }, - "sourceIndexes" : - [ - 0, - 1 - ] - } - ], - "dependencies" : - [ - { - "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - }, - { - "backtrace" : 0, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262" - } - ], - "id" : "contentplugin_init::@73a38b9e525c9c2ae262", - "name" : "contentplugin_init", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "Source Files\\Generated", - "sourceIndexes" : - [ - 0, - 2 - ] - }, - { - "name" : "Source Files", - "sourceIndexes" : - [ - 1 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 3 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 5, - "compileGroupIndex" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp.rule", - "sourceGroupIndex" : 2 - } - ], - "type" : "OBJECT_LIBRARY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json deleted file mode 100644 index b5551c7..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen-Debug-7e23e3d44851a0a93369.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "dependencies" : - [ - { - "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_init_autogen::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_init_autogen", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1, - 2 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.rule", - "sourceGroupIndex" : 1 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json b/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json deleted file mode 100644 index 73e92fd..0000000 --- a/build/.cmake/api/v1/reply/target-contentplugin_init_autogen_timestamp_deps-Debug-b58281811959a68fc485.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "backtrace" : 0, - "backtraceGraph" : - { - "commands" : [], - "files" : - [ - "content/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - } - ] - }, - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "contentplugin_init_autogen_timestamp_deps::@73a38b9e525c9c2ae262", - "isGeneratorProvided" : true, - "name" : "contentplugin_init_autogen_timestamp_deps", - "paths" : - { - "build" : "content", - "source" : "content" - }, - "sourceGroups" : - [ - { - "name" : "", - "sourceIndexes" : - [ - 0 - ] - }, - { - "name" : "CMake Rules", - "sourceIndexes" : - [ - 1 - ] - } - ], - "sources" : - [ - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps", - "sourceGroupIndex" : 0 - }, - { - "backtrace" : 0, - "isGenerated" : true, - "path" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.rule", - "sourceGroupIndex" : 1 - } - ], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json b/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json deleted file mode 100644 index dc3ae94..0000000 --- a/build/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-73d78de408bb540280e3.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "backtrace" : 4, - "backtraceGraph" : - { - "commands" : - [ - "add_custom_target", - "qt6_add_plugin", - "qt6_add_qml_plugin", - "qt6_add_qml_module", - "add_dependencies" - ], - "files" : - [ - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "imports/IO/CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 2 - }, - { - "command" : 3, - "file" : 2, - "line" : 6, - "parent" : 0 - }, - { - "command" : 2, - "file" : 1, - "line" : 625, - "parent" : 1 - }, - { - "command" : 1, - "file" : 1, - "line" : 2022, - "parent" : 2 - }, - { - "command" : 0, - "file" : 0, - "line" : 2525, - "parent" : 3 - }, - { - "command" : 4, - "file" : 0, - "line" : 2528, - "parent" : 3 - } - ] - }, - "dependencies" : - [ - { - "backtrace" : 5, - "id" : "IOPluginplugin::@6adf3e82e1b4a763410e" - } - ], - "folder" : - { - "name" : "QtInternalTargets" - }, - "id" : "qt_internal_plugins::@6adf3e82e1b4a763410e", - "name" : "qt_internal_plugins", - "paths" : - { - "build" : "imports/IO", - "source" : "imports/IO" - }, - "sources" : [], - "type" : "UTILITY" -} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json b/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json deleted file mode 100644 index 936965d..0000000 --- a/build/.cmake/api/v1/reply/toolchains-v1-3df0db7d651d973da145.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "kind" : "toolchains", - "toolchains" : - [ - { - "compiler" : - { - "id" : "AppleClang", - "implicit" : - { - "includeDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "linkDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift" - ], - "linkFrameworkDirectories" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks" - ], - "linkLibraries" : - [ - "c++" - ] - }, - "path" : "/Library/Developer/CommandLineTools/usr/bin/c++", - "version" : "15.0.0.15000309" - }, - "language" : "CXX", - "sourceFileExtensions" : - [ - "C", - "M", - "c++", - "cc", - "cpp", - "cxx", - "m", - "mm", - "mpp", - "CPP", - "ixx", - "cppm", - "ccm", - "cxxm", - "c++m" - ] - } - ], - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/build/.qt/QtDeploySupport.cmake b/build/.qt/QtDeploySupport.cmake deleted file mode 100644 index 6f84f13..0000000 --- a/build/.qt/QtDeploySupport.cmake +++ /dev/null @@ -1,70 +0,0 @@ -cmake_minimum_required(VERSION 3.16...3.21) - -# These are part of the public API. Projects should use them to provide a -# consistent set of prefix-relative destinations. -if(NOT QT_DEPLOY_BIN_DIR) - set(QT_DEPLOY_BIN_DIR "bin") -endif() -if(NOT QT_DEPLOY_LIBEXEC_DIR) - set(QT_DEPLOY_LIBEXEC_DIR "libexec") -endif() -if(NOT QT_DEPLOY_LIB_DIR) - set(QT_DEPLOY_LIB_DIR "lib") -endif() -if(NOT QT_DEPLOY_PLUGINS_DIR) - set(QT_DEPLOY_PLUGINS_DIR "plugins") -endif() -if(NOT QT_DEPLOY_QML_DIR) - set(QT_DEPLOY_QML_DIR "qml") -endif() -if(NOT QT_DEPLOY_TRANSLATIONS_DIR) - set(QT_DEPLOY_TRANSLATIONS_DIR "translations") -endif() -if(NOT QT_DEPLOY_PREFIX) - set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") -endif() -if(QT_DEPLOY_PREFIX STREQUAL "") - set(QT_DEPLOY_PREFIX .) -endif() -if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) - set(QT_DEPLOY_IGNORED_LIB_DIRS "") -endif() - -# These are internal implementation details. They may be removed at any time. -set(__QT_DEPLOY_SYSTEM_NAME "Darwin") -set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") -set(__QT_DEPLOY_TOOL "/opt/homebrew/bin/macdeployqt") -set(__QT_DEPLOY_IMPL_DIR "/Users/mason/Documents/Code/dash-cpp/build/.qt") -set(__QT_DEPLOY_VERBOSE "") -set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") -set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") -set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") -set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") -set(__QT_DEFAULT_MAJOR_VERSION "6") -set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") -set(__QT_DEPLOY_QT_INSTALL_PREFIX "/opt/homebrew") -set(__QT_DEPLOY_QT_INSTALL_BINS "bin") -set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt") -set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "share/qt/libexec") -set(__QT_DEPLOY_QT_INSTALL_PLUGINS "share/qt/plugins") -set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt/translations") -set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/opt/homebrew/bin/qtpaths") -set(__QT_DEPLOY_PLUGINS "") -set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "") -set(__QT_DEPLOY_USE_PATCHELF "") -set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") -set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") -set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") - -# Define the CMake commands to be made available during deployment. -set(__qt_deploy_support_files - "/Users/mason/Documents/Code/dash-cpp/build/.qt/QtDeployTargets.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" -) -foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) - include("${__qt_deploy_support_file}") -endforeach() - -unset(__qt_deploy_support_file) -unset(__qt_deploy_support_files) diff --git a/build/.qt/QtDeployTargets.cmake b/build/.qt/QtDeployTargets.cmake deleted file mode 100644 index b19310a..0000000 --- a/build/.qt/QtDeployTargets.cmake +++ /dev/null @@ -1,3 +0,0 @@ -set(__QT_DEPLOY_TARGET_IOPlugin_FILE /Users/mason/Documents/Code/dash-cpp/build/imports/IO/libIOPlugin.dylib) -set(__QT_DEPLOY_TARGET_IOPluginplugin_FILE /Users/mason/Documents/Code/dash-cpp/build/imports/IO/libIOPluginplugin.dylib) -set(__QT_DEPLOY_TARGET_Bolt_DashApp_FILE /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp) diff --git a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake b/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake deleted file mode 100644 index 5fe0583..0000000 --- a/build/.qt/deploy_qml_imports/Bolt_DashApp.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# Auto-generated deploy QML imports script for target "Bolt_DashApp". -# Do not edit, all changes will be lost. -# This file should only be included by qt_deploy_qml_imports(). - -set(__qt_opts ) -if(arg_NO_QT_IMPORTS) - list(APPEND __qt_opts NO_QT_IMPORTS) -endif() - -_qt_internal_deploy_qml_imports_for_target( - ${__qt_opts} - IMPORTS_FILE "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - PLUGINS_FOUND __qt_internal_plugins_found - QML_DIR "${arg_QML_DIR}" - PLUGINS_DIR "${arg_PLUGINS_DIR}" -) - -if(arg_PLUGINS_FOUND) - set(${arg_PLUGINS_FOUND} "${__qt_internal_plugins_found}" PARENT_SCOPE) -endif() diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake deleted file mode 100644 index aad0cde..0000000 --- a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake +++ /dev/null @@ -1,38 +0,0 @@ -set(qml_import_scanner_imports_count 36) -set(qml_import_scanner_import_0 "CLASSNAME;QtQuick2Plugin;LINKTARGET;Qt6::qtquick2plugin;NAME;QtQuick;PATH;/opt/homebrew/share/qt/qml/QtQuick;PLUGIN;qtquick2plugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/;RELATIVEPATH;QtQuick;TYPE;module;") -set(qml_import_scanner_import_1 "CLASSNAME;QtQmlMetaPlugin;LINKTARGET;Qt6::QmlMeta;NAME;QtQml;PATH;/opt/homebrew/share/qt/qml/QtQml;PLUGIN;qmlmetaplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/;RELATIVEPATH;QtQml;TYPE;module;") -set(qml_import_scanner_import_2 "CLASSNAME;QtQmlPlugin;LINKTARGET;Qt6::qmlplugin;NAME;QtQml.Base;PATH;/opt/homebrew/share/qt/qml/QtQml/Base;PLUGIN;qmlplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/Base/;RELATIVEPATH;QtQml/Base;TYPE;module;") -set(qml_import_scanner_import_3 "CLASSNAME;QtQmlModelsPlugin;LINKTARGET;Qt6::modelsplugin;NAME;QtQml.Models;PATH;/opt/homebrew/share/qt/qml/QtQml/Models;PLUGIN;modelsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/Models/;RELATIVEPATH;QtQml/Models;TYPE;module;") -set(qml_import_scanner_import_4 "CLASSNAME;QtQmlWorkerScriptPlugin;LINKTARGET;Qt6::workerscriptplugin;NAME;QtQml.WorkerScript;PATH;/opt/homebrew/share/qt/qml/QtQml/WorkerScript;PLUGIN;workerscriptplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/WorkerScript/;RELATIVEPATH;QtQml/WorkerScript;TYPE;module;") -set(qml_import_scanner_import_5 "NAME;QML;TYPE;module;") -set(qml_import_scanner_import_6 "CLASSNAME;contentPlugin;COMPONENTS;/Users/mason/Documents/Code/dash-cpp/build/content/App.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml;/Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml;/Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml;/Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml;/Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml;/Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml;/Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml;LINKTARGET;contentplugin;NAME;content;PATH;/Users/mason/Documents/Code/dash-cpp/build/content;PLUGIN;contentplugin;PLUGINISOPTIONAL;;PREFER;:/content/;RELATIVEPATH;content;TYPE;module;") -set(qml_import_scanner_import_7 "CLASSNAME;QtQuickControls2Plugin;LINKTARGET;Qt6::qtquickcontrols2plugin;NAME;QtQuick.Controls;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls;PLUGIN;qtquickcontrols2plugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/;RELATIVEPATH;QtQuick/Controls;TYPE;module;") -set(qml_import_scanner_import_8 "CLASSNAME;QtQuickLayoutsPlugin;LINKTARGET;Qt6::qquicklayoutsplugin;NAME;QtQuick.Layouts;PATH;/opt/homebrew/share/qt/qml/QtQuick/Layouts;PLUGIN;qquicklayoutsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Layouts/;RELATIVEPATH;QtQuick/Layouts;TYPE;module;") -set(qml_import_scanner_import_9 "NAME;Bolt_Dash;TYPE;module;") -set(qml_import_scanner_import_10 "NAME;IO;TYPE;module;") -set(qml_import_scanner_import_11 "CLASSNAME;QmlShapesPlugin;LINKTARGET;Qt6::qmlshapesplugin;NAME;QtQuick.Shapes;PATH;/opt/homebrew/share/qt/qml/QtQuick/Shapes;PLUGIN;qmlshapesplugin;PREFER;:/qt-project.org/imports/QtQuick/Shapes/;RELATIVEPATH;QtQuick/Shapes;TYPE;module;") -set(qml_import_scanner_import_12 "CLASSNAME;QtChartsQml2Plugin;LINKTARGET;Qt6::qtchartsqml2;NAME;QtCharts;PATH;/opt/homebrew/share/qt/qml/QtCharts;PLUGIN;qtchartsqml2plugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtCharts/;RELATIVEPATH;QtCharts;TYPE;module;") -set(qml_import_scanner_import_13 "CLASSNAME;QtQuickControls2FusionStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleplugin;NAME;QtQuick.Controls.Fusion;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion;PLUGIN;qtquickcontrols2fusionstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/;RELATIVEPATH;QtQuick/Controls/Fusion;TYPE;module;") -set(qml_import_scanner_import_14 "CLASSNAME;QtQuickControls2MaterialStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleplugin;NAME;QtQuick.Controls.Material;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material;PLUGIN;qtquickcontrols2materialstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/;RELATIVEPATH;QtQuick/Controls/Material;TYPE;module;") -set(qml_import_scanner_import_15 "CLASSNAME;QtQuickControls2ImagineStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleplugin;NAME;QtQuick.Controls.Imagine;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine;PLUGIN;qtquickcontrols2imaginestyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/;RELATIVEPATH;QtQuick/Controls/Imagine;TYPE;module;") -set(qml_import_scanner_import_16 "CLASSNAME;QtQuickControls2UniversalStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleplugin;NAME;QtQuick.Controls.Universal;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal;PLUGIN;qtquickcontrols2universalstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/;RELATIVEPATH;QtQuick/Controls/Universal;TYPE;module;") -set(qml_import_scanner_import_17 "NAME;QtQuick.Controls.Windows;TYPE;module;") -set(qml_import_scanner_import_18 "CLASSNAME;QtQuickControls2MacOSStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/TreeViewDelegate.qml;LINKTARGET;Qt6::qtquickcontrols2macosstyleplugin;NAME;QtQuick.Controls.macOS;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS;PLUGIN;qtquickcontrols2macosstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/macOS/;RELATIVEPATH;QtQuick/Controls/macOS;TYPE;module;") -set(qml_import_scanner_import_19 "CLASSNAME;QtQuickControls2IOSStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2iosstyleplugin;NAME;QtQuick.Controls.iOS;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS;PLUGIN;qtquickcontrols2iosstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/iOS/;RELATIVEPATH;QtQuick/Controls/iOS;TYPE;module;") -set(qml_import_scanner_import_20 "CLASSNAME;QtQuickControls2BasicStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/AbstractButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Action.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ActionGroup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ApplicationWindow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/BusyIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Button.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ButtonGroup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Calendar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CalendarModel.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/CheckDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Container.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Control.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DayOfWeekRow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DelayButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Dial.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Dialog.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/DialogButtonBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Drawer.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Frame.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/GroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/HorizontalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Label.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Menu.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuBarItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuItem.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MenuSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/MonthGrid.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Page.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/PageIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Pane.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Popup.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RangeSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/RoundButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ScrollView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SelectionRectangle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Slider.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SplitView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/StackView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwipeDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwipeView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Switch.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/SwitchDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TabBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TabButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TextField.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolBar.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolButton.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolSeparator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/ToolTip.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/TreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/Tumbler.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/VerticalHeaderView.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/WeekNumberColumn.qml;LINKTARGET;Qt6::qtquickcontrols2basicstyleplugin;NAME;QtQuick.Controls.Basic;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic;PLUGIN;qtquickcontrols2basicstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/;RELATIVEPATH;QtQuick/Controls/Basic;TYPE;module;") -set(qml_import_scanner_import_21 "CLASSNAME;QtQuickTemplates2Plugin;LINKTARGET;Qt6::qtquicktemplates2plugin;NAME;QtQuick.Templates;PATH;/opt/homebrew/share/qt/qml/QtQuick/Templates;PLUGIN;qtquicktemplates2plugin;PREFER;:/qt-project.org/imports/QtQuick/Templates/;RELATIVEPATH;QtQuick/Templates;TYPE;module;") -set(qml_import_scanner_import_22 "CLASSNAME;QtQuickControls2ImplPlugin;LINKTARGET;Qt6::qtquickcontrols2implplugin;NAME;QtQuick.Controls.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/impl;PLUGIN;qtquickcontrols2implplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/impl/;RELATIVEPATH;QtQuick/Controls/impl;TYPE;module;") -set(qml_import_scanner_import_23 "CLASSNAME;QtQuickControls2FusionStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/ButtonPanel.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SliderGroove.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SliderHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleimplplugin;NAME;QtQuick.Controls.Fusion.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Fusion/impl;PLUGIN;qtquickcontrols2fusionstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/impl/;RELATIVEPATH;QtQuick/Controls/Fusion/impl;TYPE;module;") -set(qml_import_scanner_import_24 "CLASSNAME;QtQuick_WindowPlugin;LINKTARGET;Qt6::quickwindow;NAME;QtQuick.Window;PATH;/opt/homebrew/share/qt/qml/QtQuick/Window;PLUGIN;quickwindowplugin;PREFER;:/qt-project.org/imports/QtQuick/Window/;RELATIVEPATH;QtQuick/Window;TYPE;module;") -set(qml_import_scanner_import_25 "CLASSNAME;QtQuickControls2MaterialStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/BoxShadow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/CursorDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/ElevationEffect.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RectangularGlow.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/SliderHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleimplplugin;NAME;QtQuick.Controls.Material.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Material/impl;PLUGIN;qtquickcontrols2materialstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/impl/;RELATIVEPATH;QtQuick/Controls/Material/impl;TYPE;module;") -set(qml_import_scanner_import_26 "CLASSNAME;QtQuickControls2ImagineStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/impl/OpacityMask.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleimplplugin;NAME;QtQuick.Controls.Imagine.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Imagine/impl;PLUGIN;qtquickcontrols2imaginestyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/impl/;RELATIVEPATH;QtQuick/Controls/Imagine/impl;TYPE;module;") -set(qml_import_scanner_import_27 "CLASSNAME;QtQuickControls2UniversalStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/CheckIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/RadioIndicator.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleimplplugin;NAME;QtQuick.Controls.Universal.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Universal/impl;PLUGIN;qtquickcontrols2universalstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/impl/;RELATIVEPATH;QtQuick/Controls/Universal/impl;TYPE;module;") -set(qml_import_scanner_import_28 "CLASSNAME;QtQuickControls2NativeStylePlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultButton.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultCheckBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultComboBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultDial.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultFrame.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultGroupBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultItemDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultItemDelegateIconLabel.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultProgressBar.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultRadioButton.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultRadioDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultScrollBar.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultSlider.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultSpinBox.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTextArea.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTextField.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/controls/DefaultTreeViewDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle/util/MacFocusFrame.qml;LINKTARGET;Qt6::qtquickcontrols2nativestyleplugin;NAME;QtQuick.NativeStyle;PATH;/opt/homebrew/share/qt/qml/QtQuick/NativeStyle;PLUGIN;qtquickcontrols2nativestyleplugin;PREFER;:/qt-project.org/imports/QtQuick/NativeStyle/;RELATIVEPATH;QtQuick/NativeStyle;TYPE;module;") -set(qml_import_scanner_import_29 "CLASSNAME;QtQuickControls2macOSStyleImplPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl/SwitchHandle.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2macosstyleimplplugin;NAME;QtQuick.Controls.macOS.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/macOS/impl;PLUGIN;qtquickcontrols2macosstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/macOS/impl/;RELATIVEPATH;QtQuick/Controls/macOS/impl;TYPE;module;") -set(qml_import_scanner_import_30 "CLASSNAME;QtQuick_Controls_iOS_implPlugin;COMPONENTS;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl/CursorDelegate.qml;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl/DialogButtonBoxDelegate.qml;LINKTARGET;Qt6::qtquickcontrols2iosstyleimplplugin;NAME;QtQuick.Controls.iOS.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/iOS/impl;PLUGIN;qtquickcontrols2iosstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/iOS/impl/;RELATIVEPATH;QtQuick/Controls/iOS/impl;TYPE;module;") -set(qml_import_scanner_import_31 "CLASSNAME;QtQuickControls2BasicStyleImplPlugin;LINKTARGET;Qt6::qtquickcontrols2basicstyleimplplugin;NAME;QtQuick.Controls.Basic.impl;PATH;/opt/homebrew/share/qt/qml/QtQuick/Controls/Basic/impl;PLUGIN;qtquickcontrols2basicstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/impl/;RELATIVEPATH;QtQuick/Controls/Basic/impl;TYPE;module;") -set(qml_import_scanner_import_32 "CLASSNAME;QtQuickEffectsPlugin;LINKTARGET;Qt6::effectsplugin;NAME;QtQuick.Effects;PATH;/opt/homebrew/share/qt/qml/QtQuick/Effects;PLUGIN;effectsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Effects/;RELATIVEPATH;QtQuick/Effects;TYPE;module;") -set(qml_import_scanner_import_33 "CLASSNAME;QmlFolderListModelPlugin;LINKTARGET;Qt6::qmlfolderlistmodelplugin;NAME;Qt.labs.folderlistmodel;PATH;/opt/homebrew/share/qt/qml/Qt/labs/folderlistmodel;PLUGIN;qmlfolderlistmodelplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/Qt/labs/folderlistmodel/;RELATIVEPATH;Qt/labs/folderlistmodel;TYPE;module;") -set(qml_import_scanner_import_34 "NAME;QtQuick.Studio.EventSimulator;TYPE;module;") -set(qml_import_scanner_import_35 "NAME;QtQuick.Studio.EventSystem;TYPE;module;") - diff --git a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp b/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp deleted file mode 100644 index caa9b9d..0000000 --- a/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp +++ /dev/null @@ -1,15 +0,0 @@ --rootPath -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash --cmake-output --output-file -/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake --importPath -/Users/mason/Documents/Code/dash-cpp/build/Main --importPath -/Users/mason/Documents/Code/dash-cpp/build --importPath -/opt/homebrew/share/qt/qml --qrcFiles -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc \ No newline at end of file diff --git a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc b/build/.rcc/Bolt_DashApp_raw_qml_0.qrc deleted file mode 100644 index e717427..0000000 --- a/build/.rcc/Bolt_DashApp_raw_qml_0.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - - - diff --git a/build/.rcc/configuration.qrc b/build/.rcc/configuration.qrc deleted file mode 100644 index 1245a55..0000000 --- a/build/.rcc/configuration.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qtquickcontrols2.conf - - - diff --git a/build/.rcc/qmake_Main.qrc b/build/.rcc/qmake_Main.qrc deleted file mode 100644 index f2061fd..0000000 --- a/build/.rcc/qmake_Main.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/Main/qmldir - - - diff --git a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp b/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp deleted file mode 100644 index 516af40..0000000 --- a/build/.rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp +++ /dev/null @@ -1,7 +0,0 @@ ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -/Main/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp.rsp b/build/.rcc/qmllint/Bolt_DashApp.rsp deleted file mode 100644 index c71bcc9..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp.rsp +++ /dev/null @@ -1,12 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml diff --git a/build/.rcc/qmllint/Bolt_DashApp_json.rsp b/build/.rcc/qmllint/Bolt_DashApp_json.rsp deleted file mode 100644 index 8243fa0..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp_json.rsp +++ /dev/null @@ -1,14 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_qmllint.json diff --git a/build/.rcc/qmllint/Bolt_DashApp_module.rsp b/build/.rcc/qmllint/Bolt_DashApp_module.rsp deleted file mode 100644 index 68800ee..0000000 --- a/build/.rcc/qmllint/Bolt_DashApp_module.rsp +++ /dev/null @@ -1,12 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/configuration.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmake_Main.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/.rcc/Bolt_DashApp_raw_qml_0.qrc ---module -Main diff --git a/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake deleted file mode 100644 index 55edbf3..0000000 --- a/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,101 +0,0 @@ -set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "AppleClang") -set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000309") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "23") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Darwin") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "") -set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "") -set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") -set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") -set(CMAKE_CXX_COMPILER_LINKER_VERSION 1053.12) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) -set(CMAKE_MT "") -set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") -set(CMAKE_COMPILER_IS_GNUCXX ) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") - - - diff --git a/build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.30.0/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index eb805c69db3a876b24d6a692eafc7771fd4e56ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16984 zcmeI4U1%It6vyv=L=qB{v`DSQ;tEo<(WDai z2x|9)EWu{ASHFv6lWlMB*w%rf z%#5lt?1}g5QM6tg|6I9b8M%%g=L%&No1s+CNJNNwtdBW1@g>;=C4VG}TI{Cin1u;2 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC>Ds2~=Mbi`9ojWvNY6 zergoAsx6|j+%{RkOz!deXP%sHFqgyETOyTuUqj<{uWtsvvN`d$zK8d$@hu?--ZecR zkXK@fzU1zbdDtinOMT2L4sHz}6e1Bz_GNZkWoZ-(hCWz~^~k*mE!LZe3V79>OxZGI zp{N_h!FVi{ifd9!^v0qI_-RD=LFY?(SDIm_8RrOAQkqXEiKyr5gXW~0kfl{+f)NsQ zRY?d>nu#VQ@s1;_`D**P_UV&iJ)KaNfLMA3JDD4i#)Od_M;9Z;5ZVw8xgj$z?nR9V zAfeiuamSsb#~iw{4|(S7$$!kTDSeBNCZ+AVHYnTfnd%H-f`9F6rFyND1MzL$G>9)f zUjr8g;@j=xRp2sXJ}-^DZVu(`fL-dICt%dHtWm>_p?XMe|Ijp#%I?S3#daUgP_{21 z{6XSFEo7l-C<*4rqmhtbjh5Rd|NM0SoWPgOrJj~udUj~1IIo@k{Dg7v=BEq0x^KO7 zrL^Ij%8T#Ko!od?JHK%5ot{U|ygK_yx^QWEcs}_3;^GVbWV)_;*PfxXeJ$GkTzW;mm#I@lY$Nso!&g{JSV=?n{`O?K~-B*42g?FzW`1pz0 aYkgntpZd1iHP`TZ+b>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o deleted file mode 100644 index e061c08c6ce69105ac2b6f4739914165fe59258c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1712 zcmb_cJ#5oZ5PqShqzWV;F@P#TBo?M9Nn5D}MM~6w09kE^41uV6Sc#Kba-7Id!K&&_d2>lvl19;@o<=hs%1JU>teA1H?gh=UITfXuYF5D;H#6H#|AtCilC}FZCwo8|_6t^{Y3{vM<~2L))!LY2-(1-f+J-2jiHF zT6SSMHMZq6au=W~7v;CqH>da>-a7}|!{+v2BhYmy3HhWmP^$SG=|2{q`US&%>eY;lbQ?XVyMg+K**B;m~Yk{~vPHOZ62y|Ep&Yb7B6Sk5lr??bVxW z*XY;Sj^&kd&8B0mIHp_M5J9Htn0~e4)k}HP!*AoL>6JH2?6-W=t(aa#R;;SocKp)v z5@&E;EVpHYMuXhi>c%lY_Sk&#f#p%dQZkU#VnR8|(Y2Px0VLj!p0y z=!_7?uCke@uwaw%MA=Le792AiWi!MfaK|u|%`CvifRoB*hzB;LJCJFaMf~|raCU9dqyf9G-p-`SvPH$>ooBh f661yA*P9F6E&&H{UPCy5X$|23rZj{DNF4bCQt1(% diff --git a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake deleted file mode 100644 index 1907c0e..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp.dir/build.make b/build/CMakeFiles/Bolt_DashApp.dir/build.make deleted file mode 100644 index 9b92d89..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/build.make +++ /dev/null @@ -1,132 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include CMakeFiles/Bolt_DashApp.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/Bolt_DashApp.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/Bolt_DashApp.dir/flags.make - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/flags.make -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: Bolt_DashApp_autogen/mocs_compilation.cpp -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o: CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i - -CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s" - /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s - -# Object files for target Bolt_DashApp -Bolt_DashApp_OBJECTS = \ -"CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" - -# External object files for target Bolt_DashApp -Bolt_DashApp_EXTERNAL_OBJECTS = - -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/build.make -Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -Bolt_DashApp: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -Bolt_DashApp: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -Bolt_DashApp: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -Bolt_DashApp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -Bolt_DashApp: /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick -Bolt_DashApp: content/libcontentplugin.a -Bolt_DashApp: imports/Bolt_Dash/libBolt_Dashplugin.a -Bolt_DashApp: imports/IO/libIOPlugin.dylib -Bolt_DashApp: content/libcontentplugin.a -Bolt_DashApp: /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels -Bolt_DashApp: /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL -Bolt_DashApp: /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -Bolt_DashApp: content/libcontent.a -Bolt_DashApp: imports/Bolt_Dash/libBolt_Dash.a -Bolt_DashApp: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -Bolt_DashApp: /opt/homebrew/lib/libQt6QmlBuiltins.a -Bolt_DashApp: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -Bolt_DashApp: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable Bolt_DashApp" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_DashApp.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp.dir/build: Bolt_DashApp -.PHONY : CMakeFiles/Bolt_DashApp.dir/build - -CMakeFiles/Bolt_DashApp.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp.dir/clean - -CMakeFiles/Bolt_DashApp.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake deleted file mode 100644 index 7904d33..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_DashApp_autogen" - "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt" - "Bolt_DashApp" - "Bolt_DashApp.pdb" - "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_DashApp.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make deleted file mode 100644 index f282e55..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_DashApp. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts deleted file mode 100644 index 0057db6..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_DashApp. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/depend.make b/build/CMakeFiles/Bolt_DashApp.dir/depend.make deleted file mode 100644 index 5ef48a7..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_DashApp. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp.dir/flags.make b/build/CMakeFiles/Bolt_DashApp.dir/flags.make deleted file mode 100644 index 3c66242..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/CMakeFiles/Bolt_DashApp.dir/link.txt b/build/CMakeFiles/Bolt_DashApp.dir/link.txt deleted file mode 100644 index 0ba117d..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -o Bolt_DashApp -F/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o /opt/homebrew/lib/QtQuick.framework/Versions/A/QtQuick -lpigpio content/libcontentplugin.a imports/Bolt_Dash/libBolt_Dashplugin.a imports/IO/libIOPlugin.dylib content/libcontentplugin.a /opt/homebrew/lib/QtQmlModels.framework/Versions/A/QtQmlModels /opt/homebrew/lib/QtOpenGL.framework/Versions/A/QtOpenGL /opt/homebrew/lib/QtGui.framework/Versions/A/QtGui -framework OpenGL -framework AGL -framework AppKit -framework ImageIO -framework Metal content/libcontent.a imports/Bolt_Dash/libBolt_Dash.a /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/CMakeFiles/Bolt_DashApp.dir/progress.make b/build/CMakeFiles/Bolt_DashApp.dir/progress.make deleted file mode 100644 index e869fc5..0000000 --- a/build/CMakeFiles/Bolt_DashApp.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 13 - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json b/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json deleted file mode 100644 index 86cbbe9..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,1169 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt", - "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeSystem.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake", - "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CMakeCXXCompiler.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake", - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake", - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/deps", - "DEP_FILE_RULE_NAME" : "Bolt_DashApp_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_GUI_LIB", - "QT_NETWORK_LIB", - "QT_OPENGL_LIB", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QMLMODELS_LIB", - "QT_QML_LIB", - "QT_QUICK_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers", - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtGui.framework/Headers", - "/opt/homebrew/lib/QtGui.framework", - "/opt/homebrew/lib/QtQuick.framework/Headers", - "/opt/homebrew/lib/QtQuick.framework", - "/opt/homebrew/lib/QtQmlModels.framework/Headers", - "/opt/homebrew/lib/QtQmlModels.framework", - "/opt/homebrew/lib/QtOpenGL.framework/Headers", - "/opt/homebrew/lib/QtOpenGL.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_main_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmlcache/Bolt_DashApp_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_Bolt_DashApp_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_configuration.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/.rcc/qrc_qmake_Main.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake deleted file mode 100644 index 07d9f7d..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "Bolt_DashApp_autogen/timestamp" "custom" "Bolt_DashApp_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make deleted file mode 100644 index 8dac47c..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_autogen. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_autogen.dir/progress.make - -CMakeFiles/Bolt_DashApp_autogen: Bolt_DashApp_autogen/timestamp - -Bolt_DashApp_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -Bolt_DashApp_autogen/timestamp: CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_DashApp" - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp - -Bolt_DashApp_autogen: Bolt_DashApp_autogen/timestamp -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/build.make -.PHONY : Bolt_DashApp_autogen - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_autogen.dir/build: Bolt_DashApp_autogen -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/build - -CMakeFiles/Bolt_DashApp_autogen.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean - -CMakeFiles/Bolt_DashApp_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake deleted file mode 100644 index d1f993a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_DashApp_autogen/mocs_compilation.cpp" - "Bolt_DashApp_autogen/timestamp" - "CMakeFiles/Bolt_DashApp_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make deleted file mode 100644 index 97ffaae..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_autogen. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts deleted file mode 100644 index 2e4b7d7..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index ffb5742..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make - -Bolt_DashApp_autogen_timestamp_deps: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make -.PHONY : Bolt_DashApp_autogen_timestamp_deps - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build: Bolt_DashApp_autogen_timestamp_deps -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build - -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean - -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 053cef3..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 3b87a9b..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index 0bae455..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_autogen_timestamp_deps. diff --git a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make deleted file mode 100644 index d0ae7ae..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make +++ /dev/null @@ -1,95 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmlimportscan. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake - -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /opt/homebrew/share/qt/libexec/qmlimportscanner -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/configuration.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/qmake_Main.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: .rcc/Bolt_DashApp_raw_qml_0.qrc -.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running qmlimportscanner for Bolt_DashApp" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlimportscanner @/Users/mason/Documents/Code/dash-cpp/build/.qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.rsp - -Bolt_DashApp_qmlimportscan: .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make -.PHONY : Bolt_DashApp_qmlimportscan - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build: Bolt_DashApp_qmlimportscan -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build - -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean - -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake deleted file mode 100644 index a20954a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - "CMakeFiles/Bolt_DashApp_qmlimportscan" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmlimportscan.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make deleted file mode 100644 index b4c062d..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmlimportscan. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts deleted file mode 100644 index 501af74..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmlimportscan. diff --git a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make deleted file mode 100644 index db9f2e4..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 14 - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make deleted file mode 100644 index 4e6b923..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint: .rcc/qmllint/Bolt_DashApp.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp.rsp - -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/build.make -.PHONY : Bolt_DashApp_qmllint - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint.dir/build: Bolt_DashApp_qmllint -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/build - -CMakeFiles/Bolt_DashApp_qmllint.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index cb56b10..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make deleted file mode 100644 index ad45339..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts deleted file mode 100644 index d1f1a16..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make deleted file mode 100644 index f4dd621..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint_json. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint_json: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint_json: .rcc/qmllint/Bolt_DashApp_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_json.rsp - -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make -.PHONY : Bolt_DashApp_qmllint_json - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/build: Bolt_DashApp_qmllint_json -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/build - -CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 0d5b73e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 50770eb..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 3e2382e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_json. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make deleted file mode 100644 index 890f83f..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make +++ /dev/null @@ -1,89 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmllint_module. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmllint_module: /opt/homebrew/bin/qmllint -CMakeFiles/Bolt_DashApp_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml -CMakeFiles/Bolt_DashApp_qmllint_module: .rcc/qmllint/Bolt_DashApp_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/.rcc/qmllint/Bolt_DashApp_module.rsp - -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make -.PHONY : Bolt_DashApp_qmllint_module - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/build: Bolt_DashApp_qmllint_module -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/build - -CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean - -CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b81100e..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_DashApp_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index ef9a392..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 0f85f5b..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmllint_module. diff --git a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 4d411ca..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "Bolt_DashApp_autogen/timestamp" "custom" "Bolt_DashApp_autogen/deps" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/Main/Bolt_DashApp.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make deleted file mode 100644 index e89aba1..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,136 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make - -CMakeFiles/Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp -CMakeFiles/Bolt_DashApp_qmltyperegistration: Main/Bolt_DashApp.qmltypes - -bolt_dashapp_qmltyperegistrations.cpp: qmltypes/Bolt_DashApp_foreign_types.txt -bolt_dashapp_qmltyperegistrations.cpp: meta_types/qt6bolt_dashapp_debug_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -bolt_dashapp_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/Main/Bolt_DashApp.qmltypes --import-name=Main --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/qmltypes/Bolt_DashApp_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/bolt_dashapp_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/.generated - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/.generated/Bolt_DashApp.qmltypes - -Main/Bolt_DashApp.qmltypes: bolt_dashapp_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate Main/Bolt_DashApp.qmltypes - -meta_types/qt6bolt_dashapp_debug_metatypes.json: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dashapp_debug_metatypes.json" - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -meta_types/qt6bolt_dashapp_debug_metatypes.json.gen: meta_types/Bolt_DashApp_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/meta_types/qt6bolt_dashapp_debug_metatypes.json - -meta_types/Bolt_DashApp_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -meta_types/Bolt_DashApp_json_file_list.txt: Bolt_DashApp_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target Bolt_DashApp" - /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/meta_types/Bolt_DashApp_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include - -Bolt_DashApp_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -Bolt_DashApp_autogen/timestamp: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target Bolt_DashApp" - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json Debug - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/timestamp - -Bolt_DashApp_qmltyperegistration: Bolt_DashApp_autogen/timestamp -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration -Bolt_DashApp_qmltyperegistration: Main/Bolt_DashApp.qmltypes -Bolt_DashApp_qmltyperegistration: bolt_dashapp_qmltyperegistrations.cpp -Bolt_DashApp_qmltyperegistration: meta_types/Bolt_DashApp_json_file_list.txt -Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json -Bolt_DashApp_qmltyperegistration: meta_types/qt6bolt_dashapp_debug_metatypes.json.gen -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make -.PHONY : Bolt_DashApp_qmltyperegistration - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build: Bolt_DashApp_qmltyperegistration -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build - -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean - -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index feb8e0a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_DashApp_autogen/mocs_compilation.cpp" - "Bolt_DashApp_autogen/timestamp" - "CMakeFiles/Bolt_DashApp_qmltyperegistration" - "Main/Bolt_DashApp.qmltypes" - "bolt_dashapp_qmltyperegistrations.cpp" - "meta_types/Bolt_DashApp_json_file_list.txt" - "meta_types/Bolt_DashApp_json_file_list.txt.timestamp" - "meta_types/qt6bolt_dashapp_debug_metatypes.json" - "meta_types/qt6bolt_dashapp_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index a2fdb08..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index 898276b..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_qmltyperegistration. diff --git a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make deleted file mode 100644 index 26c4583..0000000 --- a/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,6 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 15 -CMAKE_PROGRESS_3 = 16 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = 17 - diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make deleted file mode 100644 index 1cb7170..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_DashApp_tooling. - -# Include any custom commands dependencies for this target. -include CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/Bolt_DashApp_tooling.dir/progress.make - -Main/main.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying main.qml to /Users/mason/Documents/Code/dash-cpp/build/Main/main.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/main.qml /Users/mason/Documents/Code/dash-cpp/build/Main/main.qml - -Bolt_DashApp_tooling: Main/main.qml -Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/build.make -.PHONY : Bolt_DashApp_tooling - -# Rule to build all files generated by this target. -CMakeFiles/Bolt_DashApp_tooling.dir/build: Bolt_DashApp_tooling -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/build - -CMakeFiles/Bolt_DashApp_tooling.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean - -CMakeFiles/Bolt_DashApp_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/depend - diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake b/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake deleted file mode 100644 index f7c9511..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "Main/main.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_DashApp_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make deleted file mode 100644 index e6b0af0..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_DashApp_tooling. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts b/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts deleted file mode 100644 index 259884a..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_DashApp_tooling. diff --git a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make b/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/CMakeFiles/Bolt_DashApp_tooling.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 0a6bd81..0000000 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,322 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" - - "CMakeLists.txt:6 (project)" - message: | - The system is: Darwin - 23.6.0 - arm64 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:6 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. - Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - Build flags: - Id flags: - - The output was: - 1 - ld: library 'c++' not found - clang: error: linker command failed with exit code 1 (use -v to see invocation) - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:6 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - Build flags: - Id flags: -c - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" - - The CXX compiler identification is AppleClang, found in: - /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.o - - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4dca7/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4dca7.dir/build.make CMakeFiles/cmTC_4dca7.dir/build - Building CXX object CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl,-v -MD -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp - Apple clang version 15.0.0 (clang-1500.3.9.4) - Target: arm64-apple-darwin23.6.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp - clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.6.0 - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include" - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks" - #include "..." search starts here: - #include <...> search starts here: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 - /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory) - End of search list. - Linking CXX executable cmTC_4dca7 - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4dca7.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4dca7 - Apple clang version 15.0.0 (clang-1500.3.9.4) - Target: arm64-apple-darwin23.6.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_4dca7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a - @(#)PROGRAM:ld PROJECT:ld-1053.12 - BUILD 15:45:29 Feb 3 2024 - configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em - will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em - LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) - TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) - Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift - Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:113 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Effective list of requested architectures (possibly empty) : "" - Effective list of architectures found in the ABI info binary: "arm64" - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - add: [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8'] - ignore line: [] - ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4dca7/fast] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4dca7.dir/build.make CMakeFiles/cmTC_4dca7.dir/build] - ignore line: [Building CXX object CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -v -Wl -v -MD -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] - ignore line: [Target: arm64-apple-darwin23.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx14.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -fcoverage-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-p2VMK8 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target arm64-apple-darwin23.6.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [Linking CXX executable cmTC_4dca7] - ignore line: [/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4dca7.dir/link.txt --verbose=1] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4dca7] - ignore line: [Apple clang version 15.0.0 (clang-1500.3.9.4)] - ignore line: [Target: arm64-apple-darwin23.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 14.0.0 14.4 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o cmTC_4dca7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [14.0.0] ==> ignore - arg [14.4] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_4dca7] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_4dca7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lc++] ==> lib [c++] - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - implicit libs: [c++] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/lib/swift] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/System/Library/Frameworks] - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:6 (project)" - message: | - Running the CXX compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" - @(#)PROGRAM:ld PROJECT:ld-1053.12 - BUILD 15:45:29 Feb 3 2024 - configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em - will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em - LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) - TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.3.2.2) - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake:27 (_qt_internal_find_third_party_dependencies)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:122 (include)" - - "CMakeLists.txt:10 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/kwin" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_23e26/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_23e26.dir/build.make CMakeFiles/cmTC_23e26.dir/build - Building CXX object CMakeFiles/cmTC_23e26.dir/src.cxx.o - /Library/Developer/CommandLineTools/usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_23e26.dir/src.cxx.o -MF CMakeFiles/cmTC_23e26.dir/src.cxx.o.d -o CMakeFiles/cmTC_23e26.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Irc2iz/src.cxx - Linking CXX executable cmTC_23e26 - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23e26.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_23e26.dir/src.cxx.o -o cmTC_23e26 - - exitCode: 0 - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" - - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:33 (_qt_internal_find_third_party_dependencies)" - - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" - - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake:167 (find_package)" - - "CMakeLists.txt:10 (find_package)" - checks: - - "Performing Test HAVE_STDATOMIC" - directories: - source: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ" - binary: "/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/3rdparty/kwin" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk" - buildResult: - variable: "HAVE_STDATOMIC" - cached: true - stdout: | - Change Dir: '/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ' - - Run Build Command(s): /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_47d81/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_47d81.dir/build.make CMakeFiles/cmTC_47d81.dir/build - Building CXX object CMakeFiles/cmTC_47d81.dir/src.cxx.o - /Library/Developer/CommandLineTools/usr/bin/c++ -DHAVE_STDATOMIC -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -MD -MT CMakeFiles/cmTC_47d81.dir/src.cxx.o -MF CMakeFiles/cmTC_47d81.dir/src.cxx.o.d -o CMakeFiles/cmTC_47d81.dir/src.cxx.o -c /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/CMakeScratch/TryCompile-Pim0mZ/src.cxx - Linking CXX executable cmTC_47d81 - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47d81.dir/link.txt --verbose=1 - /Library/Developer/CommandLineTools/usr/bin/c++ -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_47d81.dir/src.cxx.o -o cmTC_47d81 - - exitCode: 0 -... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 05e27f5..0000000 --- a/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index 62072e0..0000000 --- a/build/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,129 +0,0 @@ -# Hashes of file build rules. -704fe75316b31e8832e2a1ae46edf113 .qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake -9c87ad4ad6a7dfee621dbcd800388019 Bolt_DashApp_autogen/timestamp -1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_autogen -1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmlimportscan -3653f848231646653d797c90daf6e861 CMakeFiles/Bolt_DashApp_qmllint -530f209369bf8951464fc5ba15e07c38 CMakeFiles/Bolt_DashApp_qmllint_json -c5bcb51a79f362b4dca117214c8c8283 CMakeFiles/Bolt_DashApp_qmllint_module -1246496eba144803829006a4238fe33c CMakeFiles/Bolt_DashApp_qmltyperegistration -8487762ca65be0f7bf90ab127f834a93 Main/main.qml -47263914e10fc6e3aed5181b992c1989 bolt_dashapp_qmltyperegistrations.cpp -b862f700333ba98158414d865d82f247 content/.rcc/qmlcache/content_App_qml.cpp -9ca7890edd817a1bc494230512919c13 content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp -0020b559df1c0ea3b12f9806b2c05e79 content/.rcc/qmlcache/content_BatteryReadout_qml.cpp -a8a0845457b7a5e23716d25af2592f31 content/.rcc/qmlcache/content_BatterySlider_qml.cpp -5e0b1aaa93ae6b6abcb0f7015a53e517 content/.rcc/qmlcache/content_BikeStatus_qml.cpp -1dae36ace5f6eaee864cf6d449570104 content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp -999201d32a145ab0bdda55ebc7013128 content/.rcc/qmlcache/content_Debug1_qml.cpp -845bad67b3a709f5be618e2f6a6b0d2b content/.rcc/qmlcache/content_DebugBMS_qml.cpp -91369be73d7b51b761b1d05cb608dc76 content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp -87eeda970336d3520a2f4ed52aa0617e content/.rcc/qmlcache/content_DebugMain_qml.cpp -4a6bab32df1440f3c7a7160b4d95d7c9 content/.rcc/qmlcache/content_DebugMotor_qml.cpp -0dcb07f54997f2509f9a26be4416a952 content/.rcc/qmlcache/content_DebugOverview_qml.cpp -e884892fc762bd598002e342bd147653 content/.rcc/qmlcache/content_DebugPDU_qml.cpp -e67c773c20a2baee44fc5428352f4d02 content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp -dc54deeed1589373138e0429e483a562 content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp -4daf90a8dcceaff150519f9569528a7d content/.rcc/qmlcache/content_FullSlider_qml.cpp -40fecabe524ea287ebe72331a2e7a4ec content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -c51d8cfc38bab83fa1284d0db6ab3458 content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp -eafa5657c801230db38f007f7aeb9b8c content/.rcc/qmlcache/content_Speedometer_qml.cpp -f48d8896119c3e3ec88cbf531c4dd5b6 content/.rcc/qmlcache/content_TempSlider_qml.cpp -35980a40b28cb693ca95aa2087555f9e content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp -a2dfda2fde36ae348be63fd54f7c6ca1 content/.rcc/qmlcache/content_qmlcache_loader.cpp -d0615d8a132e74f7d67dc3af3a3509ec content/.rcc/qrc_content_raw_qml_0.cpp -2130f002b849a41f58fe7e1dead40cba content/.rcc/qrc_qmake_content.cpp -7165e007e8bc52b59131f9ec2686e2d7 content/App.qml -416aaf68d7230de25da0d523962113ed content/BMSFaultDetails.qml -6e69351f6d3333a0a3b73bc22d0a054d content/BatteryReadout.qml -856aae9e76409e8089aad40f5a93f70a content/BatterySlider.qml -4170b4b9a84ebf9e07429f128f41142e content/BikeStatus.qml -f62a7ecba293af8d7fd16d51663f01c3 content/BoltLeanAngle.qml -6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_autogen -850b411bbd6f11304211bd065349ac4e content/CMakeFiles/content_qmllint -ccab716c0cb6327a73e949c98a1ec4b4 content/CMakeFiles/content_qmllint_json -831e4ec481c5698f2fa4ef3ecb438d03 content/CMakeFiles/content_qmllint_module -6f96b9a395bb023f062344992053b58d content/CMakeFiles/content_qmltyperegistration -6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_autogen -6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_autogen_timestamp_deps -6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_init_autogen -6f96b9a395bb023f062344992053b58d content/CMakeFiles/contentplugin_init_autogen_timestamp_deps -8dd84c515b570e9328a34e2e1f90b70a content/Debug1.qml -ef1507fc1edf4df40281bb706ef9c0a4 content/DebugBMS.qml -6391ed2e78928a22ae7cf07371f65575 content/DebugItem1.ui.qml -debc98e7129c522733163c04ff4bdd22 content/DebugMain.qml -7b33e447e6fa9d492e29b2ab2b6931fa content/DebugMotor.qml -b22949e52a5323932c5ca97c7eb49221 content/DebugOverview.qml -cce5a991a442693d83c16efe1f1f33f2 content/DebugPDU.qml -7e25cd328d4f34e89f1fc8ec3fa2b06d content/FaultMotorStatus.qml -91afbe6159d26850cdc80dfd18ca7f62 content/FullBatterySlider.qml -85fc9838b4db2b21de841bd75c091bf8 content/FullSlider.qml -d45eb6b0a41860bda7317d4624eaed31 content/Pictures/Virginia_Tech_Hokies_logo.svg -7f998076178e90dd57328a90c73dc1e7 content/Pictures/battery-twotone-0-svgrepo-com.svg -21310d767b4a9d09fb484b9154972da1 content/Pictures/battery.svg -dc883fc98993347201ad3ea1114c8df7 content/Pictures/battery_temp.svg -0ad3a38d006213728e8a1ea79a50db03 content/Pictures/controller_temp.svg -ceb767a901829c7a2387549ab19534e1 content/Pictures/leanAngleBack.png -3328149e5cc5737327b2848735d441cf content/Pictures/motor_temp.svg -d9e93aca0f313fcd74a1390052fb8df6 content/Pictures/motorcycleIcon.png -1e42b24935f295ab625324b4085502bc content/Screen01.ui.qml -4816856bdc4a4a26315047f66217e035 content/Speedometer.qml -4047e0e395a219744ecf7dc7986b2662 content/SpeedometerDecorations.qml -875f3edc9c7db84a9fad5332bd27edaf content/TempSlider.qml -151875fd6e57577fff017390b1b51500 content/TemperatureIsland.qml -6a8df2176e6f7a6552a8169d09a59b3c content/content_autogen/timestamp -fba069025f2098b1faac854f1c8cace1 content/content_qmltyperegistrations.cpp -0d86d882175bf35fb8bff991f8fb6618 content/contentplugin_autogen/timestamp -9098ce3a3cea6a7b9083bdf3bced6b08 content/contentplugin_init_autogen/timestamp -853c0add551bf1a7157f6ba17b621927 content/fonts/MesloLGSDZNerdFontMono-Regular.ttf -47e63d1de74d7a16fc1a2041fcc91822 content/fonts/fonts.txt -7d930cd1b0c0ae4fd2ac59bdd3d6f991 content/fonts/nasalization-rg.otf -470e775060afaf0d3f0d4fea58897772 content/meta_types/content_json_file_list.txt -a57efff904f9df659941e033ea3d7a6a content/meta_types/qt6content_debug_metatypes.json -ead16443c68549f47a39e41bc6290228 content/meta_types/qt6content_debug_metatypes.json.gen -842f112bf1dbc54f6a739d1f2a355206 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -4498ff884312e979b350c6c233d8ea6a imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -61683091f39957d00ccb0e0e253a921d imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -5a210f5c57cae6776c337ceb7f48438e imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -ec8d88fb6b922a94c8753c64df24e975 imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -adbb375648730d47bb1ba5b91b8158e0 imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -e13326feff4b181fa0f6f811aa2af1e9 imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -e7cb1ded6ab7784da4c4cec8333c139d imports/Bolt_Dash/Bolt_Dash_autogen/timestamp -5242d4559227098b1a94ac451d8e9b15 imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp -b0b41acd42faf989798eb63851049543 imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen -589b4d6dcf10118dc596cbafe032e759 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint -1817681b06f59c78b1dc8f2ebefa90f0 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json -870c838975dd4644c9eb992ec0d92ed9 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen -1f049a0ea6d2bb239471b5786703f3cb imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps -69cfde95dc7ec8b9f3de71e54a8abe8a imports/Bolt_Dash/Constants.qml -b185ce8b3d4d9a61e95ac8fcdcd2ffe8 imports/Bolt_Dash/DirectoryFontLoader.qml -ba1f9013c629f4d3b9b67b29cb369f2e imports/Bolt_Dash/EventListModel.qml -59ae07c0f0183f8fbf5b66671ec762c7 imports/Bolt_Dash/EventListSimulator.qml -36b2f16f17fdf21a2f5b2135355c5f28 imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -b55179fdf2d49ef82e2837c92bee5ae0 imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt -1eb7e03e9fc61892123a122f250bafd6 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -1d09b3cea3b663762fdb0170e51f09a2 imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen -291a630f8c97fb9a43349136d13d01ed imports/IO/.rcc/qrc_qmake_IO.cpp -3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPlugin_autogen -f045b0aaea8c9ab6930eca7411e8976a imports/IO/CMakeFiles/IOPlugin_qmllint -7f95e641647af9b355b534538d6cf0ed imports/IO/CMakeFiles/IOPlugin_qmllint_json -de6dfe41cfd8fe8e740591e14c3628f4 imports/IO/CMakeFiles/IOPlugin_qmllint_module -3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPlugin_qmltyperegistration -3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPluginplugin_autogen -3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps -3e9214ddb282f8214f0bcf4e7533643e imports/IO/CMakeFiles/IO_autogen -6472148bac2051d1f36cb8c3dab14c29 imports/IO/IOPlugin_autogen/timestamp -de74a8d3a925e9b20e0087e0e42e953e imports/IO/IOPluginplugin_autogen/timestamp -137becfa272ba80f51fb29364e61d398 imports/IO/IO_autogen/timestamp -d4c6faf7c1727a5578bbda1133727724 imports/IO/ioplugin_qmltyperegistrations.cpp -47bc739b2ef08bbec3ae77efa98f0980 imports/IO/meta_types/IOPlugin_json_file_list.txt -cac07eb70e94a5d29be6c82b2bc8e4a5 imports/IO/meta_types/qt6ioplugin_debug_metatypes.json -56510a84b97f41338d8466abdb379460 imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen -f94c5a4b6b0d9e1f39badebfd5cd2b4d meta_types/Bolt_DashApp_json_file_list.txt -7cb1e8c0ddaedf4397130f74bb52e256 meta_types/qt6bolt_dashapp_debug_metatypes.json -a4f64cb6ee902549217cfcec862746dc meta_types/qt6bolt_dashapp_debug_metatypes.json.gen diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index 94f45b9..0000000 --- a/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,923 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/insight" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/qmlmodules" - ".qt_plugins/Qt6_QmlPlugins_Imports_Bolt_DashApp.cmake" - "CMakeFiles/3.30.0/CMakeCXXCompiler.cmake" - "CMakeFiles/3.30.0/CMakeSystem.cmake" - "content/contentplugin_contentPlugin_in.cpp" - "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - "imports/IO/IOPluginplugin_IOPlugin_in.cpp" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeGenericSystem.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckIncludeFileCXX.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CheckLibraryExists.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/Clang.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Compiler/GNU.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindOpenGL.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindPackageMessage.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindThreads.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/FindVulkan.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/GNUInstallDirs.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/MacroAddFileDependencies.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Apple-Clang.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/Darwin.cmake" - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/Platform/UnixPaths.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapAtomic.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeature.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtFeatureCommon.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicTestHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicToolHelpers.cmake" - "/opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Config.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Dependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6Targets.cmake" - "/opt/homebrew/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CorePlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinBluetoothPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCalendarPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinCameraPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinContactsPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinLocationPermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/Qt6QDarwinMicrophonePermissionPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Core/QtInstallPaths.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QCocoaIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMacHeifPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSCNetworkReachabilityNetworkInformationPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QSecureTransportBackendPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DataVisualizationQmlpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6DeclarativeOpcuapluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6GraphspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6PdfQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlMetaTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6SensorsQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6TextToSpeechQmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6WebChannelQuickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_locationTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_remoteobjectsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6declarative_scxmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6grpcquickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6lottieqtpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6positioningquickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwebsocketsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dphysicspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtgraphicaleffectsprivateTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlstatemachineTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dphysicshelperspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2iosstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2macosstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbbuiltinstylespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbcomponentspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhangulpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbhunspellpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkblayoutspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbopenwnnpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpinyinpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbpluginspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbsettingspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbstylespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbtcimepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtvkbthaipluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickdelegatespluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebenginequickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtwebviewquickpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlBuiltins/Qt6QmlBuiltinsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-release.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake" - "/opt/homebrew/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - ".rcc/configuration.qrc" - ".rcc/qmake_Main.qrc" - "Main/Bolt_DashApp_qml_module_dir_map.qrc" - ".rcc/Bolt_DashApp_raw_qml_0.qrc" - "Main/qmldir" - "CMakeFiles/Bolt_DashApp_autogen.dir/AutogenInfo.json" - ".qt/QtDeploySupport.cmake" - "qmltypes/Bolt_DashApp_foreign_types.txt" - ".rcc/qmllint/Bolt_DashApp.rsp" - ".rcc/qmllint/Bolt_DashApp_json.rsp" - ".rcc/qmllint/Bolt_DashApp_module.rsp" - ".rcc/qmlcache/Bolt_DashApp_qml_loader_file_list.rsp" - ".qt/QtDeployTargets.cmake" - ".qt/deploy_qml_imports/Bolt_DashApp.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - "content/.rcc/qmake_content.qrc" - "content/.rcc/qrc_qmake_content_init.cpp" - "content/contentplugin_contentPlugin_in.cpp" - "content/content_qml_module_dir_map.qrc" - "content/.rcc/content_raw_qml_0.qrc" - "content/.rcc/qrc_content_raw_qml_0_init.cpp" - "content/qmldir" - "content/CMakeFiles/content_autogen.dir/AutogenInfo.json" - "content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json" - "content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json" - "content/qmltypes/content_foreign_types.txt" - "content/contentplugin_contentPlugin.cpp" - "content/.rcc/qmllint/content.rsp" - "content/.rcc/qmllint/content_json.rsp" - "content/.rcc/qmllint/content_module.rsp" - "content/.rcc/qmlcache/content_qml_loader_file_list.rsp" - "content/contentplugin_init.cpp" - "content/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc" - "imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp" - "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - "imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc" - "imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc" - "imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp" - "imports/Bolt_Dash/qmldir" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json" - "imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt" - "imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp" - "imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp" - "imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp" - "imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" - "imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake" - "imports/IO/.rcc/qmake_IO.qrc" - "imports/IO/IOPluginplugin_IOPlugin_in.cpp" - "imports/IO/IOPlugin_qml_module_dir_map.qrc" - "imports/IO/qmldir" - "imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json" - "imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json" - "imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json" - "imports/IO/qmltypes/IOPlugin_foreign_types.txt" - "imports/IO/IOPluginplugin_IOPlugin.cpp" - "imports/IO/.rcc/qmllint/IOPlugin.rsp" - "imports/IO/.rcc/qmllint/IOPlugin_json.rsp" - "imports/IO/.rcc/qmllint/IOPlugin_module.rsp" - "imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/Bolt_DashApp.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/DependInfo.cmake" - "CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint_json.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmllint_module.dir/DependInfo.cmake" - "CMakeFiles/all_qmllint.dir/DependInfo.cmake" - "CMakeFiles/all_qmllint_json.dir/DependInfo.cmake" - "CMakeFiles/all_qmllint_module.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_tooling.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_qmlimportscan.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/DependInfo.cmake" - "CMakeFiles/Bolt_DashApp_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/content.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake" - "content/CMakeFiles/content_resources_1.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake" - "content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake" - "content/CMakeFiles/content_tooling.dir/DependInfo.cmake" - "content/CMakeFiles/content_resources_2.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake" - "content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake" - "content/CMakeFiles/content_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake" - "content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IO.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake" - "imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake" - ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 deleted file mode 100644 index da36f73..0000000 --- a/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,1802 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/Bolt_DashApp.dir/all -all: CMakeFiles/Bolt_DashApp_tooling.dir/all -all: content/all -all: imports/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: content/preinstall -preinstall: imports/preinstall -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/Bolt_DashApp.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean -clean: CMakeFiles/all_qmltyperegistrations.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean -clean: CMakeFiles/all_qmllint.dir/clean -clean: CMakeFiles/all_qmllint_json.dir/clean -clean: CMakeFiles/all_qmllint_module.dir/clean -clean: CMakeFiles/Bolt_DashApp_tooling.dir/clean -clean: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean -clean: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean -clean: CMakeFiles/Bolt_DashApp_autogen.dir/clean -clean: content/clean -clean: imports/clean -.PHONY : clean - -#============================================================================= -# Directory level rules for directory content - -# Recursive "all" directory target. -content/all: content/CMakeFiles/content.dir/all -content/all: content/CMakeFiles/content_resources_1.dir/all -content/all: content/CMakeFiles/contentplugin.dir/all -content/all: content/CMakeFiles/content_tooling.dir/all -content/all: content/CMakeFiles/content_resources_2.dir/all -content/all: content/CMakeFiles/contentplugin_init.dir/all -.PHONY : content/all - -# Recursive "preinstall" directory target. -content/preinstall: -.PHONY : content/preinstall - -# Recursive "clean" directory target. -content/clean: content/CMakeFiles/content.dir/clean -content/clean: content/CMakeFiles/content_qmltyperegistration.dir/clean -content/clean: content/CMakeFiles/content_resources_1.dir/clean -content/clean: content/CMakeFiles/contentplugin.dir/clean -content/clean: content/CMakeFiles/content_qmllint.dir/clean -content/clean: content/CMakeFiles/content_qmllint_json.dir/clean -content/clean: content/CMakeFiles/content_qmllint_module.dir/clean -content/clean: content/CMakeFiles/content_tooling.dir/clean -content/clean: content/CMakeFiles/content_resources_2.dir/clean -content/clean: content/CMakeFiles/contentplugin_init.dir/clean -content/clean: content/CMakeFiles/content_autogen_timestamp_deps.dir/clean -content/clean: content/CMakeFiles/content_autogen.dir/clean -content/clean: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean -content/clean: content/CMakeFiles/contentplugin_autogen.dir/clean -content/clean: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean -content/clean: content/CMakeFiles/contentplugin_init_autogen.dir/clean -.PHONY : content/clean - -#============================================================================= -# Directory level rules for directory imports - -# Recursive "all" directory target. -imports/all: imports/Bolt_Dash/all -imports/all: imports/IO/all -.PHONY : imports/all - -# Recursive "preinstall" directory target. -imports/preinstall: imports/Bolt_Dash/preinstall -imports/preinstall: imports/IO/preinstall -.PHONY : imports/preinstall - -# Recursive "clean" directory target. -imports/clean: imports/Bolt_Dash/clean -imports/clean: imports/IO/clean -.PHONY : imports/clean - -#============================================================================= -# Directory level rules for directory imports/Bolt_Dash - -# Recursive "all" directory target. -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -imports/Bolt_Dash/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all -.PHONY : imports/Bolt_Dash/all - -# Recursive "preinstall" directory target. -imports/Bolt_Dash/preinstall: -.PHONY : imports/Bolt_Dash/preinstall - -# Recursive "clean" directory target. -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean -imports/Bolt_Dash/clean: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean -.PHONY : imports/Bolt_Dash/clean - -#============================================================================= -# Directory level rules for directory imports/IO - -# Recursive "all" directory target. -imports/IO/all: imports/IO/CMakeFiles/IO.dir/all -imports/IO/all: imports/IO/CMakeFiles/IOPlugin.dir/all -imports/IO/all: imports/IO/CMakeFiles/IOPluginplugin.dir/all -.PHONY : imports/IO/all - -# Recursive "preinstall" directory target. -imports/IO/preinstall: -.PHONY : imports/IO/preinstall - -# Recursive "clean" directory target. -imports/IO/clean: imports/IO/CMakeFiles/IO.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/qt_internal_plugins.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IO_autogen.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean -imports/IO/clean: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean -.PHONY : imports/IO/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_autogen.dir/all -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all -CMakeFiles/Bolt_DashApp.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/content_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: content/CMakeFiles/contentplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all -CMakeFiles/Bolt_DashApp.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=13 "Built target Bolt_DashApp" -.PHONY : CMakeFiles/Bolt_DashApp.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 85 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp.dir/rule - -# Convenience name for target. -Bolt_DashApp: CMakeFiles/Bolt_DashApp.dir/rule -.PHONY : Bolt_DashApp - -# clean rule for target. -CMakeFiles/Bolt_DashApp.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmltyperegistration.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=15,16,17 "Built target Bolt_DashApp_qmltyperegistration" -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 29 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmltyperegistration: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/rule -.PHONY : Bolt_DashApp_qmltyperegistration - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/all_qmltyperegistrations.dir - -# All Build rule for target. -CMakeFiles/all_qmltyperegistrations.dir/all: CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/all -CMakeFiles/all_qmltyperegistrations.dir/all: content/CMakeFiles/content_qmltyperegistration.dir/all -CMakeFiles/all_qmltyperegistrations.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all -CMakeFiles/all_qmltyperegistrations.dir/all: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmltyperegistrations" -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/all_qmltyperegistrations.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmltyperegistrations.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/rule - -# Convenience name for target. -all_qmltyperegistrations: CMakeFiles/all_qmltyperegistrations.dir/rule -.PHONY : all_qmltyperegistrations - -# clean rule for target. -CMakeFiles/all_qmltyperegistrations.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/clean -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint: CMakeFiles/Bolt_DashApp_qmllint.dir/rule -.PHONY : Bolt_DashApp_qmllint - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_json.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_json" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint_json: CMakeFiles/Bolt_DashApp_qmllint_json.dir/rule -.PHONY : Bolt_DashApp_qmllint_json - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmllint_module.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_qmllint_module" -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmllint_module: CMakeFiles/Bolt_DashApp_qmllint_module.dir/rule -.PHONY : Bolt_DashApp_qmllint_module - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/all_qmllint.dir - -# All Build rule for target. -CMakeFiles/all_qmllint.dir/all: CMakeFiles/Bolt_DashApp_qmllint.dir/all -CMakeFiles/all_qmllint.dir/all: content/CMakeFiles/content_qmllint.dir/all -CMakeFiles/all_qmllint.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all -CMakeFiles/all_qmllint.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint" -.PHONY : CMakeFiles/all_qmllint.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/all_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/all_qmllint.dir/rule - -# Convenience name for target. -all_qmllint: CMakeFiles/all_qmllint.dir/rule -.PHONY : all_qmllint - -# clean rule for target. -CMakeFiles/all_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/clean -.PHONY : CMakeFiles/all_qmllint.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/all_qmllint_json.dir - -# All Build rule for target. -CMakeFiles/all_qmllint_json.dir/all: CMakeFiles/Bolt_DashApp_qmllint_json.dir/all -CMakeFiles/all_qmllint_json.dir/all: content/CMakeFiles/content_qmllint_json.dir/all -CMakeFiles/all_qmllint_json.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all -CMakeFiles/all_qmllint_json.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_json" -.PHONY : CMakeFiles/all_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/all_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/all_qmllint_json.dir/rule - -# Convenience name for target. -all_qmllint_json: CMakeFiles/all_qmllint_json.dir/rule -.PHONY : all_qmllint_json - -# clean rule for target. -CMakeFiles/all_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/clean -.PHONY : CMakeFiles/all_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/all_qmllint_module.dir - -# All Build rule for target. -CMakeFiles/all_qmllint_module.dir/all: CMakeFiles/Bolt_DashApp_qmllint_module.dir/all -CMakeFiles/all_qmllint_module.dir/all: content/CMakeFiles/content_qmllint_module.dir/all -CMakeFiles/all_qmllint_module.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all -CMakeFiles/all_qmllint_module.dir/all: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target all_qmllint_module" -.PHONY : CMakeFiles/all_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/all_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/all_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/all_qmllint_module.dir/rule - -# Convenience name for target. -all_qmllint_module: CMakeFiles/all_qmllint_module.dir/rule -.PHONY : all_qmllint_module - -# clean rule for target. -CMakeFiles/all_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/clean -.PHONY : CMakeFiles/all_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_tooling.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_tooling" -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/rule - -# Convenience name for target. -Bolt_DashApp_tooling: CMakeFiles/Bolt_DashApp_tooling.dir/rule -.PHONY : Bolt_DashApp_tooling - -# clean rule for target. -CMakeFiles/Bolt_DashApp_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_tooling.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_qmlimportscan.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=14 "Built target Bolt_DashApp_qmlimportscan" -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule - -# Convenience name for target. -Bolt_DashApp_qmlimportscan: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/rule -.PHONY : Bolt_DashApp_qmlimportscan - -# clean rule for target. -CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_qmlimportscan.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: CMakeFiles/Bolt_DashApp_tooling.dir/all -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: CMakeFiles/Bolt_DashApp_qmlimportscan.dir/all -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen_timestamp_deps" -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_DashApp_autogen_timestamp_deps: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_DashApp_autogen_timestamp_deps - -# clean rule for target. -CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/Bolt_DashApp_autogen.dir - -# All Build rule for target. -CMakeFiles/Bolt_DashApp_autogen.dir/all: CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_DashApp_autogen" -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/Bolt_DashApp_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 26 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Bolt_DashApp_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/rule - -# Convenience name for target. -Bolt_DashApp_autogen: CMakeFiles/Bolt_DashApp_autogen.dir/rule -.PHONY : Bolt_DashApp_autogen - -# clean rule for target. -CMakeFiles/Bolt_DashApp_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/clean -.PHONY : CMakeFiles/Bolt_DashApp_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content.dir - -# All Build rule for target. -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_autogen.dir/all -content/CMakeFiles/content.dir/all: content/CMakeFiles/content_tooling.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Built target content" -.PHONY : content/CMakeFiles/content.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 51 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content.dir/rule - -# Convenience name for target. -content: content/CMakeFiles/content.dir/rule -.PHONY : content - -# clean rule for target. -content/CMakeFiles/content.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/clean -.PHONY : content/CMakeFiles/content.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmltyperegistration.dir - -# All Build rule for target. -content/CMakeFiles/content_qmltyperegistration.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=74,75,76 "Built target content_qmltyperegistration" -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 22 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule - -# Convenience name for target. -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content_qmltyperegistration - -# clean rule for target. -content/CMakeFiles/content_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/clean -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_resources_1.dir - -# All Build rule for target. -content/CMakeFiles/content_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=77 "Built target content_resources_1" -.PHONY : content/CMakeFiles/content_resources_1.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_resources_1.dir/rule - -# Convenience name for target. -content_resources_1: content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content_resources_1 - -# clean rule for target. -content/CMakeFiles/content_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/clean -.PHONY : content/CMakeFiles/content_resources_1.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_1.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/content_resources_2.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all -content/CMakeFiles/contentplugin.dir/all: content/CMakeFiles/contentplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=97 "Built target contentplugin" -.PHONY : content/CMakeFiles/contentplugin.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 54 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin.dir/rule - -# Convenience name for target. -contentplugin: content/CMakeFiles/contentplugin.dir/rule -.PHONY : contentplugin - -# clean rule for target. -content/CMakeFiles/contentplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/clean -.PHONY : content/CMakeFiles/contentplugin.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint" -.PHONY : content/CMakeFiles/content_qmllint.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint.dir/rule - -# Convenience name for target. -content_qmllint: content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content_qmllint - -# clean rule for target. -content/CMakeFiles/content_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/clean -.PHONY : content/CMakeFiles/content_qmllint.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint_json.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_json" -.PHONY : content/CMakeFiles/content_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule - -# Convenience name for target. -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content_qmllint_json - -# clean rule for target. -content/CMakeFiles/content_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/clean -.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_qmllint_module.dir - -# All Build rule for target. -content/CMakeFiles/content_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_qmllint_module" -.PHONY : content/CMakeFiles/content_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule - -# Convenience name for target. -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content_qmllint_module - -# clean rule for target. -content/CMakeFiles/content_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/clean -.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_tooling.dir - -# All Build rule for target. -content/CMakeFiles/content_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96 "Built target content_tooling" -.PHONY : content/CMakeFiles/content_tooling.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_tooling.dir/rule - -# Convenience name for target. -content_tooling: content/CMakeFiles/content_tooling.dir/rule -.PHONY : content_tooling - -# clean rule for target. -content/CMakeFiles/content_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/clean -.PHONY : content/CMakeFiles/content_tooling.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_resources_2.dir - -# All Build rule for target. -content/CMakeFiles/content_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_resources_2" -.PHONY : content/CMakeFiles/content_resources_2.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_resources_2.dir/rule - -# Convenience name for target. -content_resources_2: content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content_resources_2 - -# clean rule for target. -content/CMakeFiles/content_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/clean -.PHONY : content/CMakeFiles/content_resources_2.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_init.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all -content/CMakeFiles/contentplugin_init.dir/all: content/CMakeFiles/contentplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=99 "Built target contentplugin_init" -.PHONY : content/CMakeFiles/contentplugin_init.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_init.dir/rule - -# Convenience name for target. -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : contentplugin_init - -# clean rule for target. -content/CMakeFiles/contentplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/clean -.PHONY : content/CMakeFiles/contentplugin_init.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_autogen_timestamp_deps.dir - -# All Build rule for target. -content/CMakeFiles/content_autogen_timestamp_deps.dir/all: content/CMakeFiles/content_tooling.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen_timestamp_deps" -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/rule -.PHONY : content_autogen_timestamp_deps - -# clean rule for target. -content/CMakeFiles/content_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/clean -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/content_autogen.dir - -# All Build rule for target. -content/CMakeFiles/content_autogen.dir/all: content/CMakeFiles/content_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target content_autogen" -.PHONY : content/CMakeFiles/content_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/content_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 19 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/content_autogen.dir/rule - -# Convenience name for target. -content_autogen: content/CMakeFiles/content_autogen.dir/rule -.PHONY : content_autogen - -# clean rule for target. -content/CMakeFiles/content_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/clean -.PHONY : content/CMakeFiles/content_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_autogen_timestamp_deps" -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule -.PHONY : contentplugin_autogen_timestamp_deps - -# clean rule for target. -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_autogen.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_autogen.dir/all: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=98 "Built target contentplugin_autogen" -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule - -# Convenience name for target. -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : contentplugin_autogen - -# clean rule for target. -content/CMakeFiles/contentplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/clean -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target contentplugin_init_autogen_timestamp_deps" -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : contentplugin_init_autogen_timestamp_deps - -# clean rule for target. -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target content/CMakeFiles/contentplugin_init_autogen.dir - -# All Build rule for target. -content/CMakeFiles/contentplugin_init_autogen.dir/all: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=100 "Built target contentplugin_init_autogen" -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -content/CMakeFiles/contentplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule - -# Convenience name for target. -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : contentplugin_init_autogen - -# clean rule for target. -content/CMakeFiles/contentplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/clean -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12 "Built target Bolt_Dash" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 15 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule - -# Convenience name for target. -Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : Bolt_Dash - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=19,20,21 "Built target Bolt_Dash_qmltyperegistration" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 5 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : Bolt_Dash_qmltyperegistration - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_resources_1" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : Bolt_Dash_resources_1 - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=25,26 "Built target Bolt_Dashplugin" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 18 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule - -# Convenience name for target. -Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : Bolt_Dashplugin - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : Bolt_Dash_qmllint - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_json" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : Bolt_Dash_qmllint_json - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_qmllint_module" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : Bolt_Dash_qmllint_module - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=23,24 "Built target Bolt_Dash_tooling" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule - -# Convenience name for target. -Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/rule -.PHONY : Bolt_Dash_tooling - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=22 "Built target Bolt_Dash_resources_2" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : Bolt_Dash_resources_2 - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=27,28 "Built target Bolt_Dashplugin_init" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : Bolt_Dashplugin_init - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dash_autogen_timestamp_deps" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dash_autogen_timestamp_deps - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=18 "Built target Bolt_Dash_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : Bolt_Dash_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen_timestamp_deps" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : Bolt_Dashplugin_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen_timestamp_deps" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir - -# All Build rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target Bolt_Dashplugin_init_autogen" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen - -# clean rule for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IO.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IO.dir/all: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all -imports/IO/CMakeFiles/IO.dir/all: imports/IO/CMakeFiles/IO_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=29 "Built target IO" -.PHONY : imports/IO/CMakeFiles/IO.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IO.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IO.dir/rule - -# Convenience name for target. -IO: imports/IO/CMakeFiles/IO.dir/rule -.PHONY : IO - -# clean rule for target. -imports/IO/CMakeFiles/IO.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/clean -.PHONY : imports/IO/CMakeFiles/IO.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all -imports/IO/CMakeFiles/IOPlugin.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=30,31,32,33,34,35 "Built target IOPlugin" -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 7 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/rule - -# Convenience name for target. -IOPlugin: imports/IO/CMakeFiles/IOPlugin.dir/rule -.PHONY : IOPlugin - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=37,38 "Built target IOPlugin_qmltyperegistration" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule - -# Convenience name for target. -IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule -.PHONY : IOPlugin_qmltyperegistration - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPluginplugin.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPlugin.dir/all -imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all -imports/IO/CMakeFiles/IOPluginplugin.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=39,40 "Built target IOPluginplugin" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPluginplugin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/rule - -# Convenience name for target. -IOPluginplugin: imports/IO/CMakeFiles/IOPluginplugin.dir/rule -.PHONY : IOPluginplugin - -# clean rule for target. -imports/IO/CMakeFiles/IOPluginplugin.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/qt_internal_plugins.dir - -# All Build rule for target. -imports/IO/CMakeFiles/qt_internal_plugins.dir/all: imports/IO/CMakeFiles/IOPluginplugin.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target qt_internal_plugins" -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/qt_internal_plugins.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 10 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/qt_internal_plugins.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/rule - -# Convenience name for target. -qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : qt_internal_plugins - -# clean rule for target. -imports/IO/CMakeFiles/qt_internal_plugins.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/clean -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule - -# Convenience name for target. -IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule -.PHONY : IOPlugin_qmllint - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint_json" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule - -# Convenience name for target. -IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule -.PHONY : IOPlugin_qmllint_json - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all: CMakeFiles/all_qmltyperegistrations.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_qmllint_module" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 56 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule - -# Convenience name for target. -IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule -.PHONY : IOPlugin_qmllint_module - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IO_autogen_timestamp_deps" -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule -.PHONY : IO_autogen_timestamp_deps - -# clean rule for target. -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IO_autogen.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IO_autogen.dir/all: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IO_autogen" -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IO_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/rule - -# Convenience name for target. -IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/rule -.PHONY : IO_autogen - -# clean rule for target. -imports/IO/CMakeFiles/IO_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/clean -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPlugin_autogen_timestamp_deps" -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule -.PHONY : IOPlugin_autogen_timestamp_deps - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPlugin_autogen.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPlugin_autogen.dir/all: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=36 "Built target IOPlugin_autogen" -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule - -# Convenience name for target. -IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule -.PHONY : IOPlugin_autogen - -# clean rule for target. -imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num= "Built target IOPluginplugin_autogen_timestamp_deps" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule -.PHONY : IOPluginplugin_autogen_timestamp_deps - -# clean rule for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean - -#============================================================================= -# Target rules for target imports/IO/CMakeFiles/IOPluginplugin_autogen.dir - -# All Build rule for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/all - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=41 "Built target IOPluginplugin_autogen" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all - -# Build rule for subdir invocation for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule - -# Convenience name for target. -IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule -.PHONY : IOPluginplugin_autogen - -# clean rule for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 8c94936..0000000 --- a/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,89 +0,0 @@ -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmltyperegistrations.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_qmlimportscan.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/Bolt_DashApp_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/qt_internal_plugins.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/edit_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/rebuild_cache.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/list_install_components.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install/local.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/install/strip.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir diff --git a/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint.dir/build.make b/build/CMakeFiles/all_qmllint.dir/build.make deleted file mode 100644 index 1d859c8..0000000 --- a/build/CMakeFiles/all_qmllint.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint. - -# Include any custom commands dependencies for this target. -include CMakeFiles/all_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/all_qmllint.dir/progress.make - -all_qmllint: CMakeFiles/all_qmllint.dir/build.make -.PHONY : all_qmllint - -# Rule to build all files generated by this target. -CMakeFiles/all_qmllint.dir/build: all_qmllint -.PHONY : CMakeFiles/all_qmllint.dir/build - -CMakeFiles/all_qmllint.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint.dir/cmake_clean.cmake -.PHONY : CMakeFiles/all_qmllint.dir/clean - -CMakeFiles/all_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/all_qmllint.dir/depend - diff --git a/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index f57148b..0000000 --- a/build/CMakeFiles/all_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/all_qmllint.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint.dir/compiler_depend.make deleted file mode 100644 index 4237b7f..0000000 --- a/build/CMakeFiles/all_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts deleted file mode 100644 index bbf6441..0000000 --- a/build/CMakeFiles/all_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint. diff --git a/build/CMakeFiles/all_qmllint.dir/progress.make b/build/CMakeFiles/all_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/all_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint_json.dir/build.make b/build/CMakeFiles/all_qmllint_json.dir/build.make deleted file mode 100644 index 783a83c..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint_json. - -# Include any custom commands dependencies for this target. -include CMakeFiles/all_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/all_qmllint_json.dir/progress.make - -all_qmllint_json: CMakeFiles/all_qmllint_json.dir/build.make -.PHONY : all_qmllint_json - -# Rule to build all files generated by this target. -CMakeFiles/all_qmllint_json.dir/build: all_qmllint_json -.PHONY : CMakeFiles/all_qmllint_json.dir/build - -CMakeFiles/all_qmllint_json.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake -.PHONY : CMakeFiles/all_qmllint_json.dir/clean - -CMakeFiles/all_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/all_qmllint_json.dir/depend - diff --git a/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 8cb0a83..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 3dec026..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index d95f9ec..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint_json. diff --git a/build/CMakeFiles/all_qmllint_json.dir/progress.make b/build/CMakeFiles/all_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/all_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake b/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmllint_module.dir/build.make b/build/CMakeFiles/all_qmllint_module.dir/build.make deleted file mode 100644 index 830a063..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmllint_module. - -# Include any custom commands dependencies for this target. -include CMakeFiles/all_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/all_qmllint_module.dir/progress.make - -all_qmllint_module: CMakeFiles/all_qmllint_module.dir/build.make -.PHONY : all_qmllint_module - -# Rule to build all files generated by this target. -CMakeFiles/all_qmllint_module.dir/build: all_qmllint_module -.PHONY : CMakeFiles/all_qmllint_module.dir/build - -CMakeFiles/all_qmllint_module.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake -.PHONY : CMakeFiles/all_qmllint_module.dir/clean - -CMakeFiles/all_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/all_qmllint_module.dir/depend - diff --git a/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index b170335..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 5e6138d..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts b/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index 17f8c78..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmllint_module. diff --git a/build/CMakeFiles/all_qmllint_module.dir/progress.make b/build/CMakeFiles/all_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/all_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake b/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/build.make b/build/CMakeFiles/all_qmltyperegistrations.dir/build.make deleted file mode 100644 index f9234ca..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for all_qmltyperegistrations. - -# Include any custom commands dependencies for this target. -include CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/all_qmltyperegistrations.dir/progress.make - -all_qmltyperegistrations: CMakeFiles/all_qmltyperegistrations.dir/build.make -.PHONY : all_qmltyperegistrations - -# Rule to build all files generated by this target. -CMakeFiles/all_qmltyperegistrations.dir/build: all_qmltyperegistrations -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/build - -CMakeFiles/all_qmltyperegistrations.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/clean - -CMakeFiles/all_qmltyperegistrations.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles/all_qmltyperegistrations.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/all_qmltyperegistrations.dir/depend - diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake b/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake deleted file mode 100644 index 83cfb80..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/all_qmltyperegistrations.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make deleted file mode 100644 index 529926e..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for all_qmltyperegistrations. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts b/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts deleted file mode 100644 index 02603d9..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for all_qmltyperegistrations. diff --git a/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make b/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/CMakeFiles/all_qmltyperegistrations.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks deleted file mode 100644 index 8643cf6..0000000 --- a/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -89 diff --git a/build/Main/Bolt_DashApp_qml_module_dir_map.qrc b/build/Main/Bolt_DashApp_qml_module_dir_map.qrc deleted file mode 100644 index 3542844..0000000 --- a/build/Main/Bolt_DashApp_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/Main - - - diff --git a/build/Main/main.qml b/build/Main/main.qml deleted file mode 100644 index 14ce61a..0000000 --- a/build/Main/main.qml +++ /dev/null @@ -1,9 +0,0 @@ -/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based -C++ project. */ - -import QtQuick -import content - -App { - visibility: "FullScreen" -} diff --git a/build/Main/qmldir b/build/Main/qmldir deleted file mode 100644 index ecfe06b..0000000 --- a/build/Main/qmldir +++ /dev/null @@ -1,4 +0,0 @@ -module Main -typeinfo Bolt_DashApp.qmltypes -prefer :/Main/ - diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index e1d085f..0000000 --- a/build/Makefile +++ /dev/null @@ -1,1042 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named Bolt_DashApp - -# Build rule for target. -Bolt_DashApp: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp -.PHONY : Bolt_DashApp - -# fast build rule for target. -Bolt_DashApp/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/build -.PHONY : Bolt_DashApp/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmltyperegistration - -# Build rule for target. -Bolt_DashApp_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmltyperegistration -.PHONY : Bolt_DashApp_qmltyperegistration - -# fast build rule for target. -Bolt_DashApp_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build.make CMakeFiles/Bolt_DashApp_qmltyperegistration.dir/build -.PHONY : Bolt_DashApp_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named all_qmltyperegistrations - -# Build rule for target. -all_qmltyperegistrations: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmltyperegistrations -.PHONY : all_qmltyperegistrations - -# fast build rule for target. -all_qmltyperegistrations/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmltyperegistrations.dir/build.make CMakeFiles/all_qmltyperegistrations.dir/build -.PHONY : all_qmltyperegistrations/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint - -# Build rule for target. -Bolt_DashApp_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint -.PHONY : Bolt_DashApp_qmllint - -# fast build rule for target. -Bolt_DashApp_qmllint/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint.dir/build.make CMakeFiles/Bolt_DashApp_qmllint.dir/build -.PHONY : Bolt_DashApp_qmllint/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint_json - -# Build rule for target. -Bolt_DashApp_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_json -.PHONY : Bolt_DashApp_qmllint_json - -# fast build rule for target. -Bolt_DashApp_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_json.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_json.dir/build -.PHONY : Bolt_DashApp_qmllint_json/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmllint_module - -# Build rule for target. -Bolt_DashApp_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmllint_module -.PHONY : Bolt_DashApp_qmllint_module - -# fast build rule for target. -Bolt_DashApp_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmllint_module.dir/build.make CMakeFiles/Bolt_DashApp_qmllint_module.dir/build -.PHONY : Bolt_DashApp_qmllint_module/fast - -#============================================================================= -# Target rules for targets named all_qmllint - -# Build rule for target. -all_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint -.PHONY : all_qmllint - -# fast build rule for target. -all_qmllint/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint.dir/build.make CMakeFiles/all_qmllint.dir/build -.PHONY : all_qmllint/fast - -#============================================================================= -# Target rules for targets named all_qmllint_json - -# Build rule for target. -all_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_json -.PHONY : all_qmllint_json - -# fast build rule for target. -all_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_json.dir/build.make CMakeFiles/all_qmllint_json.dir/build -.PHONY : all_qmllint_json/fast - -#============================================================================= -# Target rules for targets named all_qmllint_module - -# Build rule for target. -all_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all_qmllint_module -.PHONY : all_qmllint_module - -# fast build rule for target. -all_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/all_qmllint_module.dir/build.make CMakeFiles/all_qmllint_module.dir/build -.PHONY : all_qmllint_module/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_tooling - -# Build rule for target. -Bolt_DashApp_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_tooling -.PHONY : Bolt_DashApp_tooling - -# fast build rule for target. -Bolt_DashApp_tooling/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_tooling.dir/build.make CMakeFiles/Bolt_DashApp_tooling.dir/build -.PHONY : Bolt_DashApp_tooling/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_qmlimportscan - -# Build rule for target. -Bolt_DashApp_qmlimportscan: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_qmlimportscan -.PHONY : Bolt_DashApp_qmlimportscan - -# fast build rule for target. -Bolt_DashApp_qmlimportscan/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build.make CMakeFiles/Bolt_DashApp_qmlimportscan.dir/build -.PHONY : Bolt_DashApp_qmlimportscan/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_autogen_timestamp_deps - -# Build rule for target. -Bolt_DashApp_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen_timestamp_deps -.PHONY : Bolt_DashApp_autogen_timestamp_deps - -# fast build rule for target. -Bolt_DashApp_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build.make CMakeFiles/Bolt_DashApp_autogen_timestamp_deps.dir/build -.PHONY : Bolt_DashApp_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named Bolt_DashApp_autogen - -# Build rule for target. -Bolt_DashApp_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_DashApp_autogen -.PHONY : Bolt_DashApp_autogen - -# fast build rule for target. -Bolt_DashApp_autogen/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp_autogen.dir/build.make CMakeFiles/Bolt_DashApp_autogen.dir/build -.PHONY : Bolt_DashApp_autogen/fast - -#============================================================================= -# Target rules for targets named content - -# Build rule for target. -content: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content -.PHONY : content - -# fast build rule for target. -content/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build -.PHONY : content/fast - -#============================================================================= -# Target rules for targets named content_qmltyperegistration - -# Build rule for target. -content_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmltyperegistration -.PHONY : content_qmltyperegistration - -# fast build rule for target. -content_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build -.PHONY : content_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named content_resources_1 - -# Build rule for target. -content_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_1 -.PHONY : content_resources_1 - -# fast build rule for target. -content_resources_1/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build -.PHONY : content_resources_1/fast - -#============================================================================= -# Target rules for targets named contentplugin - -# Build rule for target. -contentplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin -.PHONY : contentplugin - -# fast build rule for target. -contentplugin/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build -.PHONY : contentplugin/fast - -#============================================================================= -# Target rules for targets named content_qmllint - -# Build rule for target. -content_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint -.PHONY : content_qmllint - -# fast build rule for target. -content_qmllint/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build -.PHONY : content_qmllint/fast - -#============================================================================= -# Target rules for targets named content_qmllint_json - -# Build rule for target. -content_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_json -.PHONY : content_qmllint_json - -# fast build rule for target. -content_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build -.PHONY : content_qmllint_json/fast - -#============================================================================= -# Target rules for targets named content_qmllint_module - -# Build rule for target. -content_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_qmllint_module -.PHONY : content_qmllint_module - -# fast build rule for target. -content_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build -.PHONY : content_qmllint_module/fast - -#============================================================================= -# Target rules for targets named content_tooling - -# Build rule for target. -content_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_tooling -.PHONY : content_tooling - -# fast build rule for target. -content_tooling/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_tooling.dir/build.make content/CMakeFiles/content_tooling.dir/build -.PHONY : content_tooling/fast - -#============================================================================= -# Target rules for targets named content_resources_2 - -# Build rule for target. -content_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_resources_2 -.PHONY : content_resources_2 - -# fast build rule for target. -content_resources_2/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build -.PHONY : content_resources_2/fast - -#============================================================================= -# Target rules for targets named contentplugin_init - -# Build rule for target. -contentplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init -.PHONY : contentplugin_init - -# fast build rule for target. -contentplugin_init/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build -.PHONY : contentplugin_init/fast - -#============================================================================= -# Target rules for targets named content_autogen_timestamp_deps - -# Build rule for target. -content_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen_timestamp_deps -.PHONY : content_autogen_timestamp_deps - -# fast build rule for target. -content_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build -.PHONY : content_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named content_autogen - -# Build rule for target. -content_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content_autogen -.PHONY : content_autogen - -# fast build rule for target. -content_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build -.PHONY : content_autogen/fast - -#============================================================================= -# Target rules for targets named contentplugin_autogen_timestamp_deps - -# Build rule for target. -contentplugin_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen_timestamp_deps -.PHONY : contentplugin_autogen_timestamp_deps - -# fast build rule for target. -contentplugin_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build -.PHONY : contentplugin_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named contentplugin_autogen - -# Build rule for target. -contentplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_autogen -.PHONY : contentplugin_autogen - -# fast build rule for target. -contentplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build -.PHONY : contentplugin_autogen/fast - -#============================================================================= -# Target rules for targets named contentplugin_init_autogen_timestamp_deps - -# Build rule for target. -contentplugin_init_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen_timestamp_deps -.PHONY : contentplugin_init_autogen_timestamp_deps - -# fast build rule for target. -contentplugin_init_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build -.PHONY : contentplugin_init_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named contentplugin_init_autogen - -# Build rule for target. -contentplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 contentplugin_init_autogen -.PHONY : contentplugin_init_autogen - -# fast build rule for target. -contentplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build -.PHONY : contentplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash - -# Build rule for target. -Bolt_Dash: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash -.PHONY : Bolt_Dash - -# fast build rule for target. -Bolt_Dash/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build -.PHONY : Bolt_Dash/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmltyperegistration - -# Build rule for target. -Bolt_Dash_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmltyperegistration -.PHONY : Bolt_Dash_qmltyperegistration - -# fast build rule for target. -Bolt_Dash_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build -.PHONY : Bolt_Dash_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_resources_1 - -# Build rule for target. -Bolt_Dash_resources_1: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_1 -.PHONY : Bolt_Dash_resources_1 - -# fast build rule for target. -Bolt_Dash_resources_1/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build -.PHONY : Bolt_Dash_resources_1/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin - -# Build rule for target. -Bolt_Dashplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin -.PHONY : Bolt_Dashplugin - -# fast build rule for target. -Bolt_Dashplugin/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build -.PHONY : Bolt_Dashplugin/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint - -# Build rule for target. -Bolt_Dash_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint -.PHONY : Bolt_Dash_qmllint - -# fast build rule for target. -Bolt_Dash_qmllint/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build -.PHONY : Bolt_Dash_qmllint/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint_json - -# Build rule for target. -Bolt_Dash_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_json -.PHONY : Bolt_Dash_qmllint_json - -# fast build rule for target. -Bolt_Dash_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build -.PHONY : Bolt_Dash_qmllint_json/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_qmllint_module - -# Build rule for target. -Bolt_Dash_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_qmllint_module -.PHONY : Bolt_Dash_qmllint_module - -# fast build rule for target. -Bolt_Dash_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build -.PHONY : Bolt_Dash_qmllint_module/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_tooling - -# Build rule for target. -Bolt_Dash_tooling: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_tooling -.PHONY : Bolt_Dash_tooling - -# fast build rule for target. -Bolt_Dash_tooling/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build -.PHONY : Bolt_Dash_tooling/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_resources_2 - -# Build rule for target. -Bolt_Dash_resources_2: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_resources_2 -.PHONY : Bolt_Dash_resources_2 - -# fast build rule for target. -Bolt_Dash_resources_2/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build -.PHONY : Bolt_Dash_resources_2/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_init - -# Build rule for target. -Bolt_Dashplugin_init: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init -.PHONY : Bolt_Dashplugin_init - -# fast build rule for target. -Bolt_Dashplugin_init/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build -.PHONY : Bolt_Dashplugin_init/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_autogen_timestamp_deps - -# Build rule for target. -Bolt_Dash_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen_timestamp_deps -.PHONY : Bolt_Dash_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dash_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dash_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named Bolt_Dash_autogen - -# Build rule for target. -Bolt_Dash_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dash_autogen -.PHONY : Bolt_Dash_autogen - -# fast build rule for target. -Bolt_Dash_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build -.PHONY : Bolt_Dash_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_autogen_timestamp_deps - -# Build rule for target. -Bolt_Dashplugin_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen_timestamp_deps -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dashplugin_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_autogen - -# Build rule for target. -Bolt_Dashplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_autogen -.PHONY : Bolt_Dashplugin_autogen - -# fast build rule for target. -Bolt_Dashplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build -.PHONY : Bolt_Dashplugin_autogen/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_init_autogen_timestamp_deps - -# Build rule for target. -Bolt_Dashplugin_init_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen_timestamp_deps -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dashplugin_init_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named Bolt_Dashplugin_init_autogen - -# Build rule for target. -Bolt_Dashplugin_init_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Bolt_Dashplugin_init_autogen -.PHONY : Bolt_Dashplugin_init_autogen - -# fast build rule for target. -Bolt_Dashplugin_init_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build -.PHONY : Bolt_Dashplugin_init_autogen/fast - -#============================================================================= -# Target rules for targets named IO - -# Build rule for target. -IO: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO -.PHONY : IO - -# fast build rule for target. -IO/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build -.PHONY : IO/fast - -#============================================================================= -# Target rules for targets named IOPlugin - -# Build rule for target. -IOPlugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin -.PHONY : IOPlugin - -# fast build rule for target. -IOPlugin/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build -.PHONY : IOPlugin/fast - -#============================================================================= -# Target rules for targets named IOPlugin_qmltyperegistration - -# Build rule for target. -IOPlugin_qmltyperegistration: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmltyperegistration -.PHONY : IOPlugin_qmltyperegistration - -# fast build rule for target. -IOPlugin_qmltyperegistration/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build -.PHONY : IOPlugin_qmltyperegistration/fast - -#============================================================================= -# Target rules for targets named IOPluginplugin - -# Build rule for target. -IOPluginplugin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin -.PHONY : IOPluginplugin - -# fast build rule for target. -IOPluginplugin/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build -.PHONY : IOPluginplugin/fast - -#============================================================================= -# Target rules for targets named qt_internal_plugins - -# Build rule for target. -qt_internal_plugins: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qt_internal_plugins -.PHONY : qt_internal_plugins - -# fast build rule for target. -qt_internal_plugins/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build -.PHONY : qt_internal_plugins/fast - -#============================================================================= -# Target rules for targets named IOPlugin_qmllint - -# Build rule for target. -IOPlugin_qmllint: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint -.PHONY : IOPlugin_qmllint - -# fast build rule for target. -IOPlugin_qmllint/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build -.PHONY : IOPlugin_qmllint/fast - -#============================================================================= -# Target rules for targets named IOPlugin_qmllint_json - -# Build rule for target. -IOPlugin_qmllint_json: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint_json -.PHONY : IOPlugin_qmllint_json - -# fast build rule for target. -IOPlugin_qmllint_json/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build -.PHONY : IOPlugin_qmllint_json/fast - -#============================================================================= -# Target rules for targets named IOPlugin_qmllint_module - -# Build rule for target. -IOPlugin_qmllint_module: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_qmllint_module -.PHONY : IOPlugin_qmllint_module - -# fast build rule for target. -IOPlugin_qmllint_module/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build -.PHONY : IOPlugin_qmllint_module/fast - -#============================================================================= -# Target rules for targets named IO_autogen_timestamp_deps - -# Build rule for target. -IO_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO_autogen_timestamp_deps -.PHONY : IO_autogen_timestamp_deps - -# fast build rule for target. -IO_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build -.PHONY : IO_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named IO_autogen - -# Build rule for target. -IO_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IO_autogen -.PHONY : IO_autogen - -# fast build rule for target. -IO_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build -.PHONY : IO_autogen/fast - -#============================================================================= -# Target rules for targets named IOPlugin_autogen_timestamp_deps - -# Build rule for target. -IOPlugin_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_autogen_timestamp_deps -.PHONY : IOPlugin_autogen_timestamp_deps - -# fast build rule for target. -IOPlugin_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build -.PHONY : IOPlugin_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named IOPlugin_autogen - -# Build rule for target. -IOPlugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPlugin_autogen -.PHONY : IOPlugin_autogen - -# fast build rule for target. -IOPlugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build -.PHONY : IOPlugin_autogen/fast - -#============================================================================= -# Target rules for targets named IOPluginplugin_autogen_timestamp_deps - -# Build rule for target. -IOPluginplugin_autogen_timestamp_deps: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin_autogen_timestamp_deps -.PHONY : IOPluginplugin_autogen_timestamp_deps - -# fast build rule for target. -IOPluginplugin_autogen_timestamp_deps/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build -.PHONY : IOPluginplugin_autogen_timestamp_deps/fast - -#============================================================================= -# Target rules for targets named IOPluginplugin_autogen - -# Build rule for target. -IOPluginplugin_autogen: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 IOPluginplugin_autogen -.PHONY : IOPluginplugin_autogen - -# fast build rule for target. -IOPluginplugin_autogen/fast: - $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build -.PHONY : IOPluginplugin_autogen/fast - -Bolt_DashApp_autogen/mocs_compilation.o: Bolt_DashApp_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_DashApp_autogen/mocs_compilation.o - -# target to build an object file -Bolt_DashApp_autogen/mocs_compilation.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.o - -Bolt_DashApp_autogen/mocs_compilation.i: Bolt_DashApp_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_DashApp_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_DashApp_autogen/mocs_compilation.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.i - -Bolt_DashApp_autogen/mocs_compilation.s: Bolt_DashApp_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_DashApp_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_DashApp_autogen/mocs_compilation.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Bolt_DashApp.dir/build.make CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_DashApp_autogen/mocs_compilation.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... Bolt_DashApp_autogen" - @echo "... Bolt_DashApp_autogen_timestamp_deps" - @echo "... Bolt_DashApp_qmlimportscan" - @echo "... Bolt_DashApp_qmllint" - @echo "... Bolt_DashApp_qmllint_json" - @echo "... Bolt_DashApp_qmllint_module" - @echo "... Bolt_DashApp_qmltyperegistration" - @echo "... Bolt_Dash_autogen" - @echo "... Bolt_Dash_autogen_timestamp_deps" - @echo "... Bolt_Dash_qmllint" - @echo "... Bolt_Dash_qmllint_json" - @echo "... Bolt_Dash_qmllint_module" - @echo "... Bolt_Dash_qmltyperegistration" - @echo "... Bolt_Dashplugin_autogen" - @echo "... Bolt_Dashplugin_autogen_timestamp_deps" - @echo "... Bolt_Dashplugin_init_autogen" - @echo "... Bolt_Dashplugin_init_autogen_timestamp_deps" - @echo "... IOPlugin_autogen" - @echo "... IOPlugin_autogen_timestamp_deps" - @echo "... IOPlugin_qmllint" - @echo "... IOPlugin_qmllint_json" - @echo "... IOPlugin_qmllint_module" - @echo "... IOPlugin_qmltyperegistration" - @echo "... IOPluginplugin_autogen" - @echo "... IOPluginplugin_autogen_timestamp_deps" - @echo "... IO_autogen" - @echo "... IO_autogen_timestamp_deps" - @echo "... all_qmllint" - @echo "... all_qmllint_json" - @echo "... all_qmllint_module" - @echo "... all_qmltyperegistrations" - @echo "... content_autogen" - @echo "... content_autogen_timestamp_deps" - @echo "... content_qmllint" - @echo "... content_qmllint_json" - @echo "... content_qmllint_module" - @echo "... content_qmltyperegistration" - @echo "... contentplugin_autogen" - @echo "... contentplugin_autogen_timestamp_deps" - @echo "... contentplugin_init_autogen" - @echo "... contentplugin_init_autogen_timestamp_deps" - @echo "... qt_internal_plugins" - @echo "... Bolt_Dash" - @echo "... Bolt_DashApp" - @echo "... Bolt_DashApp_tooling" - @echo "... Bolt_Dash_resources_1" - @echo "... Bolt_Dash_resources_2" - @echo "... Bolt_Dash_tooling" - @echo "... Bolt_Dashplugin" - @echo "... Bolt_Dashplugin_init" - @echo "... IO" - @echo "... IOPlugin" - @echo "... IOPluginplugin" - @echo "... content" - @echo "... content_resources_1" - @echo "... content_resources_2" - @echo "... content_tooling" - @echo "... contentplugin" - @echo "... contentplugin_init" - @echo "... Bolt_DashApp_autogen/mocs_compilation.o" - @echo "... Bolt_DashApp_autogen/mocs_compilation.i" - @echo "... Bolt_DashApp_autogen/mocs_compilation.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake deleted file mode 100644 index 91da968..0000000 --- a/build/cmake_install.cmake +++ /dev/null @@ -1,81 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/content/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - execute_process(COMMAND /Users/mason/anaconda3/bin/install_name_tool - -delete_rpath "/opt/homebrew/lib" - -delete_rpath "/Users/mason/Documents/Code/dash-cpp/build/imports/IO" - "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/strip" -u -r "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/Bolt_DashApp") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") - file(WRITE "/Users/mason/Documents/Code/dash-cpp/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/build/compile_commands.json b/build/compile_commands.json deleted file mode 100644 index 7a8f925..0000000 --- a/build/compile_commands.json +++ /dev/null @@ -1,332 +0,0 @@ -[ -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QUICK_LIB -I/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/src/includes/headers -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtGui.framework/Headers -isystem /opt/homebrew/lib/QtQuick.framework/Headers -isystem /opt/homebrew/lib/QtQmlModels.framework/Headers -isystem /opt/homebrew/lib/QtOpenGL.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/Bolt_DashApp_autogen/mocs_compilation.cpp", - "output": "CMakeFiles/Bolt_DashApp.dir/Bolt_DashApp_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "output": "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "output": "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "output": "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "output": "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "output": "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/content", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "output": "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "output": "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "output": "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp", - "output": "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "output": "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPlugin.dir/io.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", - "output": "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "output": "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", - "output": "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" -}, -{ - "directory": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "command": "/Library/Developer/CommandLineTools/usr/bin/c++ -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", - "file": "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", - "output": "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" -} -] \ No newline at end of file diff --git a/build/content/.rcc/content_raw_qml_0.qrc b/build/content/.rcc/content_raw_qml_0.qrc deleted file mode 100644 index 61ed5c8..0000000 --- a/build/content/.rcc/content_raw_qml_0.qrc +++ /dev/null @@ -1,37 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg - - - diff --git a/build/content/.rcc/qmake_content.qrc b/build/content/.rcc/qmake_content.qrc deleted file mode 100644 index 76ab287..0000000 --- a/build/content/.rcc/qmake_content.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/content/qmldir - - - diff --git a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp b/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp deleted file mode 100644 index dc9405e..0000000 --- a/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp +++ /dev/null @@ -1,25 +0,0 @@ ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -/content/App.qml -/content/Screen01.ui.qml -/content/Speedometer.qml -/content/BatterySlider.qml -/content/TempSlider.qml -/content/Debug1.qml -/content/BoltLeanAngle.qml -/content/BikeStatus.qml -/content/BatteryReadout.qml -/content/FullBatterySlider.qml -/content/TemperatureIsland.qml -/content/FullSlider.qml -/content/BMSFaultDetails.qml -/content/DebugItem1.ui.qml -/content/FaultMotorStatus.qml -/content/SpeedometerDecorations.qml -/content/DebugMain.qml -/content/DebugMotor.qml -/content/DebugOverview.qml -/content/DebugBMS.qml -/content/DebugPDU.qml diff --git a/build/content/.rcc/qmllint/content.rsp b/build/content/.rcc/qmllint/content.rsp deleted file mode 100644 index c9fd69f..0000000 --- a/build/content/.rcc/qmllint/content.rsp +++ /dev/null @@ -1,30 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml diff --git a/build/content/.rcc/qmllint/content_json.rsp b/build/content/.rcc/qmllint/content_json.rsp deleted file mode 100644 index 2dd1bda..0000000 --- a/build/content/.rcc/qmllint/content_json.rsp +++ /dev/null @@ -1,32 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/content_qmllint.json diff --git a/build/content/.rcc/qmllint/content_module.rsp b/build/content/.rcc/qmllint/content_module.rsp deleted file mode 100644 index 98780e9..0000000 --- a/build/content/.rcc/qmllint/content_module.rsp +++ /dev/null @@ -1,10 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc ---module -content diff --git a/build/content/.rcc/qrc_content_raw_qml_0_init.cpp b/build/content/.rcc/qrc_content_raw_qml_0_init.cpp deleted file mode 100644 index 1158b1d..0000000 --- a/build/content/.rcc/qrc_content_raw_qml_0_init.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: BSD-3-Clause - -// This file was generated by the qt_add_resources command. - -#include - -QT_DECLARE_EXTERN_RESOURCE(content_raw_qml_0) - -namespace { - struct resourceReferenceKeeper { - resourceReferenceKeeper() { QT_KEEP_RESOURCE(content_raw_qml_0); } - } resourceReferenceKeeperInstance; -} diff --git a/build/content/.rcc/qrc_qmake_content_init.cpp b/build/content/.rcc/qrc_qmake_content_init.cpp deleted file mode 100644 index 01316a4..0000000 --- a/build/content/.rcc/qrc_qmake_content_init.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: BSD-3-Clause - -// This file was generated by the qt_add_resources command. - -#include - -QT_DECLARE_EXTERN_RESOURCE(qmake_content) - -namespace { - struct resourceReferenceKeeper { - resourceReferenceKeeper() { QT_KEEP_RESOURCE(qmake_content); } - } resourceReferenceKeeperInstance; -} diff --git a/build/content/App.qml b/build/content/App.qml deleted file mode 100644 index 29035cc..0000000 --- a/build/content/App.qml +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (C) 2021 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import Bolt_Dash -import IO - -Window { - width: mainScreen.width - height: mainScreen.height - property bool debugMode: true - - - visible: true - title: "Bolt_Dash" - - Screen01 { - id: mainScreen - visible: !debugMode - } - - Debug1 { - id: debug - visible: debugMode - } - - IO { - id: io - - onButtonTapped: { - debugMode = !debugMode - } - } - - Rectangle { - visible: true - color: "transparent" - border.color: "red" - border.width: 1 - height: Constants.height - width: Constants.width - } -} - diff --git a/build/content/BMSFaultDetails.qml b/build/content/BMSFaultDetails.qml deleted file mode 100644 index 0a72595..0000000 --- a/build/content/BMSFaultDetails.qml +++ /dev/null @@ -1,93 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls -import QtQuick.Shapes - -Window{ - x: 0 - y: 0 - width: 400 - height: 400 - - Rectangle { - border.color: "black" - border.width: 2 - width: 350 - height: 300 - x: 20 - y: 5 - ScrollView { - x: 5 - y: 5 - width: parent.width - 10 - height: parent.height - 10 - ScrollBar.horizontal.policy: ScrollBar.AlwaysOff - ScrollBar.vertical.policy: ScrollBar.AlwaysOn - ScrollBar.horizontal.interactive: false - ScrollBar.vertical.interactive: true - Column { - Repeater { - model: getBMSWarnings() - Text { - required property string modelData - text: modelData - } - } - } - } - } - - Rectangle { - border.color: "black" - border.width: 2 - width: 350 - height: 85 - x: 20 - y: 310 - - Text { - x: 5 - y: 5 - width: parent.width - 10 - text: "Clear BMS Fault Codes?" - horizontalAlignment: Text.AlignHCenter - font.bold: true - font.italic: true - } - - Row { - x: 10 - y: 25 - width: parent.width - 20 - spacing: 10 - Button { - width: parent.width / 2 - 5 - text: "Yes" - - Rectangle { - width: parent.width - height: parent.height - color: "grey" - } - } - - Button { - width: parent.width / 2 - 5 - text: "No" - - Rectangle { - width: parent.width - height: parent.height - color: "grey" - } - } - } - } - - function getBMSWarnings() { - var myText = [] - for (var i = 0; i < backend.bmsErrorCodesString.length; i++) { - myText.push(backend.bmsErrorCodesString[i]) - } - return myText - } -} \ No newline at end of file diff --git a/build/content/BatteryReadout.qml b/build/content/BatteryReadout.qml deleted file mode 100644 index 13b8910..0000000 --- a/build/content/BatteryReadout.qml +++ /dev/null @@ -1,87 +0,0 @@ -import QtQuick -import QtQuick.Shapes - -Item { - readonly property int batteryBorder: 5 - readonly property string red: "#e80c0c" - readonly property string green: "#54c45e" - property int soc - property double voltage - - Rectangle { - radius: 15 - width: 175 - height: 125 - color: "black" - - Image { - x: 15 - y: 15 - id: batterySVG - source: "Pictures/battery.svg" - sourceSize.width: 150 - sourceSize.height: 75 - rotation: 270 - transformOrigin: Item.Center - - Rectangle { - x: batteryBorder - y: batteryBorder - color: "transparent" - width: parent.sourceSize.width - batteryBorder * 2 - 16 - height: parent.sourceSize.height - batteryBorder * 2 - - Rectangle { - radius: 8 - width: parent.width - height: parent.height - color: "black" - } - - Rectangle { - radius: 8 - width: soc/100 * parent.width - height: parent.height - color: soc < 20 ? red : green - } - } - } - - Text { - id: percentLabel - x: batterySVG.x + batterySVG.width - 37 - y: parent.height/2 - 2*height/3 - horizontalAlignment: Text.AlignHLeft - verticalAlignment: Text.AlignBottom - color: "white" - text: qsTr("%1\%").arg(soc) - font.pixelSize: 60 - } - - Shape { - ShapePath { - id: coolLine - strokeColor: "white" - strokeWidth: 4 - fillColor: "transparent" - // strokeStyle: ShapePath.DashLine - dashPattern: [ 1, 4 ] - startX: percentLabel.x - startY: percentLabel.y+percentLabel.height - 10 - PathLine { x: coolLine.startX + 140; y: coolLine.startY } - } - } - - // Voltage Text - Text { - id: voltageText - x: percentLabel.x + batteryBorder - y: batterySVG.y + batterySVG.height - height/2 + batteryBorder - text: qsTr("%1V").arg(voltage) - color: "white" - font.pixelSize: 20 - font.italic: true - } - } - -} diff --git a/build/content/BatterySlider.qml b/build/content/BatterySlider.qml deleted file mode 100644 index 458af7e..0000000 --- a/build/content/BatterySlider.qml +++ /dev/null @@ -1,41 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import Bolt_Dash - -Item { - width: 60 - height: 350 - readonly property string red: "#e80c0c" - readonly property string green: "#09bd0f" - property double fullness: 0.5; - - function integerToHex(num){ - let hexString = Math.floor(num).toString(16); - if (hexString.length === 1){ - hexString = "0" + hexString; - } - return hexString; - } - - Rectangle { - id: enclosing - radius: 15 - x: 0 - y: 0 - width: 60 - height: 350 - border.width: 3 - color: `#${integerToHex(254 - (fullness * 245))}${integerToHex(12+(fullness*177))}${integerToHex(13+(fullness*-2))}`; - } - - Rectangle { - id: level - radius: 15 - x: 0 - y: 0 - width: 60 - height: 350-(350*fullness) - color: "white" - border.width: 3 - } -} diff --git a/build/content/BikeStatus.qml b/build/content/BikeStatus.qml deleted file mode 100644 index 21a9d4d..0000000 --- a/build/content/BikeStatus.qml +++ /dev/null @@ -1,102 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Shapes -import QtQuick.Layouts - -Item { - readonly property color staticBG: "#5F5F5F" - readonly property string green: "#54c45e" - property list texts: ["STDBY", "ACC", "PREP", "IDLE", "DRIVE"] - property int status: BikeStatus.Status.STANDBY - - width: 800 - height: 40 - id: root - - enum Status { - STANDBY, - ACCESSORY, - CHECKING, - READY, - DRIVE, - FAULT - } - - Rectangle { - visible: false - id: rect - anchors.centerIn: parent - width: parent.width - height: parent.height - radius: 15 - color: { - switch(status) { - case BikeStatus.Status.STANDBY: - case BikeStatus.Status.ACCESSORY: - case BikeStatus.Status.CHECKING: - case BikeStatus.Status.READY: - return staticBG - case BikeStatus.Status.FAULT: - return "red" - case BikeStatus.Status.DRIVE: - return green - } - } - - Text { - anchors.centerIn: parent - text: { - switch (status) { - case BikeStatus.Status.STANDBY: - return "STANDBY" - case BikeStatus.Status.ACCESSORY: - return "ACC" - case BikeStatus.Status.CHECKING: - return "WAITING" - case BikeStatus.Status.FAULT: - return "FAULT" - case BikeStatus.Status.READY: - return "READY" - case BikeStatus.Status.DRIVE: - return "DRIVE" - } - } - color: "white" - font.bold: true - font.pixelSize: 0.75*parent.height - } - } - - Rectangle { - height: parent.height - width: parent.width - color: "white" - - GridLayout { - id: grid - columns: 5 - x: 0 - y: columnSpacing - height: parent.height - width: parent.width - columnSpacing: 2 - - Repeater { - model: 5 - Rectangle { - required property int index - color: root.status === index ? (root.status === BikeStatus.Status.DRIVE ? root.green : "white") : "black" - Layout.preferredWidth: parent.width / parent.columns - parent.columnSpacing - height: parent.height - Text { - anchors.centerIn: parent - text: root.texts[index] - color: root.status == index ? "black": "white" - font.bold: true - font.pixelSize: 25 - } - } - } - } - } -} diff --git a/build/content/BoltLeanAngle.qml b/build/content/BoltLeanAngle.qml deleted file mode 100644 index 99ba38e..0000000 --- a/build/content/BoltLeanAngle.qml +++ /dev/null @@ -1,30 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -// import QtQuick.Studio.Components -import QtCharts -import QtQuick.Shapes - -Item { - property int ang: 60 - width: 500 - height: 500 - Image { - id: image - x: -(295/2) - y: 20 - width: 295 - height: 164 - source: "Pictures/leanAngleBack.png" - fillMode: Image.PreserveAspectFit - } - - Rectangle { - id: correctDial - width: 5 - height: 150 - x: -width/2 - y: 60 - transformOrigin: Item.Bottom - rotation: ang - } -} diff --git a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake b/build/content/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 05e27f5..0000000 --- a/build/content/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/content/CMakeFiles/content.dir/DependInfo.cmake b/build/content/CMakeFiles/content.dir/DependInfo.cmake deleted file mode 100644 index d18f317..0000000 --- a/build/content/CMakeFiles/content.dir/DependInfo.cmake +++ /dev/null @@ -1,54 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp" "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp" "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" "gcc" "content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" "gcc" "content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content.dir/build.make b/build/content/CMakeFiles/content.dir/build.make deleted file mode 100644 index 5e19243..0000000 --- a/build/content/CMakeFiles/content.dir/build.make +++ /dev/null @@ -1,829 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content.dir/flags.make - -content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - -content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt -content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes - -content/content.qmltypes: content/content_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate content/content.qmltypes - -content/.rcc/qrc_qmake_content.cpp: content/qmldir -content/.rcc/qrc_qmake_content.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qrc_qmake_content.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp --name qmake_content /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc - -content/.rcc/qmlcache/content_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmlcache/content_qml_loader_file_list.rsp -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_qmlcache_loader.cpp: content/.rcc/content_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/content_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_content -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qml_loader_file_list.rsp - -content/.rcc/qmlcache/content_App_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_App_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_App_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_App_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_App_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/content_App_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/App.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_Screen01.ui_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/content_Screen01.ui_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Screen01.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - -content/.rcc/qmlcache/content_Speedometer_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_Speedometer_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_Speedometer_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/content_Speedometer_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Speedometer.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_BatterySlider_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/content_BatterySlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - -content/.rcc/qmlcache/content_TempSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_TempSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_TempSlider_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Generating .rcc/qmlcache/content_TempSlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TempSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - -content/.rcc/qmlcache/content_Debug1_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_Debug1_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -content/.rcc/qmlcache/content_Debug1_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_Debug1_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_Debug1_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_Debug1_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Generating .rcc/qmlcache/content_Debug1_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/Debug1.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml - -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating .rcc/qmlcache/content_BoltLeanAngle_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BoltLeanAngle.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml - -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_BikeStatus_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Generating .rcc/qmlcache/content_BikeStatus_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BikeStatus.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml - -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_BatteryReadout_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Generating .rcc/qmlcache/content_BatteryReadout_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BatteryReadout.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml - -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Generating .rcc/qmlcache/content_FullBatterySlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FullBatterySlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml - -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Generating .rcc/qmlcache/content_TemperatureIsland_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/TemperatureIsland.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml - -content/.rcc/qmlcache/content_FullSlider_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_FullSlider_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_FullSlider_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Generating .rcc/qmlcache/content_FullSlider_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FullSlider.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml - -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Generating .rcc/qmlcache/content_BMSFaultDetails_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/BMSFaultDetails.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml - -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Generating .rcc/qmlcache/content_DebugItem1.ui_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugItem1.ui.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml - -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Generating .rcc/qmlcache/content_FaultMotorStatus_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/FaultMotorStatus.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml - -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Generating .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/SpeedometerDecorations.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml - -content/.rcc/qmlcache/content_DebugMain_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugMain_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugMain_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Generating .rcc/qmlcache/content_DebugMain_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugMain.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml - -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugMotor_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Generating .rcc/qmlcache/content_DebugMotor_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugMotor.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml - -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugOverview_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Generating .rcc/qmlcache/content_DebugOverview_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugOverview.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml - -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugBMS_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Generating .rcc/qmlcache/content_DebugBMS_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugBMS.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml - -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/.rcc/qmake_content.qrc -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/content.qmltypes -content/.rcc/qmlcache/content_DebugPDU_qml.cpp: content/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Generating .rcc/qmlcache/content_DebugPDU_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /content/DebugPDU.qml -I /Users/mason/Documents/Code/dash-cpp/build/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/content/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmake_content.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml - -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg -content/.rcc/qrc_content_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg -content/.rcc/qrc_content_raw_qml_0.cpp: content/.rcc/content_raw_qml_0.qrc -content/.rcc/qrc_content_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Running rcc for resource content_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp --name content_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/content_raw_qml_0.qrc - -content/meta_types/content_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -content/meta_types/content_json_file_list.txt: content/content_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Running AUTOMOC file extraction for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include - -content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Generating meta_types/qt6content_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/content_autogen/mocs_compilation.cpp -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -MF CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp > CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp -o CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -MF CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp > CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i - -content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp -o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s - -content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/.rcc/qrc_qmake_content.cpp -content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -MF CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp - -content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp > CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i - -content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp -o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/.rcc/qmlcache/content_qmlcache_loader.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/.rcc/qmlcache/content_App_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/.rcc/qmlcache/content_Speedometer_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_BatterySlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/.rcc/qmlcache/content_TempSlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/.rcc/qmlcache/content_Debug1_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/.rcc/qmlcache/content_BikeStatus_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/.rcc/qmlcache/content_BatteryReadout_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/.rcc/qmlcache/content_FullSlider_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/.rcc/qmlcache/content_DebugMain_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/.rcc/qmlcache/content_DebugMotor_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/.rcc/qmlcache/content_DebugOverview_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/.rcc/qmlcache/content_DebugBMS_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/.rcc/qmlcache/content_DebugPDU_qml.cpp -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_53) "Building CXX object content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -MF CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp > CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i - -content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp -o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s - -content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content.dir/flags.make -content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/.rcc/qrc_content_raw_qml_0.cpp -content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o: content/CMakeFiles/content.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_54) "Building CXX object content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -MF CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp - -content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp > CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i - -content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp -o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s - -# Object files for target content -content_OBJECTS = \ -"CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" \ -"CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - -# External object files for target content -content_EXTERNAL_OBJECTS = - -content/libcontent.a: content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -content/libcontent.a: content/CMakeFiles/content.dir/build.make -content/libcontent.a: content/CMakeFiles/content.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_55) "Linking CXX static library libcontent.a" - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/content.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -content/CMakeFiles/content.dir/build: content/libcontent.a -.PHONY : content/CMakeFiles/content.dir/build - -content/CMakeFiles/content.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content.dir/clean - -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_App_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatteryReadout_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BatterySlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BikeStatus_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Debug1_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugBMS_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugMain_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugMotor_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugOverview_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_DebugPDU_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_FullSlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Screen01.ui_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_Speedometer_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TempSlider_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qmlcache/content_qmlcache_loader.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qrc_content_raw_qml_0.cpp -content/CMakeFiles/content.dir/depend: content/.rcc/qrc_qmake_content.cpp -content/CMakeFiles/content.dir/depend: content/content.qmltypes -content/CMakeFiles/content.dir/depend: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content.dir/depend: content/meta_types/content_json_file_list.txt -content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json -content/CMakeFiles/content.dir/depend: content/meta_types/qt6content_debug_metatypes.json.gen - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content.dir/depend - diff --git a/build/content/CMakeFiles/content.dir/cmake_clean.cmake b/build/content/CMakeFiles/content.dir/cmake_clean.cmake deleted file mode 100644 index a353789..0000000 --- a/build/content/CMakeFiles/content.dir/cmake_clean.cmake +++ /dev/null @@ -1,94 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/content_App_qml.cpp" - ".rcc/qmlcache/content_BMSFaultDetails_qml.cpp" - ".rcc/qmlcache/content_BatteryReadout_qml.cpp" - ".rcc/qmlcache/content_BatterySlider_qml.cpp" - ".rcc/qmlcache/content_BikeStatus_qml.cpp" - ".rcc/qmlcache/content_BoltLeanAngle_qml.cpp" - ".rcc/qmlcache/content_Debug1_qml.cpp" - ".rcc/qmlcache/content_DebugBMS_qml.cpp" - ".rcc/qmlcache/content_DebugItem1.ui_qml.cpp" - ".rcc/qmlcache/content_DebugMain_qml.cpp" - ".rcc/qmlcache/content_DebugMotor_qml.cpp" - ".rcc/qmlcache/content_DebugOverview_qml.cpp" - ".rcc/qmlcache/content_DebugPDU_qml.cpp" - ".rcc/qmlcache/content_FaultMotorStatus_qml.cpp" - ".rcc/qmlcache/content_FullBatterySlider_qml.cpp" - ".rcc/qmlcache/content_FullSlider_qml.cpp" - ".rcc/qmlcache/content_Screen01.ui_qml.cpp" - ".rcc/qmlcache/content_SpeedometerDecorations_qml.cpp" - ".rcc/qmlcache/content_Speedometer_qml.cpp" - ".rcc/qmlcache/content_TempSlider_qml.cpp" - ".rcc/qmlcache/content_TemperatureIsland_qml.cpp" - ".rcc/qmlcache/content_qmlcache_loader.cpp" - ".rcc/qrc_content_raw_qml_0.cpp" - ".rcc/qrc_qmake_content.cpp" - "CMakeFiles/content_autogen.dir/AutogenUsed.txt" - "CMakeFiles/content_autogen.dir/ParseCache.txt" - "content_autogen" - "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o" - "CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o" - "CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o.d" - "CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o" - "CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o.d" - "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o" - "CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o" - "CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o.d" - "content.qmltypes" - "content_qmltyperegistrations.cpp" - "libcontent.a" - "libcontent.pdb" - "meta_types/content_json_file_list.txt" - "meta_types/content_json_file_list.txt.timestamp" - "meta_types/qt6content_debug_metatypes.json" - "meta_types/qt6content_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake deleted file mode 100644 index 8bbd60e..0000000 --- a/build/content/CMakeFiles/content.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libcontent.a" -) diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.make b/build/content/CMakeFiles/content.dir/compiler_depend.make deleted file mode 100644 index 5ebb3e6..0000000 --- a/build/content/CMakeFiles/content.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/compiler_depend.ts b/build/content/CMakeFiles/content.dir/compiler_depend.ts deleted file mode 100644 index b42d30e..0000000 --- a/build/content/CMakeFiles/content.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content. diff --git a/build/content/CMakeFiles/content.dir/depend.make b/build/content/CMakeFiles/content.dir/depend.make deleted file mode 100644 index 41ab280..0000000 --- a/build/content/CMakeFiles/content.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content.dir/flags.make b/build/content/CMakeFiles/content.dir/flags.make deleted file mode 100644 index 99afbda..0000000 --- a/build/content/CMakeFiles/content.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content.dir/link.txt b/build/content/CMakeFiles/content.dir/link.txt deleted file mode 100644 index 31d7b3a..0000000 --- a/build/content/CMakeFiles/content.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libcontent.a CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libcontent.a diff --git a/build/content/CMakeFiles/content.dir/progress.make b/build/content/CMakeFiles/content.dir/progress.make deleted file mode 100644 index 5551618..0000000 --- a/build/content/CMakeFiles/content.dir/progress.make +++ /dev/null @@ -1,56 +0,0 @@ -CMAKE_PROGRESS_1 = 42 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 43 -CMAKE_PROGRESS_4 = 44 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 45 -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 46 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 47 -CMAKE_PROGRESS_11 = 48 -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = 49 -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = 50 -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = 51 -CMAKE_PROGRESS_18 = 52 -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = 53 -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = 54 -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = 55 -CMAKE_PROGRESS_25 = 56 -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = 57 -CMAKE_PROGRESS_28 = -CMAKE_PROGRESS_29 = 58 -CMAKE_PROGRESS_30 = -CMAKE_PROGRESS_31 = 59 -CMAKE_PROGRESS_32 = 60 -CMAKE_PROGRESS_33 = -CMAKE_PROGRESS_34 = 61 -CMAKE_PROGRESS_35 = -CMAKE_PROGRESS_36 = 62 -CMAKE_PROGRESS_37 = -CMAKE_PROGRESS_38 = 63 -CMAKE_PROGRESS_39 = 64 -CMAKE_PROGRESS_40 = -CMAKE_PROGRESS_41 = 65 -CMAKE_PROGRESS_42 = -CMAKE_PROGRESS_43 = 66 -CMAKE_PROGRESS_44 = -CMAKE_PROGRESS_45 = 67 -CMAKE_PROGRESS_46 = 68 -CMAKE_PROGRESS_47 = -CMAKE_PROGRESS_48 = 69 -CMAKE_PROGRESS_49 = -CMAKE_PROGRESS_50 = 70 -CMAKE_PROGRESS_51 = -CMAKE_PROGRESS_52 = 71 -CMAKE_PROGRESS_53 = 72 -CMAKE_PROGRESS_54 = -CMAKE_PROGRESS_55 = 73 - diff --git a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json deleted file mode 100644 index 5032971..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/deps", - "DEP_FILE_RULE_NAME" : "content_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake deleted file mode 100644 index 6a64ff6..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "content/content_autogen/timestamp" "custom" "content/content_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen.dir/build.make b/build/content/CMakeFiles/content_autogen.dir/build.make deleted file mode 100644 index 2821ab9..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_autogen.dir/progress.make - -content/CMakeFiles/content_autogen: content/content_autogen/timestamp - -content/content_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -content/content_autogen/timestamp: content/CMakeFiles/content_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp - -content_autogen: content/CMakeFiles/content_autogen -content_autogen: content/content_autogen/timestamp -content_autogen: content/CMakeFiles/content_autogen.dir/build.make -.PHONY : content_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/content_autogen.dir/build: content_autogen -.PHONY : content/CMakeFiles/content_autogen.dir/build - -content/CMakeFiles/content_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_autogen.dir/clean - -content/CMakeFiles/content_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_autogen.dir/depend - diff --git a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 6492842..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_autogen" - "content_autogen/mocs_compilation.cpp" - "content_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make deleted file mode 100644 index 6f50c80..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts deleted file mode 100644 index d4a1a6a..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_autogen. diff --git a/build/content/CMakeFiles/content_autogen.dir/progress.make b/build/content/CMakeFiles/content_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/content/CMakeFiles/content_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index e823749..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make - -content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make -.PHONY : content_autogen_timestamp_deps - -# Rule to build all files generated by this target. -content/CMakeFiles/content_autogen_timestamp_deps.dir/build: content_autogen_timestamp_deps -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/build - -content/CMakeFiles/content_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/clean - -content/CMakeFiles/content_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/depend - diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 91409a6..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 4e02064..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index f634113..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint.dir/build.make b/build/content/CMakeFiles/content_qmllint.dir/build.make deleted file mode 100644 index f6f84a9..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/build.make +++ /dev/null @@ -1,109 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint.dir/progress.make - -content/CMakeFiles/content_qmllint: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -content/CMakeFiles/content_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml -content/CMakeFiles/content_qmllint: content/.rcc/qmllint/content.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content.rsp - -content_qmllint: content/CMakeFiles/content_qmllint -content_qmllint: content/CMakeFiles/content_qmllint.dir/build.make -.PHONY : content_qmllint - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint.dir/build: content_qmllint -.PHONY : content/CMakeFiles/content_qmllint.dir/build - -content/CMakeFiles/content_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint.dir/clean - -content/CMakeFiles/content_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 7c52960..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make deleted file mode 100644 index cd46e39..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 8e8f87e..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint. diff --git a/build/content/CMakeFiles/content_qmllint.dir/progress.make b/build/content/CMakeFiles/content_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/build.make b/build/content/CMakeFiles/content_qmllint_json.dir/build.make deleted file mode 100644 index 2d0bd73..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/build.make +++ /dev/null @@ -1,109 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint_json. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint_json.dir/progress.make - -content/CMakeFiles/content_qmllint_json: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -content/CMakeFiles/content_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml -content/CMakeFiles/content_qmllint_json: content/.rcc/qmllint/content_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_json.rsp - -content_qmllint_json: content/CMakeFiles/content_qmllint_json -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/build.make -.PHONY : content_qmllint_json - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint_json.dir/build: content_qmllint_json -.PHONY : content/CMakeFiles/content_qmllint_json.dir/build - -content/CMakeFiles/content_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint_json.dir/clean - -content/CMakeFiles/content_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint_json.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 3b5be7b..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index c249484..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 9a27907..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint_json. diff --git a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make b/build/content/CMakeFiles/content_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/build.make b/build/content/CMakeFiles/content_qmllint_module.dir/build.make deleted file mode 100644 index 50a9921..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/build.make +++ /dev/null @@ -1,109 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmllint_module. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmllint_module.dir/progress.make - -content/CMakeFiles/content_qmllint_module: /opt/homebrew/bin/qmllint -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml -content/CMakeFiles/content_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml -content/CMakeFiles/content_qmllint_module: content/.rcc/qmllint/content_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmllint/content_module.rsp - -content_qmllint_module: content/CMakeFiles/content_qmllint_module -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/build.make -.PHONY : content_qmllint_module - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmllint_module.dir/build: content_qmllint_module -.PHONY : content/CMakeFiles/content_qmllint_module.dir/build - -content/CMakeFiles/content_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmllint_module.dir/clean - -content/CMakeFiles/content_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmllint_module.dir/depend - diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index fc5cd8a..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 3894382..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index c701c55..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmllint_module. diff --git a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make b/build/content/CMakeFiles/content_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/content_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 0346e81..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "content/content_autogen/timestamp" "custom" "content/content_autogen/deps" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make deleted file mode 100644 index 93f4fa2..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,129 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_qmltyperegistration.dir/progress.make - -content/CMakeFiles/content_qmltyperegistration: content/content_qmltyperegistrations.cpp -content/CMakeFiles/content_qmltyperegistration: content/content.qmltypes - -content/content_qmltyperegistrations.cpp: content/qmltypes/content_foreign_types.txt -content/content_qmltyperegistrations.cpp: content/meta_types/qt6content_debug_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -content/content_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/content/content.qmltypes --import-name=content --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/content/qmltypes/content_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/content/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/.generated/content.qmltypes - -content/content.qmltypes: content/content_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate content/content.qmltypes - -content/meta_types/qt6content_debug_metatypes.json: content/meta_types/qt6content_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6content_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -content/meta_types/qt6content_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -content/meta_types/qt6content_debug_metatypes.json.gen: content/meta_types/content_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json - -content/meta_types/content_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -content/meta_types/content_json_file_list.txt: content/content_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/content/meta_types/content_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include - -content/content_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -content/content_autogen/timestamp: content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target content" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/timestamp - -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration -content_qmltyperegistration: content/content.qmltypes -content_qmltyperegistration: content/content_autogen/timestamp -content_qmltyperegistration: content/content_qmltyperegistrations.cpp -content_qmltyperegistration: content/meta_types/content_json_file_list.txt -content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json -content_qmltyperegistration: content/meta_types/qt6content_debug_metatypes.json.gen -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/build.make -.PHONY : content_qmltyperegistration - -# Rule to build all files generated by this target. -content/CMakeFiles/content_qmltyperegistration.dir/build: content_qmltyperegistration -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/build - -content/CMakeFiles/content_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/clean - -content/CMakeFiles/content_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/depend - diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index be70f8d..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_qmltyperegistration" - "content.qmltypes" - "content_autogen/mocs_compilation.cpp" - "content_autogen/timestamp" - "content_qmltyperegistrations.cpp" - "meta_types/content_json_file_list.txt" - "meta_types/content_json_file_list.txt.timestamp" - "meta_types/qt6content_debug_metatypes.json" - "meta_types/qt6content_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index bcc5759..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts b/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index b5ac76f..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_qmltyperegistration. diff --git a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make b/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make deleted file mode 100644 index 3a0be9c..0000000 --- a/build/content/CMakeFiles/content_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,6 +0,0 @@ -CMAKE_PROGRESS_1 = 74 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 75 -CMAKE_PROGRESS_4 = 76 -CMAKE_PROGRESS_5 = - diff --git a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 0b5146f..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" "gcc" "content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_1.dir/build.make b/build/content/CMakeFiles/content_resources_1.dir/build.make deleted file mode 100644 index 6f4eccf..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content_resources_1.dir/flags.make - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/CMakeFiles/content_resources_1.dir/flags.make -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/.rcc/qrc_qmake_content_init.cpp -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o: content/CMakeFiles/content_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -MF CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp > CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i - -content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp -o CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s - -content_resources_1: content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -content_resources_1: content/CMakeFiles/content_resources_1.dir/build.make -.PHONY : content_resources_1 - -# Rule to build all files generated by this target. -content/CMakeFiles/content_resources_1.dir/build: content_resources_1 -.PHONY : content/CMakeFiles/content_resources_1.dir/build - -content/CMakeFiles/content_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_1.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_resources_1.dir/clean - -content/CMakeFiles/content_resources_1.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_resources_1.dir/depend - diff --git a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index 0f94e22..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o" - "CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make deleted file mode 100644 index 80fcb9a..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts deleted file mode 100644 index a8149ac..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content_resources_1. diff --git a/build/content/CMakeFiles/content_resources_1.dir/depend.make b/build/content/CMakeFiles/content_resources_1.dir/depend.make deleted file mode 100644 index ec5b3e6..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_1.dir/flags.make b/build/content/CMakeFiles/content_resources_1.dir/flags.make deleted file mode 100644 index d15771f..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content_resources_1.dir/progress.make b/build/content/CMakeFiles/content_resources_1.dir/progress.make deleted file mode 100644 index 079e09c..0000000 --- a/build/content/CMakeFiles/content_resources_1.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 77 - diff --git a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake b/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake deleted file mode 100644 index c8cee21..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" "gcc" "content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_resources_2.dir/build.make b/build/content/CMakeFiles/content_resources_2.dir/build.make deleted file mode 100644 index 928d83c..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/content_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/content_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/content_resources_2.dir/flags.make - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/CMakeFiles/content_resources_2.dir/flags.make -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/.rcc/qrc_content_raw_qml_0_init.cpp -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o: content/CMakeFiles/content_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -MF CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp > CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i - -content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp -o CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s - -content_resources_2: content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -content_resources_2: content/CMakeFiles/content_resources_2.dir/build.make -.PHONY : content_resources_2 - -# Rule to build all files generated by this target. -content/CMakeFiles/content_resources_2.dir/build: content_resources_2 -.PHONY : content/CMakeFiles/content_resources_2.dir/build - -content/CMakeFiles/content_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_resources_2.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_resources_2.dir/clean - -content/CMakeFiles/content_resources_2.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_resources_2.dir/depend - diff --git a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index 1c4e4fa..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o" - "CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/content_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make deleted file mode 100644 index 7345f77..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for content_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts b/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts deleted file mode 100644 index a266955..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for content_resources_2. diff --git a/build/content/CMakeFiles/content_resources_2.dir/depend.make b/build/content/CMakeFiles/content_resources_2.dir/depend.make deleted file mode 100644 index b11eccc..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for content_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_resources_2.dir/flags.make b/build/content/CMakeFiles/content_resources_2.dir/flags.make deleted file mode 100644 index d15771f..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/content_resources_2.dir/progress.make b/build/content/CMakeFiles/content_resources_2.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/content/CMakeFiles/content_resources_2.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake b/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/content_tooling.dir/build.make b/build/content/CMakeFiles/content_tooling.dir/build.make deleted file mode 100644 index cf6621f..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/build.make +++ /dev/null @@ -1,243 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for content_tooling. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/content_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/content_tooling.dir/progress.make - -content/App.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying App.qml to /Users/mason/Documents/Code/dash-cpp/build/content/App.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/App.qml /Users/mason/Documents/Code/dash-cpp/build/content/App.qml - -content/Screen01.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying Screen01.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Screen01.ui.qml /Users/mason/Documents/Code/dash-cpp/build/content/Screen01.ui.qml - -content/Speedometer.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying Speedometer.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Speedometer.qml /Users/mason/Documents/Code/dash-cpp/build/content/Speedometer.qml - -content/BatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying BatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/BatterySlider.qml - -content/TempSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Copying TempSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TempSlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/TempSlider.qml - -content/Debug1.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Copying Debug1.qml to /Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Debug1.qml /Users/mason/Documents/Code/dash-cpp/build/content/Debug1.qml - -content/BoltLeanAngle.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Copying BoltLeanAngle.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BoltLeanAngle.qml /Users/mason/Documents/Code/dash-cpp/build/content/BoltLeanAngle.qml - -content/BikeStatus.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Copying BikeStatus.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BikeStatus.qml /Users/mason/Documents/Code/dash-cpp/build/content/BikeStatus.qml - -content/BatteryReadout.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Copying BatteryReadout.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BatteryReadout.qml /Users/mason/Documents/Code/dash-cpp/build/content/BatteryReadout.qml - -content/FullBatterySlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Copying FullBatterySlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullBatterySlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/FullBatterySlider.qml - -content/TemperatureIsland.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Copying TemperatureIsland.qml to /Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/TemperatureIsland.qml /Users/mason/Documents/Code/dash-cpp/build/content/TemperatureIsland.qml - -content/FullSlider.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Copying FullSlider.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FullSlider.qml /Users/mason/Documents/Code/dash-cpp/build/content/FullSlider.qml - -content/BMSFaultDetails.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Copying BMSFaultDetails.qml to /Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/BMSFaultDetails.qml /Users/mason/Documents/Code/dash-cpp/build/content/BMSFaultDetails.qml - -content/DebugItem1.ui.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Copying DebugItem1.ui.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugItem1.ui.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugItem1.ui.qml - -content/FaultMotorStatus.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Copying FaultMotorStatus.qml to /Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/FaultMotorStatus.qml /Users/mason/Documents/Code/dash-cpp/build/content/FaultMotorStatus.qml - -content/SpeedometerDecorations.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Copying SpeedometerDecorations.qml to /Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/SpeedometerDecorations.qml /Users/mason/Documents/Code/dash-cpp/build/content/SpeedometerDecorations.qml - -content/DebugMain.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Copying DebugMain.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMain.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugMain.qml - -content/DebugMotor.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Copying DebugMotor.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugMotor.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugMotor.qml - -content/DebugOverview.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Copying DebugOverview.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugOverview.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugOverview.qml - -content/DebugBMS.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Copying DebugBMS.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugBMS.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugBMS.qml - -content/DebugPDU.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Copying DebugPDU.qml to /Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/DebugPDU.qml /Users/mason/Documents/Code/dash-cpp/build/content/DebugPDU.qml - -content/fonts/fonts.txt: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Copying fonts/fonts.txt to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/fonts.txt /Users/mason/Documents/Code/dash-cpp/build/content/fonts/fonts.txt - -content/fonts/nasalization-rg.otf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Copying fonts/nasalization-rg.otf to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/nasalization-rg.otf /Users/mason/Documents/Code/dash-cpp/build/content/fonts/nasalization-rg.otf - -content/fonts/MesloLGSDZNerdFontMono-Regular.ttf: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Copying fonts/MesloLGSDZNerdFontMono-Regular.ttf to /Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf /Users/mason/Documents/Code/dash-cpp/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf - -content/Pictures/leanAngleBack.png: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Copying Pictures/leanAngleBack.png to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/leanAngleBack.png /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/leanAngleBack.png - -content/Pictures/motorcycleIcon.png: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Copying Pictures/motorcycleIcon.png to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motorcycleIcon.png /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motorcycleIcon.png - -content/Pictures/battery-twotone-0-svgrepo-com.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Copying Pictures/battery-twotone-0-svgrepo-com.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery-twotone-0-svgrepo-com.svg - -content/Pictures/battery.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Copying Pictures/battery.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery.svg - -content/Pictures/battery_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Copying Pictures/battery_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/battery_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/battery_temp.svg - -content/Pictures/controller_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Copying Pictures/controller_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/controller_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/controller_temp.svg - -content/Pictures/motor_temp.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Copying Pictures/motor_temp.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/motor_temp.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/motor_temp.svg - -content/Pictures/Virginia_Tech_Hokies_logo.svg: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Copying Pictures/Virginia_Tech_Hokies_logo.svg to /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/Pictures/Virginia_Tech_Hokies_logo.svg /Users/mason/Documents/Code/dash-cpp/build/content/Pictures/Virginia_Tech_Hokies_logo.svg - -content_tooling: content/App.qml -content_tooling: content/BMSFaultDetails.qml -content_tooling: content/BatteryReadout.qml -content_tooling: content/BatterySlider.qml -content_tooling: content/BikeStatus.qml -content_tooling: content/BoltLeanAngle.qml -content_tooling: content/Debug1.qml -content_tooling: content/DebugBMS.qml -content_tooling: content/DebugItem1.ui.qml -content_tooling: content/DebugMain.qml -content_tooling: content/DebugMotor.qml -content_tooling: content/DebugOverview.qml -content_tooling: content/DebugPDU.qml -content_tooling: content/FaultMotorStatus.qml -content_tooling: content/FullBatterySlider.qml -content_tooling: content/FullSlider.qml -content_tooling: content/Pictures/Virginia_Tech_Hokies_logo.svg -content_tooling: content/Pictures/battery-twotone-0-svgrepo-com.svg -content_tooling: content/Pictures/battery.svg -content_tooling: content/Pictures/battery_temp.svg -content_tooling: content/Pictures/controller_temp.svg -content_tooling: content/Pictures/leanAngleBack.png -content_tooling: content/Pictures/motor_temp.svg -content_tooling: content/Pictures/motorcycleIcon.png -content_tooling: content/Screen01.ui.qml -content_tooling: content/Speedometer.qml -content_tooling: content/SpeedometerDecorations.qml -content_tooling: content/TempSlider.qml -content_tooling: content/TemperatureIsland.qml -content_tooling: content/fonts/MesloLGSDZNerdFontMono-Regular.ttf -content_tooling: content/fonts/fonts.txt -content_tooling: content/fonts/nasalization-rg.otf -content_tooling: content/CMakeFiles/content_tooling.dir/build.make -.PHONY : content_tooling - -# Rule to build all files generated by this target. -content/CMakeFiles/content_tooling.dir/build: content_tooling -.PHONY : content/CMakeFiles/content_tooling.dir/build - -content/CMakeFiles/content_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/content_tooling.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/content_tooling.dir/clean - -content/CMakeFiles/content_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/content_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/content_tooling.dir/depend - diff --git a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake b/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake deleted file mode 100644 index d318b80..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,39 +0,0 @@ -file(REMOVE_RECURSE - "App.qml" - "BMSFaultDetails.qml" - "BatteryReadout.qml" - "BatterySlider.qml" - "BikeStatus.qml" - "BoltLeanAngle.qml" - "Debug1.qml" - "DebugBMS.qml" - "DebugItem1.ui.qml" - "DebugMain.qml" - "DebugMotor.qml" - "DebugOverview.qml" - "DebugPDU.qml" - "FaultMotorStatus.qml" - "FullBatterySlider.qml" - "FullSlider.qml" - "Pictures/Virginia_Tech_Hokies_logo.svg" - "Pictures/battery-twotone-0-svgrepo-com.svg" - "Pictures/battery.svg" - "Pictures/battery_temp.svg" - "Pictures/controller_temp.svg" - "Pictures/leanAngleBack.png" - "Pictures/motor_temp.svg" - "Pictures/motorcycleIcon.png" - "Screen01.ui.qml" - "Speedometer.qml" - "SpeedometerDecorations.qml" - "TempSlider.qml" - "TemperatureIsland.qml" - "fonts/MesloLGSDZNerdFontMono-Regular.ttf" - "fonts/fonts.txt" - "fonts/nasalization-rg.otf" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/content_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make deleted file mode 100644 index e0641c5..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for content_tooling. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts b/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts deleted file mode 100644 index f88052a..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for content_tooling. diff --git a/build/content/CMakeFiles/content_tooling.dir/progress.make b/build/content/CMakeFiles/content_tooling.dir/progress.make deleted file mode 100644 index 00529d0..0000000 --- a/build/content/CMakeFiles/content_tooling.dir/progress.make +++ /dev/null @@ -1,33 +0,0 @@ -CMAKE_PROGRESS_1 = 78 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 79 -CMAKE_PROGRESS_4 = 80 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 81 -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 82 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 83 -CMAKE_PROGRESS_11 = 84 -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = 85 -CMAKE_PROGRESS_14 = -CMAKE_PROGRESS_15 = 86 -CMAKE_PROGRESS_16 = -CMAKE_PROGRESS_17 = 87 -CMAKE_PROGRESS_18 = 88 -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = 89 -CMAKE_PROGRESS_21 = -CMAKE_PROGRESS_22 = 90 -CMAKE_PROGRESS_23 = -CMAKE_PROGRESS_24 = 91 -CMAKE_PROGRESS_25 = 92 -CMAKE_PROGRESS_26 = -CMAKE_PROGRESS_27 = 93 -CMAKE_PROGRESS_28 = -CMAKE_PROGRESS_29 = 94 -CMAKE_PROGRESS_30 = -CMAKE_PROGRESS_31 = 95 -CMAKE_PROGRESS_32 = 96 - diff --git a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake deleted file mode 100644 index 08c5225..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" "gcc" "content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin.dir/build.make b/build/content/CMakeFiles/contentplugin.dir/build.make deleted file mode 100644 index 77816d4..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/contentplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/contentplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/contentplugin.dir/flags.make - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/contentplugin_autogen/mocs_compilation.cpp -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/flags.make -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/contentplugin_contentPlugin.cpp -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o: content/CMakeFiles/contentplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -MF CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp > CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i - -content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp -o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s - -# Object files for target contentplugin -contentplugin_OBJECTS = \ -"CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - -# External object files for target contentplugin -contentplugin_EXTERNAL_OBJECTS = - -content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/build.make -content/libcontentplugin.a: content/CMakeFiles/contentplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libcontentplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/contentplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin.dir/build: content/libcontentplugin.a -.PHONY : content/CMakeFiles/contentplugin.dir/build - -content/CMakeFiles/contentplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin.dir/clean - -content/CMakeFiles/contentplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake deleted file mode 100644 index a3b37e7..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/contentplugin_autogen.dir/ParseCache.txt" - "contentplugin_autogen" - "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o" - "CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o.d" - "libcontentplugin.a" - "libcontentplugin.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/contentplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake b/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index b6b9d80..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libcontentplugin.a" -) diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make deleted file mode 100644 index 78cdb39..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for contentplugin. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts deleted file mode 100644 index 6fe1680..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for contentplugin. diff --git a/build/content/CMakeFiles/contentplugin.dir/depend.make b/build/content/CMakeFiles/contentplugin.dir/depend.make deleted file mode 100644 index 4d6ce9a..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for contentplugin. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin.dir/flags.make b/build/content/CMakeFiles/contentplugin.dir/flags.make deleted file mode 100644 index 81837eb..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/contentplugin.dir/link.txt b/build/content/CMakeFiles/contentplugin.dir/link.txt deleted file mode 100644 index 09bf1b7..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libcontentplugin.a CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libcontentplugin.a diff --git a/build/content/CMakeFiles/contentplugin.dir/progress.make b/build/content/CMakeFiles/contentplugin.dir/progress.make deleted file mode 100644 index d9a710d..0000000 --- a/build/content/CMakeFiles/contentplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 97 -CMAKE_PROGRESS_3 = - diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 03a365c..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,166 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/deps", - "DEP_FILE_RULE_NAME" : "contentplugin_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "-Muri=content" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 49e70c3..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "content/contentplugin_autogen/timestamp" "custom" "content/contentplugin_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen.dir/build.make deleted file mode 100644 index 4de92c4..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_autogen.dir/progress.make - -content/CMakeFiles/contentplugin_autogen: content/contentplugin_autogen/timestamp - -content/contentplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -content/contentplugin_autogen/timestamp: content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/timestamp - -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen -contentplugin_autogen: content/contentplugin_autogen/timestamp -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/build.make -.PHONY : contentplugin_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_autogen.dir/build: contentplugin_autogen -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/build - -content/CMakeFiles/contentplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/clean - -content/CMakeFiles/contentplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index e47ef85..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_autogen" - "contentplugin_autogen/mocs_compilation.cpp" - "contentplugin_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 49dd693..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index f34cab5..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_autogen. diff --git a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make deleted file mode 100644 index 9e973d3..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 98 - diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index e3307cb..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,86 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make - -content/CMakeFiles/contentplugin_autogen_timestamp_deps: content/contentplugin_contentPlugin.cpp - -contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps -contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make -.PHONY : contentplugin_autogen_timestamp_deps - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build: contentplugin_autogen_timestamp_deps -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build - -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/clean - -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index b226410..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_autogen_timestamp_deps" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 31a5e90..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index 96c6948..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake deleted file mode 100644 index a2e2e0f..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init.dir/build.make b/build/content/CMakeFiles/contentplugin_init.dir/build.make deleted file mode 100644 index c502f31..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include content/CMakeFiles/contentplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include content/CMakeFiles/contentplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include content/CMakeFiles/contentplugin_init.dir/flags.make - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/contentplugin_init_autogen/mocs_compilation.cpp -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/flags.make -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/contentplugin_init.cpp -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o: content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -MF CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp > CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i - -content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp -o CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s - -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/build.make -.PHONY : contentplugin_init - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_init.dir/build: contentplugin_init -.PHONY : content/CMakeFiles/contentplugin_init.dir/build - -content/CMakeFiles/contentplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_init.dir/clean - -content/CMakeFiles/contentplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_init.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index aafae09..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt" - "contentplugin_init_autogen" - "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o" - "CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o.d" - "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/contentplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make deleted file mode 100644 index f2d8920..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for contentplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 09477d2..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for contentplugin_init. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/depend.make b/build/content/CMakeFiles/contentplugin_init.dir/depend.make deleted file mode 100644 index 50d850e..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for contentplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init.dir/flags.make b/build/content/CMakeFiles/contentplugin_init.dir/flags.make deleted file mode 100644 index 1fdbe21..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/content/CMakeFiles/contentplugin_init.dir/progress.make b/build/content/CMakeFiles/contentplugin_init.dir/progress.make deleted file mode 100644 index f4a80ec..0000000 --- a/build/content/CMakeFiles/contentplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 99 - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json b/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index a3b0a5f..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_contentPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/deps", - "DEP_FILE_RULE_NAME" : "contentplugin_init_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_App_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatteryReadout_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BikeStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Debug1_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugBMS_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMain_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugMotor_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugOverview_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_DebugPDU_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullBatterySlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_FullSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Screen01.ui_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_Speedometer_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TempSlider_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_TemperatureIsland_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qmlcache/content_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_content_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/.rcc/qrc_qmake_content_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/content_qmltyperegistrations.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_autogen/mocs_compilation.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index d684686..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "content/contentplugin_init_autogen/timestamp" "custom" "content/contentplugin_init_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make deleted file mode 100644 index ae2e090..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_init_autogen.dir/progress.make - -content/CMakeFiles/contentplugin_init_autogen: content/contentplugin_init_autogen/timestamp - -content/contentplugin_init_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -content/contentplugin_init_autogen/timestamp: content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target contentplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/content && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/content/contentplugin_init_autogen/timestamp - -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen -contentplugin_init_autogen: content/contentplugin_init_autogen/timestamp -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/build.make -.PHONY : contentplugin_init_autogen - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_init_autogen.dir/build: contentplugin_init_autogen -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/build - -content/CMakeFiles/contentplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/clean - -content/CMakeFiles/contentplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index f43b7fb..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_init_autogen" - "contentplugin_init_autogen/mocs_compilation.cpp" - "contentplugin_init_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index b45617c..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index c4ddd5e..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_init_autogen. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make deleted file mode 100644 index 7ad5bcb..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 100 - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index 616ec7a..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,86 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for contentplugin_init_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make - -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps: content/contentplugin_init.cpp - -contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps -contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make -.PHONY : contentplugin_init_autogen_timestamp_deps - -# Rule to build all files generated by this target. -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build: contentplugin_init_autogen_timestamp_deps -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build - -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/content && $(CMAKE_COMMAND) -P CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/clean - -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/content /Users/mason/Documents/Code/dash-cpp/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/depend - diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 2d20ea0..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/contentplugin_init_autogen_timestamp_deps" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 0880e5a..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for contentplugin_init_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index 95bd262..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for contentplugin_init_autogen_timestamp_deps. diff --git a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make b/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/content/CMakeFiles/progress.marks b/build/content/CMakeFiles/progress.marks deleted file mode 100644 index f6b91e0..0000000 --- a/build/content/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -56 diff --git a/build/content/Debug1.qml b/build/content/Debug1.qml deleted file mode 100644 index e31ee86..0000000 --- a/build/content/Debug1.qml +++ /dev/null @@ -1,66 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Shapes - -Item { - DebugItem1 { - visible: menu.selected == DebugMain.Selected.OVERVIEW - width: 650 - id: debug1 - motorTemp: backend.motorTemp - auxVoltage: backend.auxVoltage - auxPercent: backend.auxPercent - packSOC: backend.packSOC - packVoltage: backend.packVoltage - highCellTemp: backend.highCellTemp - lowCellTemp: backend.lowCellTemp - bmsTemp: backend.bmsTemp - motorSpeed: backend.motorSpeed - bikeSpeed: backend.bikeSpeed - } - - DebugMotor { - visible: menu.selected == DebugMain.Selected.MOTOR - width: 650 - id: debugMotor - motorTemp: backend.motorTemp - motorSpeed: backend.motorSpeed - bikeSpeed: backend.bikeSpeed - mcTemp: backend.mcTemp - mcFault: backend.mcFault - motorOn: backend.motorOn - } - - DebugBMS { - visible: menu.selected == DebugMain.Selected.BMS - width: 650 - id: debugBMS - packSOC: backend.packSOC - highCellTemp: backend.highCellTemp - lowCellTemp: backend.lowCellTemp - bmsTemp: backend.bmsTemp - packVoltage: backend.packVoltage - packCurrent: backend.packCurrent - bmsFault: backend.bmsFault - bmsErrorCodes: bmsErrorCodes - bmsError: backend.bmsError - bmsWarning: backend.bmsWarning - bmsErrorCodesString: backend.bmsErrorCodesString - } - - DebugPDU { - visible: menu.selected == DebugMain.Selected.PDU - width: 650 - id: debugPDU - auxVoltage: backend.auxVoltage - auxPercent: backend.auxPercent - bikeStatus: backend.bikeStatus - } - - DebugMain { - id: menu - x: 650 - y: 0 - width: 150 - selected: DebugMain.Selected.OVERVIEW - } -} diff --git a/build/content/DebugBMS.qml b/build/content/DebugBMS.qml deleted file mode 100644 index b56c57e..0000000 --- a/build/content/DebugBMS.qml +++ /dev/null @@ -1,69 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Layouts -import Bolt_Dash - -Item { - width: Constants.width - height: Constants.height - - // Properties, all defined as doubles - property double packSOC: 0.0 - property double highCellTemp: 0.0 - property double lowCellTemp: 0.0 - property double bmsTemp: 0.0 - property double packVoltage: 0.0 - property bool bmsFault: false - property double packCurrent: 0.0 - property int bmsErrorCodes: 0 - property bool bmsError: false - property bool bmsWarning: false - property var bmsErrorCodesString: [] - - // Using grid layout for organized display - GridLayout { - y: 30 - columns: 2 - columnSpacing: 10 - rowSpacing: 10 - width: parent.width - height: parent.height - y - - // Labels and dynamic text for each data item, converting double to string for display - Text { text: "Pack State of Charge (SOC):" } - Text { text: qsTr("%1\%").arg(packSOC*100) } - - Text { text: "PackVoltage:" } - Text { text: qsTr("%1V").arg(packVoltage) } - - Text { text: "Pack Current:" } - Text { text: qsTr("%1A").arg(packCurrent) } - - Text { text: "High Cell Temperature:" } - Text { text: qsTr("%1°C").arg(highCellTemp) } - - Text { text: "Low Cell Temperature:" } - Text { text: qsTr("%1°C").arg(lowCellTemp) } - - Text { text: "BMS Temperature:" } - Text { text: qsTr("%1°C").arg(bmsTemp) } - - Text { text: "Any BMS Fault:" } - Text { text: bmsFault ? "Yes" : "No" } - - Text { text: "BMS Error:" } - Text { text: bmsError ? "Yes" : "No" } - - Text { text: "BMS Warning:" } - Text { text: bmsWarning ? "Yes" : "No" } - - Text { text: "BMS Error Codes:" } - Text { text: bmsErrorCodesString.length != 0 ? bmsErrorCodesString.join(", ") : "None" } - } - - Text { - text: "BMS" - color: "blue" - font.pixelSize: 24 - } -} diff --git a/build/content/DebugItem1.ui.qml b/build/content/DebugItem1.ui.qml deleted file mode 100644 index 349be1c..0000000 --- a/build/content/DebugItem1.ui.qml +++ /dev/null @@ -1,61 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Layouts -import Bolt_Dash - -Item { - width: Constants.width - height: Constants.height - - // Properties, all defined as doubles - property double motorTemp: 0.0 - property double auxVoltage: 0.0 - property double auxPercent: 0.0 - property double packSOC: 0.0 - property double highCellTemp: 0.0 - property double lowCellTemp: 0.0 - property double bmsTemp: 0.0 - property double motorSpeed: 0.0 - property double bikeSpeed: 0.0 - property double packVoltage: 0.0 - - // Using grid layout for organized display - GridLayout { - columns: 2 - columnSpacing: 10 - rowSpacing: 10 - width: parent.width - height: parent.height - - // Labels and dynamic text for each data item, converting double to string for display - Text { text: "Motor Temperature:" } - Text { text: qsTr("%1°C").arg(backend.motorTemp) } - - Text { text: "Aux Voltage:" } - Text { text: qsTr("%1V").arg(auxVoltage) } - - Text { text: "Aux Percent:" } - Text { text: qsTr("%1\%").arg(auxPercent*100) } - - Text { text: "Pack State of Charge (SOC):" } - Text { text: qsTr("%1\%").arg(packSOC*100) } - - Text { text: "PackVoltage:" } - Text { text: qsTr("%1V").arg(packVoltage) } - - Text { text: "High Cell Temperature:" } - Text { text: qsTr("%1°C").arg(highCellTemp) } - - Text { text: "Low Cell Temperature:" } - Text { text: qsTr("%1°C").arg(lowCellTemp) } - - Text { text: "BMS Temperature:" } - Text { text: qsTr("%1°C").arg(bmsTemp) } - - Text { text: "Motor Speed:" } - Text { text: qsTr("%1 RPM").arg(motorSpeed) } - - Text { text: "Bike Speed:" } - Text { text: qsTr("%1 mph").arg(bikeSpeed) } - } -} diff --git a/build/content/DebugMain.qml b/build/content/DebugMain.qml deleted file mode 100644 index 6821ae4..0000000 --- a/build/content/DebugMain.qml +++ /dev/null @@ -1,65 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -Item { - width: 100 - height: 480 - property int selected: DebugMain.Selected.OVERVIEW - - enum Selected { - OVERVIEW, - MOTOR, - BMS, - PDU - } - - Column { - id: column - property int numButtons: 4 - y: spacing - spacing: 3 - width: parent.width - height: parent.height - Repeater { - model: column.numButtons - Rectangle { - radius: 2 - height: parent.height / column.numButtons - parent.spacing - 1 - width: parent.width - color: selected === modelData ? "lightgrey" : "grey" - - Text { - height: parent.height - width: parent.width - text: { - switch (modelData) { - case DebugMain.Selected.OVERVIEW: - return "Overview" - case DebugMain.Selected.MOTOR: - return "Motor" - case DebugMain.Selected.BMS: - return "BMS" - case DebugMain.Selected.PDU: - return "PDU" - default: - return "Unknown" - } - } - color: "black" - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - elide: Text.ElideRight - } - Button { - flat: true - width: parent.width - height: parent.height - onClicked: { - selected = modelData - } - } - } - - } - } -} diff --git a/build/content/DebugMotor.qml b/build/content/DebugMotor.qml deleted file mode 100644 index 675e643..0000000 --- a/build/content/DebugMotor.qml +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Layouts -import Bolt_Dash - -Item { - width: Constants.width - height: Constants.height - - // Properties, all defined as doubles - property double motorTemp: 0.0 - property double motorSpeed: 0.0 - property double bikeSpeed: 0.0 - property double mcTemp: 0.0 - property bool mcFault: false - property bool motorOn: false - - Text { - text: "Motor" - color: "blue" - font.pixelSize: 24 - } - - // Using grid layout for organized display - GridLayout { - y: 30 - columns: 2 - columnSpacing: 10 - rowSpacing: 10 - width: parent.width - height: parent.height - 30 - - // Labels and dynamic text for each data item, converting double to string for display - Text { text: "Motor Temperature:" } - Text { text: qsTr("%1°C").arg(backend.motorTemp) } - - Text { text: "Motor Controller Temperature:" } - Text { text: qsTr("%1°C").arg(backend.mcTemp) } - - Text { text: "Motor Speed:" } - Text { text: qsTr("%1 RPM").arg(motorSpeed) } - - Text { text: "Bike Speed:" } - Text { text: qsTr("%1 mph").arg(bikeSpeed) } - - Text { text: "Motor Controller Fault:" } - Text { text: mcFault ? "Yes" : "No" } - - Text { text: "Motor On:" } - Text { text: motorOn ? "Yes" : "No" } - } -} diff --git a/build/content/DebugOverview.qml b/build/content/DebugOverview.qml deleted file mode 100644 index 68c2108..0000000 --- a/build/content/DebugOverview.qml +++ /dev/null @@ -1,5 +0,0 @@ -import QtQuick 2.15 - -Item { - -} diff --git a/build/content/DebugPDU.qml b/build/content/DebugPDU.qml deleted file mode 100644 index 98dad5c..0000000 --- a/build/content/DebugPDU.qml +++ /dev/null @@ -1,53 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Layouts -import Bolt_Dash - -Item { - width: Constants.width - height: Constants.height - - // Properties, all defined as doubles - property double auxVoltage: 0.0 - property double auxPercent: 0.0 - property int bikeStatus: 0 - - // Using grid layout for organized display - GridLayout { - y: 30 - columns: 2 - columnSpacing: 10 - rowSpacing: 10 - width: parent.width - height: parent.height - y - - // Labels and dynamic text for each data item, converting double to string for display - Text { text: "Aux Voltage:" } - Text { text: auxVoltage.toFixed(2) + " V" } - - Text { text: "Aux Percent:" } - Text { text: auxPercent.toFixed(2) + " %" } - - Text { text: "Bike Status:" } - Text { text: switch (bikeStatus) { - case BikeStatus.Status.STANDBY: - return "Standby" - case BikeStatus.Status.ACCESSORY: - return "Accessory" - case BikeStatus.Status.CHECKING: - return "Checking" - case BikeStatus.Status.READY: - return "Ready" - case BikeStatus.Status.DRIVE: - return "Drive" - case BikeStatus.Status.FAULT: - return "Fault" - } } - } - - Text { - text: "PDU" - color: "blue" - font.pixelSize: 24 - } -} diff --git a/build/content/FaultMotorStatus.qml b/build/content/FaultMotorStatus.qml deleted file mode 100644 index 2bc1a7f..0000000 --- a/build/content/FaultMotorStatus.qml +++ /dev/null @@ -1,227 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls -import QtQuick.Shapes - -Item { - width: 400 - height: 150 - property bool motorOn: false - property bool bmsError: false - property bool bmsWarning: false - property bool mcFault: false - readonly property string red: "#e80c0c" - readonly property string green: "#54c45e" - readonly property int padding: 10 - readonly property color good: green - readonly property color bad: red - readonly property color warn: "orange" - readonly property color off: "black" - id: root - - // Motor On - Rectangle { - id: motorOnIndicator - x: width - y: 0 - width: 100 - height: width - radius: width/2 - color: "transparent" - border.width: 5 - border.color: "white" - - // Indicator circle - Rectangle { - readonly property int offset: 15 - x: offset - y: offset - width: parent.width - offset*2 - height: width - radius: width/2 - color: motorOn ? good : off - } - } - - // Motor On Indicator text - Rectangle { - x: 0 - y: motorOnIndicator.y + motorOnIndicator.height - id: motorOnIndicatorRect - width: motorOnIndicatorText.width + padding*2 - height: motorOnIndicatorText.height + padding - color: "transparent" - border.width: 2 - border.color: "white" - radius: 10 - - Text { - id: motorOnIndicatorText - anchors.centerIn: parent - text: "Motor On" - font.pixelSize: 20 - color: "white" - verticalAlignment: Text.AlignVCenter - } - } - - Shape { - ShapePath { - id: motorOnIndicatorConnector - strokeColor: "white" - strokeWidth: 2 - fillColor: "transparent" - startX: motorOnIndicatorRect.x + motorOnIndicatorRect.width/2 - startY: motorOnIndicatorRect.y - PathCurve { - x: motorOnIndicatorConnector.startX+10; y: motorOnIndicator.y+4*motorOnIndicator.height/5 - } - PathCurve { - x: motorOnIndicator.x+5; y: motorOnIndicator.y+2*motorOnIndicator.height/3 - } - } - } - - // BMS Fault - Button { - id: bmsFaultIndicator - x: motorOnIndicator.x + motorOnIndicator.width + padding - y: 7 - width: 50 - height: width - onClicked: { - bmsError = !bmsError - bmsFaultDetails.show() - } - flat: true - indicator: Rectangle { - // id: bmsFaultIndicator - // x: motorOnIndicator.x + motorOnIndicator.width + padding - // y: 7 - x: 0 - y: 0 - width: 50 - height: width - radius: width/2 - color: "transparent" - border.width: 5 - border.color: "white" - - // Indicator circle - Rectangle { - readonly property int offset: 12 - x: offset - y: offset - width: parent.width - offset*2 - height: width - radius: width/2 - color: bmsError ? bad : (bmsWarning ? warn : off) - } - } - } - - // BMS Fault Indicator text - Rectangle { - x: bmsFaultIndicator.x + bmsFaultIndicator.width + padding - y: bmsFaultIndicator.y - 2*bmsFaultIndicator.height/5 - id: bmsFaultIndicatorRect - width: bmsFaultIndicatorText.width + padding*2 - height: bmsFaultIndicatorText.height + padding - color: "transparent" - border.width: 2 - border.color: "white" - radius: 10 - - Text { - id: bmsFaultIndicatorText - anchors.centerIn: parent - text: "BMS Fault" - font.pixelSize: 20 - color: "white" - verticalAlignment: Text.AlignVCenter - } - } - - Shape { - ShapePath { - id: bmsFaultIndicatorConnector - strokeColor: "white" - strokeWidth: 2 - fillColor: "transparent" - startX: bmsFaultIndicatorRect.x + bmsFaultIndicatorRect.width/2 - startY: bmsFaultIndicatorRect.y + bmsFaultIndicatorRect.height - PathCurve { - x: bmsFaultIndicatorConnector.startX-10; y: bmsFaultIndicator.y+3*bmsFaultIndicator.height/5 - } - PathCurve { - x: bmsFaultIndicator.x+bmsFaultIndicator.width - 1; y: bmsFaultIndicator.y+2*bmsFaultIndicator.height/3 - } - } - } - - // MC Fault - Rectangle { - id: mcFaultIndicator - x: bmsFaultIndicator.x - y: bmsFaultIndicator.y + bmsFaultIndicator.height + padding - width: 75 - height: width - radius: width/2 - color: "transparent" - border.width: 5 - border.color: "white" - - // Indicator circle - Rectangle { - readonly property int offset: 13 - x: offset - y: offset - width: parent.width - offset*2 - height: width - radius: width/2 - color: mcFault ? bad : off - } - } - - // MC Fault Indicator Text - Rectangle { - x: bmsFaultIndicatorRect.x + padding - y: mcFaultIndicator.y - 1*mcFaultIndicator.height/5 - id: mcFaultIndicatorRect - width: mcFaultIndicatorText.width + padding*2 - height: mcFaultIndicatorText.height + padding - color: "transparent" - border.width: 2 - border.color: "white" - radius: 10 - - Text { - id: mcFaultIndicatorText - anchors.centerIn: parent - text: "MC Fault" - font.pixelSize: 20 - color: "white" - verticalAlignment: Text.AlignVCenter - } - } - - Shape { - ShapePath { - id: mcFaultIndicatorConnector - strokeColor: "white" - strokeWidth: 2 - fillColor: "transparent" - startX: mcFaultIndicatorRect.x + mcFaultIndicatorRect.width/2 - startY: mcFaultIndicatorRect.y + mcFaultIndicatorRect.height - PathCurve { - x: mcFaultIndicatorConnector.startX-10; y: mcFaultIndicator.y+3*mcFaultIndicator.height/5 - } - PathCurve { - x: mcFaultIndicator.x + mcFaultIndicator.width - 2; y: mcFaultIndicator.y+2*mcFaultIndicator.height/3 - } - } - } - - BMSFaultDetails { - id: bmsFaultDetails - } -} diff --git a/build/content/FullBatterySlider.qml b/build/content/FullBatterySlider.qml deleted file mode 100644 index ed48d01..0000000 --- a/build/content/FullBatterySlider.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick -import Bolt_Dash - -Item { - property int soc - readonly property int textLabelY: 260 - readonly property int valueLabelY: textLabelY+25 - - - BatterySlider { - id: packSlider - x: 0 - y: 0 - scale: 0.5 - fullness: soc // Percent to decimal - } - - // Max battery percentages - Text { - x: packSlider.x + packSlider.width/2 - width/2 - y: valueLabelY - horizontalAlignment: Text.AignHCenter - text: qsTr("%1\%").arg(soc) - color: Constants.textColor - font.pixelSize: valueLabelTextSize - } - - Text { - id: packLabel - horizontalAlignment: Text.AlignHCenter - x: packSlider.x + packSlider.width/2 - width/2 - y: textLabelY - text: qsTr("PACK") - color: Constants.textColor - font.pixelSize: labelTextSize - } -} \ No newline at end of file diff --git a/build/content/FullSlider.qml b/build/content/FullSlider.qml deleted file mode 100644 index 7e793aa..0000000 --- a/build/content/FullSlider.qml +++ /dev/null @@ -1,56 +0,0 @@ -import QtQuick - -Item { - property string label: "" - property string imageUrl: "" - property color textColor: "white" - property double fullness: 0.5 - property int value: 0 - property int imageWidth: 50 - property int imageHeight: 50 - readonly property int padding: 5 - readonly property int valueLabelTextSize: 30 - - - height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height - width: packTempSlider.width*packTempSlider.scale + padding - - TempSlider { - id: packTempSlider - x: 0 - y: -(height*scale)/2 + padding - scale: 0.5 - fullness: parent.fullness > 1 ? 1 : parent.fullness < 0 ? 0 : parent.fullness // Abosulte max of 100C and divide by 2 for avg - } - - // current temp label - Text { - id: valueLabel - x: packTempSlider.width - y: height/2 - text: qsTr("%1").arg(value) - font.bold: true - font.pixelSize: valueLabelTextSize - color: textColor - } - - Text { - id: unitLabel - x: valueLabel.x - y: valueLabel.y + valueLabel.height - text: qsTr("°C") - font.bold: true - color: textColor - font.pixelSize: 20 - - } - - Image { - id: packTempLabel - x: packTempSlider.x - width/2 + packTempSlider.width/2 - y: packTempSlider.height*packTempSlider.scale - height - padding - source: imageUrl - width: imageWidth - height: imageHeight - } -} \ No newline at end of file diff --git a/build/content/Makefile b/build/content/Makefile deleted file mode 100644 index 3217080..0000000 --- a/build/content/Makefile +++ /dev/null @@ -1,1279 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/content//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -content/CMakeFiles/content.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content.dir/rule -.PHONY : content/CMakeFiles/content.dir/rule - -# Convenience name for target. -content: content/CMakeFiles/content.dir/rule -.PHONY : content - -# fast build rule for target. -content/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/build -.PHONY : content/fast - -# Convenience name for target. -content/CMakeFiles/content_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content/CMakeFiles/content_qmltyperegistration.dir/rule - -# Convenience name for target. -content_qmltyperegistration: content/CMakeFiles/content_qmltyperegistration.dir/rule -.PHONY : content_qmltyperegistration - -# fast build rule for target. -content_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmltyperegistration.dir/build.make content/CMakeFiles/content_qmltyperegistration.dir/build -.PHONY : content_qmltyperegistration/fast - -# Convenience name for target. -content/CMakeFiles/content_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content/CMakeFiles/content_resources_1.dir/rule - -# Convenience name for target. -content_resources_1: content/CMakeFiles/content_resources_1.dir/rule -.PHONY : content_resources_1 - -# fast build rule for target. -content_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/build -.PHONY : content_resources_1/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin.dir/rule -.PHONY : content/CMakeFiles/contentplugin.dir/rule - -# Convenience name for target. -contentplugin: content/CMakeFiles/contentplugin.dir/rule -.PHONY : contentplugin - -# fast build rule for target. -contentplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/build -.PHONY : contentplugin/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content/CMakeFiles/content_qmllint.dir/rule - -# Convenience name for target. -content_qmllint: content/CMakeFiles/content_qmllint.dir/rule -.PHONY : content_qmllint - -# fast build rule for target. -content_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint.dir/build.make content/CMakeFiles/content_qmllint.dir/build -.PHONY : content_qmllint/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content/CMakeFiles/content_qmllint_json.dir/rule - -# Convenience name for target. -content_qmllint_json: content/CMakeFiles/content_qmllint_json.dir/rule -.PHONY : content_qmllint_json - -# fast build rule for target. -content_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_json.dir/build.make content/CMakeFiles/content_qmllint_json.dir/build -.PHONY : content_qmllint_json/fast - -# Convenience name for target. -content/CMakeFiles/content_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content/CMakeFiles/content_qmllint_module.dir/rule - -# Convenience name for target. -content_qmllint_module: content/CMakeFiles/content_qmllint_module.dir/rule -.PHONY : content_qmllint_module - -# fast build rule for target. -content_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_qmllint_module.dir/build.make content/CMakeFiles/content_qmllint_module.dir/build -.PHONY : content_qmllint_module/fast - -# Convenience name for target. -content/CMakeFiles/content_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content/CMakeFiles/content_resources_2.dir/rule - -# Convenience name for target. -content_resources_2: content/CMakeFiles/content_resources_2.dir/rule -.PHONY : content_resources_2 - -# fast build rule for target. -content_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/build -.PHONY : content_resources_2/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : content/CMakeFiles/contentplugin_init.dir/rule - -# Convenience name for target. -contentplugin_init: content/CMakeFiles/contentplugin_init.dir/rule -.PHONY : contentplugin_init - -# fast build rule for target. -contentplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/build -.PHONY : contentplugin_init/fast - -# Convenience name for target. -content/CMakeFiles/content_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen_timestamp_deps.dir/rule -.PHONY : content/CMakeFiles/content_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -content_autogen_timestamp_deps: content/CMakeFiles/content_autogen_timestamp_deps.dir/rule -.PHONY : content_autogen_timestamp_deps - -# fast build rule for target. -content_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen_timestamp_deps.dir/build.make content/CMakeFiles/content_autogen_timestamp_deps.dir/build -.PHONY : content_autogen_timestamp_deps/fast - -# Convenience name for target. -content/CMakeFiles/content_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/content_autogen.dir/rule -.PHONY : content/CMakeFiles/content_autogen.dir/rule - -# Convenience name for target. -content_autogen: content/CMakeFiles/content_autogen.dir/rule -.PHONY : content_autogen - -# fast build rule for target. -content_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_autogen.dir/build.make content/CMakeFiles/content_autogen.dir/build -.PHONY : content_autogen/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule -.PHONY : content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -contentplugin_autogen_timestamp_deps: content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/rule -.PHONY : contentplugin_autogen_timestamp_deps - -# fast build rule for target. -contentplugin_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_autogen_timestamp_deps.dir/build -.PHONY : contentplugin_autogen_timestamp_deps/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : content/CMakeFiles/contentplugin_autogen.dir/rule - -# Convenience name for target. -contentplugin_autogen: content/CMakeFiles/contentplugin_autogen.dir/rule -.PHONY : contentplugin_autogen - -# fast build rule for target. -contentplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_autogen.dir/build.make content/CMakeFiles/contentplugin_autogen.dir/build -.PHONY : contentplugin_autogen/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -contentplugin_init_autogen_timestamp_deps: content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : contentplugin_init_autogen_timestamp_deps - -# fast build rule for target. -contentplugin_init_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build.make content/CMakeFiles/contentplugin_init_autogen_timestamp_deps.dir/build -.PHONY : contentplugin_init_autogen_timestamp_deps/fast - -# Convenience name for target. -content/CMakeFiles/contentplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : content/CMakeFiles/contentplugin_init_autogen.dir/rule - -# Convenience name for target. -contentplugin_init_autogen: content/CMakeFiles/contentplugin_init_autogen.dir/rule -.PHONY : contentplugin_init_autogen - -# fast build rule for target. -contentplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init_autogen.dir/build.make content/CMakeFiles/contentplugin_init_autogen.dir/build -.PHONY : contentplugin_init_autogen/fast - -.rcc/qmlcache/content_App_qml.o: .rcc/qmlcache/content_App_qml.cpp.o -.PHONY : .rcc/qmlcache/content_App_qml.o - -# target to build an object file -.rcc/qmlcache/content_App_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.o -.PHONY : .rcc/qmlcache/content_App_qml.cpp.o - -.rcc/qmlcache/content_App_qml.i: .rcc/qmlcache/content_App_qml.cpp.i -.PHONY : .rcc/qmlcache/content_App_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_App_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.i -.PHONY : .rcc/qmlcache/content_App_qml.cpp.i - -.rcc/qmlcache/content_App_qml.s: .rcc/qmlcache/content_App_qml.cpp.s -.PHONY : .rcc/qmlcache/content_App_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_App_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_App_qml.cpp.s -.PHONY : .rcc/qmlcache/content_App_qml.cpp.s - -.rcc/qmlcache/content_BMSFaultDetails_qml.o: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.o - -# target to build an object file -.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.o - -.rcc/qmlcache/content_BMSFaultDetails_qml.i: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.i - -.rcc/qmlcache/content_BMSFaultDetails_qml.s: .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BMSFaultDetails_qml.cpp.s - -.rcc/qmlcache/content_BatteryReadout_qml.o: .rcc/qmlcache/content_BatteryReadout_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.o - -# target to build an object file -.rcc/qmlcache/content_BatteryReadout_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.o - -.rcc/qmlcache/content_BatteryReadout_qml.i: .rcc/qmlcache/content_BatteryReadout_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BatteryReadout_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.i - -.rcc/qmlcache/content_BatteryReadout_qml.s: .rcc/qmlcache/content_BatteryReadout_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BatteryReadout_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatteryReadout_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatteryReadout_qml.cpp.s - -.rcc/qmlcache/content_BatterySlider_qml.o: .rcc/qmlcache/content_BatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_BatterySlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.o - -.rcc/qmlcache/content_BatterySlider_qml.i: .rcc/qmlcache/content_BatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BatterySlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.i - -.rcc/qmlcache/content_BatterySlider_qml.s: .rcc/qmlcache/content_BatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BatterySlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BatterySlider_qml.cpp.s - -.rcc/qmlcache/content_BikeStatus_qml.o: .rcc/qmlcache/content_BikeStatus_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.o - -# target to build an object file -.rcc/qmlcache/content_BikeStatus_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.o - -.rcc/qmlcache/content_BikeStatus_qml.i: .rcc/qmlcache/content_BikeStatus_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BikeStatus_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.i - -.rcc/qmlcache/content_BikeStatus_qml.s: .rcc/qmlcache/content_BikeStatus_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BikeStatus_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BikeStatus_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BikeStatus_qml.cpp.s - -.rcc/qmlcache/content_BoltLeanAngle_qml.o: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.o - -# target to build an object file -.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.o - -.rcc/qmlcache/content_BoltLeanAngle_qml.i: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.i - -.rcc/qmlcache/content_BoltLeanAngle_qml.s: .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s -.PHONY : .rcc/qmlcache/content_BoltLeanAngle_qml.cpp.s - -.rcc/qmlcache/content_Debug1_qml.o: .rcc/qmlcache/content_Debug1_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Debug1_qml.o - -# target to build an object file -.rcc/qmlcache/content_Debug1_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.o - -.rcc/qmlcache/content_Debug1_qml.i: .rcc/qmlcache/content_Debug1_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Debug1_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_Debug1_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.i - -.rcc/qmlcache/content_Debug1_qml.s: .rcc/qmlcache/content_Debug1_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Debug1_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_Debug1_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Debug1_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Debug1_qml.cpp.s - -.rcc/qmlcache/content_DebugBMS_qml.o: .rcc/qmlcache/content_DebugBMS_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugBMS_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.o - -.rcc/qmlcache/content_DebugBMS_qml.i: .rcc/qmlcache/content_DebugBMS_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugBMS_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.i - -.rcc/qmlcache/content_DebugBMS_qml.s: .rcc/qmlcache/content_DebugBMS_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugBMS_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugBMS_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugBMS_qml.cpp.s - -.rcc/qmlcache/content_DebugItem1.ui_qml.o: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.o - -.rcc/qmlcache/content_DebugItem1.ui_qml.i: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.i - -.rcc/qmlcache/content_DebugItem1.ui_qml.s: .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugItem1.ui_qml.cpp.s - -.rcc/qmlcache/content_DebugMain_qml.o: .rcc/qmlcache/content_DebugMain_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugMain_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugMain_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.o - -.rcc/qmlcache/content_DebugMain_qml.i: .rcc/qmlcache/content_DebugMain_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugMain_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugMain_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.i - -.rcc/qmlcache/content_DebugMain_qml.s: .rcc/qmlcache/content_DebugMain_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugMain_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugMain_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMain_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugMain_qml.cpp.s - -.rcc/qmlcache/content_DebugMotor_qml.o: .rcc/qmlcache/content_DebugMotor_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugMotor_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.o - -.rcc/qmlcache/content_DebugMotor_qml.i: .rcc/qmlcache/content_DebugMotor_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugMotor_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.i - -.rcc/qmlcache/content_DebugMotor_qml.s: .rcc/qmlcache/content_DebugMotor_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugMotor_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugMotor_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugMotor_qml.cpp.s - -.rcc/qmlcache/content_DebugOverview_qml.o: .rcc/qmlcache/content_DebugOverview_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugOverview_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.o - -.rcc/qmlcache/content_DebugOverview_qml.i: .rcc/qmlcache/content_DebugOverview_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugOverview_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.i - -.rcc/qmlcache/content_DebugOverview_qml.s: .rcc/qmlcache/content_DebugOverview_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugOverview_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugOverview_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugOverview_qml.cpp.s - -.rcc/qmlcache/content_DebugPDU_qml.o: .rcc/qmlcache/content_DebugPDU_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.o - -# target to build an object file -.rcc/qmlcache/content_DebugPDU_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.o -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.o - -.rcc/qmlcache/content_DebugPDU_qml.i: .rcc/qmlcache/content_DebugPDU_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_DebugPDU_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.i -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.i - -.rcc/qmlcache/content_DebugPDU_qml.s: .rcc/qmlcache/content_DebugPDU_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_DebugPDU_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_DebugPDU_qml.cpp.s -.PHONY : .rcc/qmlcache/content_DebugPDU_qml.cpp.s - -.rcc/qmlcache/content_FaultMotorStatus_qml.o: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.o - -# target to build an object file -.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.o - -.rcc/qmlcache/content_FaultMotorStatus_qml.i: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.i - -.rcc/qmlcache/content_FaultMotorStatus_qml.s: .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FaultMotorStatus_qml.cpp.s - -.rcc/qmlcache/content_FullBatterySlider_qml.o: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.o - -.rcc/qmlcache/content_FullBatterySlider_qml.i: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.i - -.rcc/qmlcache/content_FullBatterySlider_qml.s: .rcc/qmlcache/content_FullBatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullBatterySlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FullBatterySlider_qml.cpp.s - -.rcc/qmlcache/content_FullSlider_qml.o: .rcc/qmlcache/content_FullSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FullSlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_FullSlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.o - -.rcc/qmlcache/content_FullSlider_qml.i: .rcc/qmlcache/content_FullSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FullSlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_FullSlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.i - -.rcc/qmlcache/content_FullSlider_qml.s: .rcc/qmlcache/content_FullSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FullSlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_FullSlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_FullSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_FullSlider_qml.cpp.s - -.rcc/qmlcache/content_Screen01.ui_qml.o: .rcc/qmlcache/content_Screen01.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.o - -# target to build an object file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.o - -.rcc/qmlcache/content_Screen01.ui_qml.i: .rcc/qmlcache/content_Screen01.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.i - -.rcc/qmlcache/content_Screen01.ui_qml.s: .rcc/qmlcache/content_Screen01.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_Screen01.ui_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Screen01.ui_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Screen01.ui_qml.cpp.s - -.rcc/qmlcache/content_SpeedometerDecorations_qml.o: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.o - -# target to build an object file -.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.o - -.rcc/qmlcache/content_SpeedometerDecorations_qml.i: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.i - -.rcc/qmlcache/content_SpeedometerDecorations_qml.s: .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s -.PHONY : .rcc/qmlcache/content_SpeedometerDecorations_qml.cpp.s - -.rcc/qmlcache/content_Speedometer_qml.o: .rcc/qmlcache/content_Speedometer_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Speedometer_qml.o - -# target to build an object file -.rcc/qmlcache/content_Speedometer_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.o -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.o - -.rcc/qmlcache/content_Speedometer_qml.i: .rcc/qmlcache/content_Speedometer_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Speedometer_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_Speedometer_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.i -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.i - -.rcc/qmlcache/content_Speedometer_qml.s: .rcc/qmlcache/content_Speedometer_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Speedometer_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_Speedometer_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_Speedometer_qml.cpp.s -.PHONY : .rcc/qmlcache/content_Speedometer_qml.cpp.s - -.rcc/qmlcache/content_TempSlider_qml.o: .rcc/qmlcache/content_TempSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TempSlider_qml.o - -# target to build an object file -.rcc/qmlcache/content_TempSlider_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.o - -.rcc/qmlcache/content_TempSlider_qml.i: .rcc/qmlcache/content_TempSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TempSlider_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_TempSlider_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.i - -.rcc/qmlcache/content_TempSlider_qml.s: .rcc/qmlcache/content_TempSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TempSlider_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_TempSlider_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TempSlider_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TempSlider_qml.cpp.s - -.rcc/qmlcache/content_TemperatureIsland_qml.o: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.o - -# target to build an object file -.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.o -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.o - -.rcc/qmlcache/content_TemperatureIsland_qml.i: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.i - -# target to preprocess a source file -.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.i -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.i - -.rcc/qmlcache/content_TemperatureIsland_qml.s: .rcc/qmlcache/content_TemperatureIsland_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_TemperatureIsland_qml.cpp.s -.PHONY : .rcc/qmlcache/content_TemperatureIsland_qml.cpp.s - -.rcc/qmlcache/content_qmlcache_loader.o: .rcc/qmlcache/content_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/content_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/content_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.o - -.rcc/qmlcache/content_qmlcache_loader.i: .rcc/qmlcache/content_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/content_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/content_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.i - -.rcc/qmlcache/content_qmlcache_loader.s: .rcc/qmlcache/content_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/content_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/content_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qmlcache/content_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/content_qmlcache_loader.cpp.s - -.rcc/qrc_content_raw_qml_0.o: .rcc/qrc_content_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0.o - -# target to build an object file -.rcc/qrc_content_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.o - -.rcc/qrc_content_raw_qml_0.i: .rcc/qrc_content_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_content_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.i - -.rcc/qrc_content_raw_qml_0.s: .rcc/qrc_content_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_content_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_content_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0.cpp.s - -.rcc/qrc_content_raw_qml_0_init.o: .rcc/qrc_content_raw_qml_0_init.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0_init.o - -# target to build an object file -.rcc/qrc_content_raw_qml_0_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.o -.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.o - -.rcc/qrc_content_raw_qml_0_init.i: .rcc/qrc_content_raw_qml_0_init.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0_init.i - -# target to preprocess a source file -.rcc/qrc_content_raw_qml_0_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.i -.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.i - -.rcc/qrc_content_raw_qml_0_init.s: .rcc/qrc_content_raw_qml_0_init.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0_init.s - -# target to generate assembly for a file -.rcc/qrc_content_raw_qml_0_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_2.dir/build.make content/CMakeFiles/content_resources_2.dir/.rcc/qrc_content_raw_qml_0_init.cpp.s -.PHONY : .rcc/qrc_content_raw_qml_0_init.cpp.s - -.rcc/qrc_qmake_content.o: .rcc/qrc_qmake_content.cpp.o -.PHONY : .rcc/qrc_qmake_content.o - -# target to build an object file -.rcc/qrc_qmake_content.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.o -.PHONY : .rcc/qrc_qmake_content.cpp.o - -.rcc/qrc_qmake_content.i: .rcc/qrc_qmake_content.cpp.i -.PHONY : .rcc/qrc_qmake_content.i - -# target to preprocess a source file -.rcc/qrc_qmake_content.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.i -.PHONY : .rcc/qrc_qmake_content.cpp.i - -.rcc/qrc_qmake_content.s: .rcc/qrc_qmake_content.cpp.s -.PHONY : .rcc/qrc_qmake_content.s - -# target to generate assembly for a file -.rcc/qrc_qmake_content.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/.rcc/qrc_qmake_content.cpp.s -.PHONY : .rcc/qrc_qmake_content.cpp.s - -.rcc/qrc_qmake_content_init.o: .rcc/qrc_qmake_content_init.cpp.o -.PHONY : .rcc/qrc_qmake_content_init.o - -# target to build an object file -.rcc/qrc_qmake_content_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.o -.PHONY : .rcc/qrc_qmake_content_init.cpp.o - -.rcc/qrc_qmake_content_init.i: .rcc/qrc_qmake_content_init.cpp.i -.PHONY : .rcc/qrc_qmake_content_init.i - -# target to preprocess a source file -.rcc/qrc_qmake_content_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.i -.PHONY : .rcc/qrc_qmake_content_init.cpp.i - -.rcc/qrc_qmake_content_init.s: .rcc/qrc_qmake_content_init.cpp.s -.PHONY : .rcc/qrc_qmake_content_init.s - -# target to generate assembly for a file -.rcc/qrc_qmake_content_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content_resources_1.dir/build.make content/CMakeFiles/content_resources_1.dir/.rcc/qrc_qmake_content_init.cpp.s -.PHONY : .rcc/qrc_qmake_content_init.cpp.s - -content_autogen/mocs_compilation.o: content_autogen/mocs_compilation.cpp.o -.PHONY : content_autogen/mocs_compilation.o - -# target to build an object file -content_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.o -.PHONY : content_autogen/mocs_compilation.cpp.o - -content_autogen/mocs_compilation.i: content_autogen/mocs_compilation.cpp.i -.PHONY : content_autogen/mocs_compilation.i - -# target to preprocess a source file -content_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.i -.PHONY : content_autogen/mocs_compilation.cpp.i - -content_autogen/mocs_compilation.s: content_autogen/mocs_compilation.cpp.s -.PHONY : content_autogen/mocs_compilation.s - -# target to generate assembly for a file -content_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_autogen/mocs_compilation.cpp.s -.PHONY : content_autogen/mocs_compilation.cpp.s - -content_qmltyperegistrations.o: content_qmltyperegistrations.cpp.o -.PHONY : content_qmltyperegistrations.o - -# target to build an object file -content_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.o -.PHONY : content_qmltyperegistrations.cpp.o - -content_qmltyperegistrations.i: content_qmltyperegistrations.cpp.i -.PHONY : content_qmltyperegistrations.i - -# target to preprocess a source file -content_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.i -.PHONY : content_qmltyperegistrations.cpp.i - -content_qmltyperegistrations.s: content_qmltyperegistrations.cpp.s -.PHONY : content_qmltyperegistrations.s - -# target to generate assembly for a file -content_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/content.dir/build.make content/CMakeFiles/content.dir/content_qmltyperegistrations.cpp.s -.PHONY : content_qmltyperegistrations.cpp.s - -contentplugin_autogen/mocs_compilation.o: contentplugin_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_autogen/mocs_compilation.o - -# target to build an object file -contentplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_autogen/mocs_compilation.cpp.o - -contentplugin_autogen/mocs_compilation.i: contentplugin_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -contentplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_autogen/mocs_compilation.cpp.i - -contentplugin_autogen/mocs_compilation.s: contentplugin_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -contentplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_autogen/mocs_compilation.cpp.s - -contentplugin_contentPlugin.o: contentplugin_contentPlugin.cpp.o -.PHONY : contentplugin_contentPlugin.o - -# target to build an object file -contentplugin_contentPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.o -.PHONY : contentplugin_contentPlugin.cpp.o - -contentplugin_contentPlugin.i: contentplugin_contentPlugin.cpp.i -.PHONY : contentplugin_contentPlugin.i - -# target to preprocess a source file -contentplugin_contentPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.i -.PHONY : contentplugin_contentPlugin.cpp.i - -contentplugin_contentPlugin.s: contentplugin_contentPlugin.cpp.s -.PHONY : contentplugin_contentPlugin.s - -# target to generate assembly for a file -contentplugin_contentPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin.dir/build.make content/CMakeFiles/contentplugin.dir/contentplugin_contentPlugin.cpp.s -.PHONY : contentplugin_contentPlugin.cpp.s - -contentplugin_init.o: contentplugin_init.cpp.o -.PHONY : contentplugin_init.o - -# target to build an object file -contentplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.o -.PHONY : contentplugin_init.cpp.o - -contentplugin_init.i: contentplugin_init.cpp.i -.PHONY : contentplugin_init.i - -# target to preprocess a source file -contentplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.i -.PHONY : contentplugin_init.cpp.i - -contentplugin_init.s: contentplugin_init.cpp.s -.PHONY : contentplugin_init.s - -# target to generate assembly for a file -contentplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init.cpp.s -.PHONY : contentplugin_init.cpp.s - -contentplugin_init_autogen/mocs_compilation.o: contentplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_init_autogen/mocs_compilation.o - -# target to build an object file -contentplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.o - -contentplugin_init_autogen/mocs_compilation.i: contentplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -contentplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.i - -contentplugin_init_autogen/mocs_compilation.s: contentplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -contentplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f content/CMakeFiles/contentplugin_init.dir/build.make content/CMakeFiles/contentplugin_init.dir/contentplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : contentplugin_init_autogen/mocs_compilation.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... content_autogen" - @echo "... content_autogen_timestamp_deps" - @echo "... content_qmllint" - @echo "... content_qmllint_json" - @echo "... content_qmllint_module" - @echo "... content_qmltyperegistration" - @echo "... contentplugin_autogen" - @echo "... contentplugin_autogen_timestamp_deps" - @echo "... contentplugin_init_autogen" - @echo "... contentplugin_init_autogen_timestamp_deps" - @echo "... content" - @echo "... content_resources_1" - @echo "... content_resources_2" - @echo "... content_tooling" - @echo "... contentplugin" - @echo "... contentplugin_init" - @echo "... .rcc/qmlcache/content_App_qml.o" - @echo "... .rcc/qmlcache/content_App_qml.i" - @echo "... .rcc/qmlcache/content_App_qml.s" - @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.o" - @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.i" - @echo "... .rcc/qmlcache/content_BMSFaultDetails_qml.s" - @echo "... .rcc/qmlcache/content_BatteryReadout_qml.o" - @echo "... .rcc/qmlcache/content_BatteryReadout_qml.i" - @echo "... .rcc/qmlcache/content_BatteryReadout_qml.s" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.o" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.i" - @echo "... .rcc/qmlcache/content_BatterySlider_qml.s" - @echo "... .rcc/qmlcache/content_BikeStatus_qml.o" - @echo "... .rcc/qmlcache/content_BikeStatus_qml.i" - @echo "... .rcc/qmlcache/content_BikeStatus_qml.s" - @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.o" - @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.i" - @echo "... .rcc/qmlcache/content_BoltLeanAngle_qml.s" - @echo "... .rcc/qmlcache/content_Debug1_qml.o" - @echo "... .rcc/qmlcache/content_Debug1_qml.i" - @echo "... .rcc/qmlcache/content_Debug1_qml.s" - @echo "... .rcc/qmlcache/content_DebugBMS_qml.o" - @echo "... .rcc/qmlcache/content_DebugBMS_qml.i" - @echo "... .rcc/qmlcache/content_DebugBMS_qml.s" - @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.o" - @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.i" - @echo "... .rcc/qmlcache/content_DebugItem1.ui_qml.s" - @echo "... .rcc/qmlcache/content_DebugMain_qml.o" - @echo "... .rcc/qmlcache/content_DebugMain_qml.i" - @echo "... .rcc/qmlcache/content_DebugMain_qml.s" - @echo "... .rcc/qmlcache/content_DebugMotor_qml.o" - @echo "... .rcc/qmlcache/content_DebugMotor_qml.i" - @echo "... .rcc/qmlcache/content_DebugMotor_qml.s" - @echo "... .rcc/qmlcache/content_DebugOverview_qml.o" - @echo "... .rcc/qmlcache/content_DebugOverview_qml.i" - @echo "... .rcc/qmlcache/content_DebugOverview_qml.s" - @echo "... .rcc/qmlcache/content_DebugPDU_qml.o" - @echo "... .rcc/qmlcache/content_DebugPDU_qml.i" - @echo "... .rcc/qmlcache/content_DebugPDU_qml.s" - @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.o" - @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.i" - @echo "... .rcc/qmlcache/content_FaultMotorStatus_qml.s" - @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.o" - @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.i" - @echo "... .rcc/qmlcache/content_FullBatterySlider_qml.s" - @echo "... .rcc/qmlcache/content_FullSlider_qml.o" - @echo "... .rcc/qmlcache/content_FullSlider_qml.i" - @echo "... .rcc/qmlcache/content_FullSlider_qml.s" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.o" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.i" - @echo "... .rcc/qmlcache/content_Screen01.ui_qml.s" - @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.o" - @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.i" - @echo "... .rcc/qmlcache/content_SpeedometerDecorations_qml.s" - @echo "... .rcc/qmlcache/content_Speedometer_qml.o" - @echo "... .rcc/qmlcache/content_Speedometer_qml.i" - @echo "... .rcc/qmlcache/content_Speedometer_qml.s" - @echo "... .rcc/qmlcache/content_TempSlider_qml.o" - @echo "... .rcc/qmlcache/content_TempSlider_qml.i" - @echo "... .rcc/qmlcache/content_TempSlider_qml.s" - @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.o" - @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.i" - @echo "... .rcc/qmlcache/content_TemperatureIsland_qml.s" - @echo "... .rcc/qmlcache/content_qmlcache_loader.o" - @echo "... .rcc/qmlcache/content_qmlcache_loader.i" - @echo "... .rcc/qmlcache/content_qmlcache_loader.s" - @echo "... .rcc/qrc_content_raw_qml_0.o" - @echo "... .rcc/qrc_content_raw_qml_0.i" - @echo "... .rcc/qrc_content_raw_qml_0.s" - @echo "... .rcc/qrc_content_raw_qml_0_init.o" - @echo "... .rcc/qrc_content_raw_qml_0_init.i" - @echo "... .rcc/qrc_content_raw_qml_0_init.s" - @echo "... .rcc/qrc_qmake_content.o" - @echo "... .rcc/qrc_qmake_content.i" - @echo "... .rcc/qrc_qmake_content.s" - @echo "... .rcc/qrc_qmake_content_init.o" - @echo "... .rcc/qrc_qmake_content_init.i" - @echo "... .rcc/qrc_qmake_content_init.s" - @echo "... content_autogen/mocs_compilation.o" - @echo "... content_autogen/mocs_compilation.i" - @echo "... content_autogen/mocs_compilation.s" - @echo "... content_qmltyperegistrations.o" - @echo "... content_qmltyperegistrations.i" - @echo "... content_qmltyperegistrations.s" - @echo "... contentplugin_autogen/mocs_compilation.o" - @echo "... contentplugin_autogen/mocs_compilation.i" - @echo "... contentplugin_autogen/mocs_compilation.s" - @echo "... contentplugin_contentPlugin.o" - @echo "... contentplugin_contentPlugin.i" - @echo "... contentplugin_contentPlugin.s" - @echo "... contentplugin_init.o" - @echo "... contentplugin_init.i" - @echo "... contentplugin_init.s" - @echo "... contentplugin_init_autogen/mocs_compilation.o" - @echo "... contentplugin_init_autogen/mocs_compilation.i" - @echo "... contentplugin_init_autogen/mocs_compilation.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/content/Pictures/Virginia_Tech_Hokies_logo.svg b/build/content/Pictures/Virginia_Tech_Hokies_logo.svg deleted file mode 100644 index 024f390..0000000 --- a/build/content/Pictures/Virginia_Tech_Hokies_logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/build/content/Pictures/battery-twotone-0-svgrepo-com.svg b/build/content/Pictures/battery-twotone-0-svgrepo-com.svg deleted file mode 100644 index 71a49e1..0000000 --- a/build/content/Pictures/battery-twotone-0-svgrepo-com.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/build/content/Pictures/battery.svg b/build/content/Pictures/battery.svg deleted file mode 100644 index 567f0a4..0000000 --- a/build/content/Pictures/battery.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/build/content/Pictures/battery_temp.svg b/build/content/Pictures/battery_temp.svg deleted file mode 100644 index 7c63355..0000000 --- a/build/content/Pictures/battery_temp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/build/content/Pictures/controller_temp.svg b/build/content/Pictures/controller_temp.svg deleted file mode 100644 index 3efeac5..0000000 --- a/build/content/Pictures/controller_temp.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/build/content/Pictures/leanAngleBack.png b/build/content/Pictures/leanAngleBack.png deleted file mode 100644 index 4be20aed8569d460f64f1f576535d7861bdcbec6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 55425 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 - - - - - - - - - - - \ No newline at end of file diff --git a/build/content/Pictures/motorcycleIcon.png b/build/content/Pictures/motorcycleIcon.png deleted file mode 100644 index 5a3a0046d5692b20ddb8eb896f105c259640fd2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 19552 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 z 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�W7XA}YRKlb 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

mSc*%?Yw>=%1a$_Ib1As7#;P8_gze*erZ> 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

YMXG{sy~bARDOujo zoa$fEwr6@-V|#ef(6twAe1(LTpO=npEo>@G`uujY!5+2rn>M_kuVjGJRgoIhT&{C_ zot1j8vBVavbr;PZQOVkilT?r@;THZNR-BQbQ&N%D#b+}X`V0x6R-l5M>Cv#7f)JRW zV7JP;RBrrMW{JthO^yg=B+Zh95fniZsw<<_w&scyxt<=G5l;pJT)&ZHtf_ENcFqKY z*Y6zDSf%xPD(XflyQ_urP^iRN9-H`JiDk?vrLv{^g`M30sC|VUj?!{^$163dq}@mc zwT#u&g&hU`w$^pGlyQ2vHPF?Lb$I-(0r2$WE#YdvgT8fPxkInBmG|F13Sn%CKM5x7zhLh zG>;iQb#7hi?8Tcdx%RqC*L5$ct&68B-dMBts>{}{SvW79?pt06<(XM|_A=3~7Q_R2 zn2l2y570Z0#x@$LXUVK)%4r}QAlbiU3(srCHWP7EoJa}F*nC!tAT?n-cLS;iM;LZJoGcui}3A8u7tSwYifg0{m0awOP+)O%E|r$FFkT5e1WG+V8F7A zTtTP&ksr(t>DkZ54v}QjzbdBh1OF9rJCa|H0H)La$PZ!3#SDbJNI&Nl(sMA@&_2vh z1gr|;jP1v@K0D#dFDE?v%!Dt517A#d2DEvR{tam_IF%M5nGhQpahbMf(+abY`a~m3 z&1mVQ`}zISsnFMfZw{uPi}0->7Tg8Bpc*n-Tw$w$XDn#248G&>W2@x%U$f`j5p$Et zd2Q$Jxu$$hzm`#>TKdg7xPIgFZ*5+%uIrMwpTGE`QENZkzRvDgx9!8Vqr`e2rw{RO zNf$^8P*#lDrNSwlSOA+6dW&S|Ol*333uPzRrT!5+1O$`i=wr`zH#|E-gK) zqksPccf34$-6uOPa@ty2c7A-(==H7rUwn5{RrUG>TmJfD>wql1J4mT;A^#a<53;>* z(#Q1g!vreEq*Az$-tj4sW%S%X=tT9W3E2>!9QRHZ7n(uS3+N@BaDJj2Tb;6Sxf{31PF) z4_Xbfy-B9iEMdcwDZ+@6v&0z~%K6|@GSl%!4orMBins}YcO=X-#3pQp%OCo>#$=2K zwQ#irpT%1eI+HE?Q z$$;lB{Z_3BE=3JSyb~eoL>fK{8e%8XOGD=20yG?y(Q*HT>h_D=t2J8p``e9zl_0U1H}a?5ughhLpNjNXDIMOF$oz%^<1tYl(mB@>JlS)|Ywx}H=(uq^5()n9S?^4p_RcJFFCBO4 zkHKesY$N*e4}I$^qS=Q&CB$=gjy{}Z2I&@-;VcTXAgt55*mQ8VXjgKahV0I4UqV14jwv$!`c1xepU`AIiLJq7%xP6^ND9s7~2Gq&+rsCmOAKD{JT9-?&#A`gVFgE zeTwBH$QMAqC&lv}_?oCP1_0^)MNIp5@(Qh>6)atfY(qQrgAST(ua>1V8}la}M)hj8 zonoJqPV06B5XrHN5k7NmBoJ`9wL0z%(uGU6Q?I>>K1v_GN~?Fe1A#0KDJW^&0Gl@k z+ooc$bDP)79BA}>e5}6(`-fkF41Gp2n#lNzgpW?AJ^Cg$mziELH$9w*9Dv=7nVPe8 zTnapx2MWv~A}y+I@EeTg=RR4?y5{0c2Y>0R&u7p6d=+6s8`Pdl772?5@Jq0oDjwFT zvinbD307l?i(BEC78{ltHjVMZrhxPETi1QCD-O}Lx5d=^VM&YeS9+ap4%#E8p z_`1w53-y@{_sA^r(s{Eo_iQ8IG4!t3N%!w?KcB~t)pw@kE#Ykbo*Z10LBV{+n5%>F zYJ|+-!|@;thF~%jok`x)&n6%4XqlXOn>?F&`y#HOa~bXAZaUw7K0SIqefDy~zk2zJ z6Ab1W$-BZ>VFYxyjKGz-^#IIh9J3OL2tzAgq@t0#qMj}rPF@;AmJX+v&mXTmZYfEKH+5yWg#ZAs5`EfIDMH3jr*5btl=@ zPP;p)p`AQfMh)b9(nj|QjdaB>y5b_var;ra@FLO%Upt(nl8h8?h94FU<_Xx)8AO_z z<5?ubaS#Cpgd(oDpUrI?OO{6Iv%3R4UJ24{JMz`Vr z>JxuljrA|h;-eG9%laRoS-1~eJ=tEXl#MU8t;Yf9^et(QBO%t{cY)N zG!_fB4Vuz9Z#M2KgX9agW8?3tOAU?1V&S$Sot<5?r;Hl`&$qa%Xt;=UlkRm)_A?Rm zTFqN?bGIHb&O+dWCm;a=|GT)TFdhvD{a%w+10xqO&lvw(UYUlo+f#qlakNx!5|(2F z5Qk&jQ-7RddC{`9%M;7jEiV%P#&0C+HWJ(UTeqH1zurjKkp~mYioA*C2~W}TA}{_p z>%F;uwa-6)@RBK0FFE);k>nmRd(m#m<5=Hs%dG~gM=d6uRwKr07u_ebgCgY2Y(o;Q zMu*?CLl*Adn5x}*xP-1EouAV?F|kY{SM01!ZR`%o@EB%ryUE1T&*@#CG58(i2-br| zx%Ec%s7_pJm~CvXmetarJeWqc`Rz;BuU~pnf;Huy9d!JT9r)oMf9R6IgD-igrf$az zEH)`GS&4o=1-9_n)l2m#bcJ+k5#KmF$gv|%Tn<-fP?-voN`AwR+G-#s-2r^xB$Mb} zrJs{YpYwm(DGRNQi!>Kd9xgst=^r$5*Vzt?m-Gm4HSVqPy)wDexG!h`r9S_e__ zxk48=RLo40}wI*7v)w>*# zKr|YNI9z%yIRr%~8?@=k5Vgj04mW?qWg`aqbWm=y_}ucr1c*5~WJQDVhNj9Iq8IJ0IviOJA)ub*Fu351$RaZAOVEV}oJw<=O zYo~X)5ilwo4|%;>mX}PlL0?T{|C!VJ>)0+Ug?;A@{5M#Oi{PJ5^=M0N)Q12Upe33z zyAJ1xClXWi$BA~XuwzG?=an%rNp3SLz7kKqc0{M!|Is~@nFB=V_w~B=&J0m&EjG8S zpPMMS?U|WBx%;{NCYzc&(3>Rd{adT)yqA8*2}Ao$JYdr^r}ip6^vN9XgReI%YjpX{ zXfpMjg2ZfsBs*aI1KZ+mz*W+;~#*oLkZ^bc-SOob1mzv z_+)2A)P*@gV%0#1(R^jtW-xc{t#-H!fj}67^zy=snJa{gizgKp21-nJSW6D{VfU=} zjr#MSM~PS5PJd~o!3$sGCfC@;#<8$Falj&=)E@{(3JarQ|1(pkKI0EZ3kxG*Oxfr! zG4e;@Uj9zWT#UPh0`z5w#Ub#^Qkc14f+R4jw8T7mi5*;gjjn@30moj$CoKX#iggN# zQ$6#2jgJ^AgFR+mYjI={lOO?J3-?N;&+uRuBRm28pxT%>RRM*<6*nBA@Q3h$}RYbN=pObT5;VJN~BAn9kwB1k!&w`JdJWpe%*DfgI81Ly*LPzzFx zoL9CZ#EA%(=LCcwxEv~skVmM%q<&0lz@J`?G8qb-@^TiT006TYkdv2d@DdRg060sp zxuDlSAj6jJopJhk2~GHahhR8k*@b(dKT4kv5ZWh8v%wGn0~cDyg$Udz)BV^b=Z?LqD=QF(#BCq={uwuV#?4S0hOK|8~bQLlP5 zg0L9O;kOv`0TL3{LD20>2@`vgFuTPe4{a=JU*Hli8Q96@7khzij$JipRN~J9ti?jQjfZe3yrq}eFyV|&Qr8^$;tlVPkUf4iaCKFXv zgXhlma+|!~xpN0sRws(Ek5AJ*{PnUpr0B567w66diAVUDMC99oTb6tbNp_yY<$^80RknUJ^3FCEq1qsB>XEF$@eYc>rFQ)DYac^P&|sz;euU5@$3P)Zr2 z3rD9PsfKFF5A<5@2)%|Z$dt-fo_P1fYeF$!o>BDd;IsH{qW|QF$xI?&3d+BXPl7W? zm~0|okAHzLZatHd_M8nG{z_WLu;Yi(FYWr#v1& zfWSxgGWa#V0{te(r(uo}axM=c%>w%v_uPBCj~(0nfr|8b9hx$sx(9K!ufWRVsvS7rer?c{gQA_GczsmHoK}TN=sOji(mj& zO*Vw|(5Y1rU`RALctV-9vf7Mq_6HqS7Oo!Zrs&wcPr+cV&OT@F@P}{V(4RY3;NOq; zU%&7B@h>dLKjFC*o!8^``ti%xyu7@V47vY)GIH|FkG{t21&!g%&<`SS5E zWc!UoGDSE79ys%9Dv@9>jNpG2jU4nagls@hQ9qIU{KThs&YE@Sr`aD`{{9n-7eB$i zq$RWOIC}i(9ka7P%N9TW!Q+eB7utU(Z3FB#a2|_G>YCFE!bwRpW)Tk750k)Sl)=-e zM51ZIw4p^@L|$lz15%^VA6v*c+~5TxVOLOLDS~Q5g}_|Tv0Vkicb5?8g6BEGP`x&S zTg(Dc?j*PVL}a&JJ~Eved+4uwMw~zU>11)|V;|npIqA^*zuR%mWj^T-AG~_y6IM$) zeHZN_t8bf{S+u6H@y3M<1&NPoJH9($bV2nXc~{iM!2{`_cX zaZ(!Z`Ia{y|Eu&37C-X1{h0*|Z)|L2B1h0K3dZDpz=LDfX3b%cNrHGl+43>Jj{?c` zBJoInCdW2P%|%go^uhTHA=xXr1#iHu{-|R#ePk)8UVLN^*V8jb`UX9pY(yPVRbdEV z%Owb5fP2L2;3l9{RE_7gJOgMDOhsmB!&u=@_|ik%j~UG&pn2mxnOdZO2KimW4CD_r z`=MV=KqP(wPy|L2jE4UBmP_OeDsjj#t+ zp^wxyr@UevJ%nqN61;Agp|<)KEINd52Vz#fzeWuw<`Jt&9oNJKUZNtfjl{;(n%Bf< zfq{$$Y)=uXHip={sk9Y42zE}aG#Yqm%arjWMhs4DS+#cUMNdEa`~_>)bY0(4-qtp9 zE`R8EnK4~cKYV}o?a9yh zhh!G)722EC;C*tu0z~ARhd*c@J+T=UwAtRQYr#WFJ8H#f;%;{Jd4WglEoleUtfc>> zM}pC4*nmb1hO4ulQL!yxecPB5x?7~*z31IkYeSJI zOA>Ft%w0CW{kr>^Fo~C33cZ9O!ueozgh-(th;42=O1HBPl&5XX zVg}zGy;u^GS!@-lDhceIxd3M%h5$w!HbCO3CB^;Wl4(;m&7dpDt3Urli+|#JGSACw z!6_RzP4-!3qkE!57N=i>3C@BbYG+zL+SIAChi-)3+ts` zl4y>jH*sK{%>(A};3Z5z3c`(G)ENUMBQgk{szlO|N~0w^s6ZCXl-#QB`OB03{$<_W zTz6*uxr-;J#`DY9g9NCSg1eD_QOfwTu4X&#S@rR?0EEEo&AK>`z6n>|7%^Pe`xn!1 zZ=l~^%$?vq>vaA`+#y+UqutRzDzx^DRcOMkPu6-oGiKb@*3y5<`2HRJxOz&D z|B>8Zj6e+KaO1)1!%5yj=lEIrJ?I>fG&MJXUBlU6<;OM4@J+C}L=*60&#<(BH_aF` zV%HVGuNERg#N{v>k(oEj_2LSa#>|UjPbm>y^@>5vnO!Te#yO8k1$q7uP92JP>BP<< zAMT(3^t73KM=jn^S=-rJ1D&!f&aY~)I;%^^kH56-mIF1lPYxKgbW-`W>Ph3*&%GY_ z5;zm&?~qPJk#d}&b9*6}H-y<9kR_EIp=B?!-O!(8pM6vBLjx`do$o zfiQQ#l!gFmYQhDp9{nQUK_cOwl}8?tXRx0>ov$v$bAj60u3T$7M$ zGx-NgMql2{`t~V!|4Z7;wf}kAo;hcvWq1l4_V!V>CRUPtf%GVL zgL!?4N+ysGL(I;#)&10V`NAvPq(|Q$upu*!yLZC?5$6u>TIBhtPo6Ln%vVB;&s|dY zueK`}Uf#xCi#*)DnQ>wsjw|49=KT^H<(G1mNdZfL;@d_GI!3*Cg19!|<49{teg_RJwFLiy9AxA9f2!mrW4oUmU1XuALP-tI$G!SA%HX z{>Jv}hKJSkX9!x1!K+>x*nP`GGq!(q)3}$e(iBZ@+b;_Y_}#{7{m5Y}?`tZ$;EtK~ zR}JDT>GFF#w(^02NO`=UT=x2Xt6$tcvt-JxZ(XqGC_l3z>~CFos4vb&NwY)}smP)n z0)4Y<(|?0F`L^fNt!o#}pR#7gtVL^J1NUDbzi0E&b?0txYTAD8hNFV@zr^XKRLGcvEX#C$` zOBOC#qvIdbuU#~2=9;;e{TEpCckev6wR~XNxjUPip(6F4AkN0=EcE39@RDM%o*V|; zG2Afpbey%3lyGt828=yHn6};rOtVQmVuoaKJVYP2V6zsBvrRg-J;tiaUMXN0GzEt0ot5RKZAm}pPXw%m=E^!pCgLqD^m-GC zS5_xVSN;B+ilQ41FMVn`@r6-6HbWxr=Mm{h#B7lek(r2*3avZLEzsiWy@qpbY|>!) z$&S^iasbR#wiPv*p|TjRYUCL&7Mw`-5Cd8K7LKU;pJf@*uVz))=nDm=mifI6Roc3{ zjWRRbX(O(St$x?cLVw}lTd3;xVXCpbm^H&7cd*%6BJrZ`OQ1_uDb7~e`G{4NwHe!% ziWen9c6##h(Ok>oO#~;N7*0OI`1vmk) z^9Ns|s6G}WlBS}frXpTZ8V!~?tzL_9kh82T>etnps#`m+Jn-_%9e@1s)3a}C5Br9t z(<4XJ)C?WbIJv25GH_&bY6b9|2-}WMw30Oho<+mo<6i^aS&v;rp5! zfBjqQrrf%;k)Kx;_YPX}y4@Qa*Fg8wmR~uwdhwWY?!MO^+Idp)hcK};4Ah(SQ)+4^ zI_$%0$wf6o{IN2N$%ksA?q6pfSHN{E}`?b%L9 z$w#yxbuIVI$6R%&=L0%jn6x`C{K)rwdvE10uZlQyW*!q(0S6aO#}e#B#B&$=IP56E z+Gea9QOsop`yxno(w8STpMT%<(&X1d8EXWGq_LS{uaa-y zK1v^OzWFg3=i&D}EWCc=WBTriBp=FrO@9<#?|GMFzI@TgDUUjD0`>f`0hgFVYzksE zU=0sO2=h(A9hR9z zY_lH{WL+n&5f*fD2T#m8ORANsmol7w$l)XhP64UJK!l(Mnm~2jvdm6|@_9x6!Q*u6 z@g%(r+RuIA+R;X-h>J6*xJW!~6I`6tqJmG0V^5QTpYIwua@XhdiKmY}MFxJcYvkI0 z(Di@MJT~|pa6MuqNeZD^7$^L@Lx#Ky!>hm2*RFh=ZlZV5_b_cRoK6C#4^ThgL~=L@ z??YkfU}h(`jMR~e(~vqvH{e8K5fx`}aglVTOi%$Q7m?Wc_nxLtWRW5RffRj0M2f8W zkC7rLzsS)Evm9?EPT}j!eX0tP*r&=zFJ>Yn;mC=uTH)HvV=Bk7FS9hePxu=3L0)1c z!q+Ek`OK%~#o!^rwY4X@@;Q^&hCufwK&;0A< z=5w-gf5_Y+ysFSkp2dxhtuk0>AjbQ=IzFB< z8LPOoPrwGGkxQrSF`ZO27{Gl+qZA>Ln3I4;k_ISdM}XC!Q9v>upGsq%#0mhbt$Z1{ zMiAW;4jewN+?L`$QluSa?yy726^2Z@s5j)Y%cVAOWHoY?!{D`)H^=6c8RFqYBw^IK z?6A7TX5Fq2m#TF^cfjMC$#7w?zf9!k-ZrGX zL}@Lpso=Z?2{&)nmbZ*gS^|1!$m%d*_hvWiUtlfwGuAu5k=WHZL+ETvK&fg>L?n z@vp<)*C^oy4H9MC|!v$@&<)L%W zp>L(qIBv1dfy8*=<0>JYE)y3obj32(6*<5_nYOeHn_31By_5aebDdERBb8i#WV>Hr zXlrEMmTed1vRE~gZN04LL|f!A2SqB10;`vuw;ttOGO$&d@&vRFpnMy zQyy6T=%j#%jO@dJGpyxIv77 z)5B2>9BSdbY%#e^Zmok0*VOne(V*MFaY}>77>c+G)oQf75DS{T0hiw$Hm=_kfR3YG zq4W4!TLv`OrmdxVZ6L02`2h&ttEA!jpdw~;nHAbdIkbzhi|Ou<@x>8UxvR(%bgBx% zCgb1|jZ-FL9<#K`dhn@bFI(1MjlbJM#6AP!x2wtQ1xcsglx?hYp z#OkcP&FEBXn}P_yDMxg2mDOm|+LU&=`u}6^P2k(8?)_1n*)>{58jUm_Tb8WFS}ZTJ zWLb`v*l`>OI|~WfNkU8(APWr*P z(#^4)8Fq`|`1xmIzUSf0naPPl*n{wM0X>pU#X>CPwe$wV(nC_P8M$aJQ{eovrZj`B zZ;mH`@HiQE{4y_JT9<@=AfRO3(I!rAv_j`BKLrI+#DKt}7&Z_!tIp(&aK5fp7_3U^ zxexSulAnK$fcdideywz05=6svJ(b^r?;+${R?0LErl%;;TwZ1vh;7%J>xn`iKHpB=LXbW>vRn>~IWCZcUnYX?^22&I0 z<C$Uk5KsA$)wq@9l}0suEDsNS&+kIxNmrO;(a2jYCW|%{Zr|QwVJ}iRbIiDEQa;O1-tYtK!e}mZRPHmh!smPgeBW)HKI1I$r4CHF@Qq5 zKnoR%kU$jfAsx5}_TyNqv}n0bDf8$5MKAxKKrfgd{{j5+(;9xk%Op%dC<5=%>^4jE zYI*SYC=xz+;go=pCJ^!d&TALxwR0I*i8{!M$_ZIOCSW*Fo+_gN%%+sd7RiPW^Pya% zsR%R#f(CUX5-j1k3z3+Y3RV@k)+WYxJVM<@z7 z6r|Hkp^PHoiT_0~|Fa0j>n8*QD)N63%>O|MW{oR7^)h(r-Hg7?fRDMA=eYGr(7?%UUI$c zdd2ms>vh+gu6JDf5MD$>9y1e+UKR{n6~dEwY&BcQHXsMsY3wYvlU=~BXP;u9VRy6L zh{F7J_AT}hdzd}Oo?uV0XW?4=0(*(Q%wB;r$m{G)_6~cO?PdEoo|8Ebr*R?9s%`m!U1PNjuzl(tYUMM_u=K_nfZp7;j>K z|CZXIecJACbN{*hTRL~}_aCjt1y^s_3W|-VAJ0eZbL)=Vyp89#@zNn%`=xEp-=}LE z`-!d2->tR7J8K*EheNK~--`X{hw2GK)Ag>N-d?k98-K{9yOvIDBctnWqO1fC+83xL z??DCEQi1=-wc8L>SlosvxZ($m-CpbE!N1czri(uKo9_Py1+*vc`uykPsnkO z9sf^`!r%V3N7^HbdnC_c_M|=k+26ZAJj^8@G;{F9%AMc-wu+nJR(q2Nc7zw8mdize(x_RQWR-~M;yy?aLf zvlFnlgiP{f;miML!&`WELe2$1MqVD|tDm9RsQ*YA)ZbJOm*PrXIDOqm9*bD@mFX{1 z4IkKVK4|~o@`LxueD;6hUWc|5I;7nY`obSlcIff+H6I$Y={g@SLt6yt4mX~3A3FC@ z*Zti+r|So?J@`v)&@pZIw|VgS{paZX{_j6pk9*`JVC=!Lck1>-z}|j{$(n1xXd2$K z8HaB2NiuNhjv(wb< zyRN;UWowjd1Cmq{HCuorlqg!Vh^bLpq^NbMPiW%~P@n%*nT&-R&wdK+;QR20x%Xk~p>0rqf7d72h998(KGZJC3BFK&XiHz}-~RoBw|wU{ zx7S_kd_>N99d z6nSdUI_HzSRiCEN53Z9BYMS4@Tf5>jyCt_O?v~x^U#2~`vDtrzT8Vtl>#w)@-S%tL z4y#jrZU4n_YM*PLrHJ-xkZlXBPLi$vvcPA*#_In5Yb!6kG+?OqtG-~!!z^F${hnX` z@G^ej`?Wx%&d=%s5katDTkq5o>{mf@3d|B^`_uMo_Ke^E zz8qBSS3UlKn^~$Ro@~Fi%zo8gW4{Jpt|j)XO3*2oWxqCWe-Svx!_zkZgKMouWnjKJ zln2?y@5hw?RhbDUgD8|k>it7yhzyDuT>HX2;Dh}d*8fnO`?2%E_X!>5-iNJ+w(&fF z*C!_)%wg^oLVe<$sBg5TFZFN#{=r*z+efUggV)`EW34fvwg&d@J7|6VkFK@-clh76 zc9^xc-yY#N+)rFC4}}nfFcrdEG9;x06l4uTdu9=YHsb8Huuj+tk(&V|st0yRH%Jz3 zWIBRt91G6rJ@|iNuh?BhMpB4#r)%u5I&JGo0^VAaH3tT)FVZb0DP#jVG|(}sP%W~e zBL!vYK!e@XCOU~CXV>X8ZUqxkQ7)2UlVgE4-9Bj^@DI^3SwfLi8x7X3>!nAa>ztcA zPl#SPovz(ux+dh)^iXJ@OQsyhd*p6K2T6i_aQ*2%PWOkdf?#|9%`i$dA{2K2;KJHz zoN-P&=crqBx9Jh00m1#~UejHyZ4L|}iVvK^kfDd@nlqw!V#w5;yOz6acRuif>8YtQ zS>3W!rju;R=yC9ql<@KMVX2cw4A)c7vF98V(a`>~{SOku*y5HnAeb;IXOO5@F_?!? z*J>}6MvU%ZbQ)%<>^x;{WIuT77!sn^9+V#WKzq(mr;;A{m0s5x(#75J?>>fNJEG>SbpauxW{=BfxwrPW%zoDo|Za~m)ArcVQv(}&gF;P zre-RNj%F zhR;q?)RHf5$h~&2jU2hnzN$ECt`>O`tnd0ek%YugC(c@T$6*52aZJM1%oFfM{B=wgS%V+b$SpH3;|(|G zH4rES;dU6qqsWRVliC?eMnapqufZRdMAg&+O>VD*=aYh}C}76$KGLP*BXVI5-nX~{ z1_!uISErua7%bWVhH6ZrT$7j6(dXmDDVt!tZ6;~vcH3(2g;LR~`aYB_i zU=2z{=bs0DA~09(t`sW(vM~N8{bUVXlh+>VWeB=w0PP5FQrm#WI03^Q2W-=(Oc0n3 zJ4;Tpz=clHOs-PQcD3`snwb=ut+kD4t}qWmW6a@R;Ol`h2&$dyY?qwY5A@o>Z6Dl$`bj;kjU+O0Vqob1z}p1M{LtI2^@fJ8W;5>e z7Y|zNI6XeK7-RHO9qMbk=m24Zo;$-Z-4Ny)b(GH*Q$^s$N*Cy}P8z@cgF$;v_aa2o zg@s@8JsKbp7N^7-1B#{~s0|0euZoR`Wd-L-x2W-MU`P)@ngB$~2|>81BGDnsBOf!@ z;s*o-22cTJ02C#|li|Aqyu_(I&|DOpp~hgaB6|RgVF=3e^;k`sTj4!XtSeEe0>}h? zJP&A$6zt>`iUkWxTi#O=f?hExiH%ru0LDn32lyHEi;~|bWjz9qG`51^M+_e}Bq9z+WdQ!yGqzjvCi^PSOO~-Gw}S9B&{yz0{Tl78Aq3?YI>{p#m(VB2p0V zt{0gmCVAHA)_|={S+K$iU{xI8vso9LB~ce7K9=I$z;sAg84RX@0Yn3>!PUwXkps~e z1hPe29vS#j^b+dS27|z@e&ADJ)$r_)(u+2{fNg@u6gjU7Q!?c4@Pz^buyRO}Ai{(B*YKwFY3sGA?75Z1Nad10p6xpaZAXs zrkU;`9-&SZq+rqUBE6ov77w0=ljWojGzTyMC*`~}=%N-9mI2LqwYD_RH?_#1SVTTp zZy?4ZqOqwZP&6==inkknP&ov{V>*Zg8Sh?@eP*4idEC6kb=Pm ze_$~-K$xK1>VTm|FK~#6z)BcC1vXwh10vIEP#rLvDZv1f6xa;{nxlslEX9HGu(|UA z<^##24~z?mf=`q%!(m?Q;0TlwxJPgRWEPcl9}|I32pMsl;r0k|ur?Vu@fXi%iuxkY^YGN$@fOeZ*)IW`PBw z2)x1wV}d&MN@1Qefl3)q-3_2=83X|b-*Y4ib&xL;eLSX+AgV!NBwq5mn*y4tiV_TE zeV}ZRg%ej`XpsyRwmShdh3HE_WM0l~fb2wrm@WPWCd#bNAMph|=!A&C2z7YpoDWzQ zgoJ=3DtH{EBt@QQv>C+QvLuimcw8?=(Jy%s#o5h)JRvFtFHryi3#LqBrs?s3nBiqk zl6g_{saO#pXGEY(7k|K}T112f4S17J@CY%%!_Xhj8pv7l+?VaU5N%}j)Kl1DtH130 za`#QW$pyLK`|nS^DJ1!Q^b0Ti4{Y{5h=Ci1?**LFYb}!J$HDD7jo0q*)m!YxZ@rcE zKKvE?PTXnD)YG?;;{^_HW$UjzXrKE!d)2n=I`-PsZ@DPfuvcQQO?I+Zr+z0?`N!F- z*vA>ql7fZ#1BzvvXhFlepnU7 z9Vdb5T`G0zg5NQnGE+WK(+p97@C3s+g_=SPAT`n`nGHx}od~V#;iycJStKepL>D*4 z_?R^?Zhwo-J)$qxh=V1Os2s6;J_FTy=Ax+4dNtAr?q;!bx*a|TNeH6fvw8cc>{s0P z3u6T)YV%i3B$!ede`15~rxGE!aLq&$*SKc&QDN=^ZU#5wEEZj}dP$hm##bJb@D|1k zYG56mUlMi)7Oq(z=be4-_fv0h;k_T@-~vnI)ravq65cCw5Vd6)0!X+RSZ+LYh0Mk} z2{*>c78tqE4X~q`EaVDg&V>j_)#+U-oyMWHqAE~CO#~#w&SSL$^mk**yJ1ufZseR2HL&E^;}f<0 z$+x-osb_`frk)iS7Gg|Q__~->7xj4Kg$?~&A+EUV8pUXASv=0i8wM95rsm4|GjY&V zzY>OHX1(7ZFR;FO&gs9@#i(ji3{^Yr`)xPt<3dxf*^je#F*dn<`&{i9pEa1(1=lRh zsACXOZyW4pPIsN>x)?SypLE^qx)qv*dtG01J?MJa^_=TP*RNf_bG?B`5(?&-flvt@ z&?n4fvk?XM7zhb{exx}{DS@^y-(GEDr+ zEJ8;nvQ^QB&%)%+1a*e_EF&r*qI@5wgvvi$=a7;xh$={$;B`dq3?SOXE>LD@(!`aR z3h)@liZW3MdMncW->Hlt_KpDLnjWgX6e#(EGTu?vB`f*^^^zp7fvvp3fZ263;&av zC&$M}#%AV5X)}ZJ@CH=>Zy`U^`^Yj^ zd+m)k7Xau!)Lu}QO*S#-6C*hc?Ak8uWYg0-A1>jGAAOE4b81h$0*Z}B@;w?)d^l!z zr0cq6hT&|UxK#Sp;(>CH{nFnR?R`1LrmLmbQMLXOs{MW09r0wcZ)NAY(O4?gi|q!E z+ce&^s@$k7>=lLX@zt~Y*VKckYHv}L;)(yA%KYYoYp*I!Y@BX7Dlh02geokR;PI4b)$LC_Omq40bN57a#z)uvq$q>qTY~i(hpq#-~kpIe`|12}bk8rZ~ z-~2G3|MQ=75it6G#5=X$_lG9W7dp8Jo{`E(~oq(V4_5yECeqT;~U`?lf zjPGaH?2QQjZlC?3>cq?2Kf|-$kN8WjP@J(yi2{)#{;(5`G%2$rd{KoSmP1R}jYAxMLOylkep73-f2^xqG;KuvwVTPrf58Y&!+wboA+d#B=zW zD~dQdt?NuBwVO;fjytz%G2BC zLyq^K7Z0hwzux|G{`E|ocGtGk?gimCyxK5&7GBJ6I_A=gC%RD@gtW`y@B!qYTShH z4b$5K$_DX08^^!L_XX@@T$t;N@V(5#_p${CAb#M#qw@|24I|7-wvv^@P-_zrAafyP z`T_I@A-(XVrlv}ud0wB|y;^K)mNK4ie#4WQC$8>R`{p$ViVcA|O$}2I1a7?MsV%$N zjqJAN*WBhA+Fh*7@m%A<|D1 zu8SpLTa>7Dg%FphQs5J?>cm@uNh8WYZ?G_wWnIY2O`8mV+SDssxIgbWZMniN7LkTy z@yea2a<8Adc5LE@dlw~sIKi!7xNFx!W>k;l_{F`e+ZRQni`qqHq|N>#+ZKCkDu|paJq&iEh_%u01Ggas?9sC#H>Ih9hAbh=^GVn~~0PB{RTvRbl*I8RWVl zS1MHz;h~IKOp*$c;=n|otfXWNBny)}a#&7jlrs|g4=F4gAiZ$fEE#1p%E%xe|0O6z zyRx;0yQ*E~uJR!Fp@vB?gineZMnf8pMj%h?rG)v5gyeq|mEJW3%^ zfarmWMTNr-*hAH)gIiU=kw@^GiJ}}ZkmN2OhwNMQs&SlFA$dm^YaN3S1v~UG3T~)q5PP74(+0|X2e$_n z8_jtvD{LXvWMH~M9Ub#&2bzO4oLUpXLV>Gb``+63Hs-<|u2Gi@gbfHGIK+YYtqng( zt?+@k4JRD`zCp|jP}8J8p(zq$WgOCHT3LfITf)PYBYA%P2;Y~=OB*F`gIQSwZZb2@ zj~_qt-j007%r&bUMiXv{KX$|jBjy(G=EZJNDz=XI(1o+ZQqp@&&&U}X?{BM=PMifd zHr~IkCm%a1Eph9QpV^V=*gb1i$z4CL<$0=xtc?;cNtKZWm7cI?UC-Q4_>qy7BH{pE zPsfea5$)2&A})%Ii#WcBqEK!^7+bjYyD*{2zz-2%Ao!ySX2!+c_#89sXMW9dIV%XG znl1J>C!c2JUvqrU(((FiWHBB8GmLWcjl>6N_jr@jhlx{9doQ)Q)E^t*W`;wI<}NP{qJmRKKGXR$QORpdd|Xt zduHmI>mzr4TH;TMCbukoX<0JVGh8}TlaS5E?PKS`M99bH)W!*GNL-Da?VZ%K8rBG# z27&?+T>22&=mx9;0KhNSB7}l6Z}P7vI)is^Jp-U$99|oYRF4GcpSbv9`%X`AmS4>J zB46?=A5#L0eBxQ0aB6Vt6<l8E!I`IQ!v$4vR?xhp?yD)k$z z*p9jOY59m$&o04)*seD;=!i_mcsj$KV)U#lRUh;V{rfcwsu zzWT|RKZ*Y@{f%w@oBeP0D?hwv%Vk^cS;cQ(wruj+!TY!0aKrZd@07w@KKaQl@4deB z#RvZKmj|Aodj83)pWGx3&e^ze&U=q;dh+T+`T;EV5B39$;YW95*Q8$d--c?>#>8qsyH!c>rTl_y2HA zA{dh|U;nSy^~uSv|8nZdXRdl;qckwGdGpA7k8OP7Dw?aH^QPfUBTz`b!WZqdjjkAF<@|V-KGF537P?7-hpkHi{$c6cV&Hy7-@6 zwATK^#QFSnQ!h>Za-@_@7Ao5po|r>+0E;`#3TW=!iG3?Znv?P762FTbHF42J6ZTim zc8@ogCXU_^x~OM+1o*{@Z11_$S6Oq!+*0#6*6LfX3E_FM6Y{bc#UF!a01%>s%K$=X zoGE4z>4QRbR#~Z%6&ZCX19|~C#6XQCkdD(?tW@SK+%EnPIYg~#4`^O}aAH_h9-3nx zSLEy`@{7;Nvl(0)ciYr0qKI?nC4AaYUk@x~p6+ zT}JPA-`o4XC%i2F7`ZACiy}*pL>(r&M2BFAFrPsFe2_83pmUAj!SxP&g&P*^STuH4 zVQt~8u|+!;j3IRR2s9a zu~KP1lD2&7JiYG=*WcU2dz-z;NHH^c%V*D(<#RuKOY*GdLSZ?per)@BY|JI>+w1z3 z@MGa_(3h9P)9LHzH-Q8i@h(RYQvd+e@Fk%P05{wk=?&1J!{Vaa4mjD)$;m9jDM6kH zixooYWDa9u@`Bz&;teO)Z97+yUzwE8K_r^c7ZqQwUNFkFa`DiZu)=sF;bjfhzLys-_l9B*F+P2(DllAk`Ek3l@!x zqUuEWY-lg`&f&zU*Jq_=&w@xpwA3eZ_14tgJf}zHf}yCqp#$J^(%e)cG2b*7k7;d3 z+HVZ586IB4FCH!whFiZEt9ZPbG;e~GgLGepT?O4>X>NF~>C5$~yq3u!P@yC$1>PGC zYhu7CM0b`3ic+xMCtAzP*A7NOk^4j?dO{}CGZsdgUo_DZ3`ABX5``W`%!CbeUIB%c zUQ%zV#aLWzH|(br_^I2^mKb}*ruo{=#=De%p{UL zYWbid6n$1y5!0EVqRL7t;L}ry4ah60_6Nim@OZny$711r6(sXK-ssi2c$Cxob)I{} zP>}=BH}!q4o|}3^6BVCoaCbw=g0@vr6MYC>8;$uQl-nWpYdHzLJ@v8i(L7xxn8MLgOhX3PnE3u7M(2+u`Nw2pGDhccs-fT6_LbS$7904a|o=E;mrn5sFq!llk&Me?M7HmqL%Wo9x4P>D zvAB@^q%H*Wolt9NK{9ddIotp360z>{YGYl7NbP-Zy5y#=QsV3S9|sxOu!%!6npP=Mp8++nbK@xt@f9?qaHe&U3j=0t~4KK1mWs z00}{WzR*4K9k6F1D1sya;0*!mo4dnu7Ywl+tTD(s(^Y=+)IR&B8gp(h=T)EKyJZ9P z)T&xkZZbKqqHrgaPxGkuRh)@Mp^LB!7cHchFeuLi`{UF*;BCR~p0bkX<6q;;vaUe+ z{s%L4tVa@mtBf3HaGw_6MNSgP5?zq5UG79jL!Zd)o+Mqg4r%}m6C9yVL*PpvP(n@K zK)eX8cGP?1AVbQPK?aEqZXZs`ywe@l9gYZ}*!!TUTYNWnBnZ6C!cmKKPJ;wo|O$em`DQ*M9W z7tn(I3vsXf2fK||?cb@1xo>IgcGDCwzxTSH7k(yu)0M#dZYHQboqGzJHUi*%$V322 z5V6Q<#S7oE$2|=amyRutr8%j=XU~s`19J3^1b12Dj;J^&3L`tB2@`*b=ngUcXKU)W zm{L*e&uCuS_a56Oyeh;X)7;=X+jSv)tZ&0zAuK=wb<6?63Nm&;4LFE{FaeRE^j5kk zq5+Z(fQ~>X{Ty~F=@Okp^$&jIARaKP-OYWhDMX77oSRHy2~aOss3a7^@FO&B7U{vk z<``1abPPYqr@CfC0~FJpM8YS^#Vvfd@wrQltYyere~M^pR0vY_`{GSrjrla;X`3KagyxYDbe{xKC$cUywCDMS)q| zYDzp)7P%vS_bJW$&PfokKuFV}^4~W!J8z}x>QbjFUNdO%upCfLuhNGiy@gx2_5W&a zj3HxJw6i+XYM9y8#W%$IR#dr}CClWv-bj-umbxKYg6V`Fs%l~zLRht!hS(QtFgn^I z%I{Qrg(d^ItEt!`AUE!F@2KCykqCnle#_Y*1#(zh_);IJ`?0Z_-b`@L44D0GC<0R$o51i;m4ISz3mrVV}2Y(*r?qAJy+ zdE7_p+Bg=}{sLJl18L!dQZ!HNo$3*{L(~Ob9ExLEg7`)6I*1ViuYqujUuQW^w=eN^ zmo*=M9^P+juQI3H*UksST39vGnfmr%UaVIQF{vts541-<5m(f^ejE%$WqvN`FHn;( zOE9HKV?+Xx;tNDcGMDJIGA54@IiNX2v2$*{4hdw8M`$r_W)Tv}Tzeq7ymOUO>;p{8 z1w?h~Qh7Wai=LX+GNw;A>t$bf`D~ClM-F=`aSJ9lfOeWE6|W?{kozf?(mnu!CalGW zygt}f#l-L&IesP@i>K-_PxS(>RmJl?-bd_{j2=DA>D*HOTKhIkg@>#_eWiZ#HcnLs z^S~L3k=OLNYDr$$d*~1thDojnBcY7W`LN(EJsxe(sJaTewp~toJ!syn_|(2kSPZ0w zG*O-thm93TAKn`FsqMO)IYAX+9V#m4i|r7Q?i3>)J;?Q7-ohX^rh==KWSulXALjJ;`1K^HF5p@;ZkeagDn zO5>ZVztl`wTeL9u85<-6;X@5;)?jZWgB!27;9E^?upByh`z2qy!j0?@QcLcpHw!S4 z;(5bw1RuC?+m{@C^(64sqpoh(BJ?;ZXR-u_I{*3G49?VPEsK z^bZ#k+dvunjuTnw?bco$~F9h)!%)lGMRuDye(^-Y@qK5y}Tpartq&ioRm z47LZwXf)EE8yq-ys6XFkjBqyvD)}9_maE)L^RTo_6nB*{F_n8Ou*_0-?SkCCY-L1c zanGiUAGz#zUpm9bx7P;;clHnE+RSLwDzujfA>$oAjOTp{^1?yLAm+G^fX&Q8Sb;3X z(}TRtc4hevF4>iYsu9u>nNLDHAvf}bwScJrI{+}srB3K0s(7pP8Q_?lmCZzzevxVw zsSIKNQ_faR;W+^Lw@Hu>o$wM8Z{$zJd3@L)U5!<5KS~fEs~$(9ICUP`Tf?x9+gYmzwFL`5 z{j~McUw-tX+|vu}1q19Y`xth|f=3_4^Rs<_gBqapc zoSzwk`ay1wM9xf~0cJ+21_CUE9hJX0ARxY*ruE2Rxz0$PVVZ5=w&eMVF)*uW1uN~JRFYa>fwdib&zcb+zGIJl|E!nJ9XWIR zSJ`8oV`8?ko8}eh>_won=Qxn008?79n0)|(8t24xuEqu8in1Pv#h|An#)*+CMK`Hp zInl=wq+-cBc)c4)8VABdk;0X&txxGz;i|^_|ERny{6^#nMbV7 zX-x@Ffqjf^&mnE2oY1x0`)PakZy&XvoReExYHcko&G8;#{!YD6U%)$A1Ud3~kRw~b zG6Q&6fN9G2P(s&JiSYE6R0~LXkO2Gy&qwnL+FBWP>A4)~tHX7d`FjdOlXo*|bku&o z_B&KqeHOfRn$9Xf@3nQbVKw)$=2?mQ!sKTPeTi^!>Vctx7`0!V6Bzy4XkgCN+l3*e zZ|k+!ZY>Jlu^-yNlaZ|?+WmXrO8u|*Wi;*VheQ@IdK|^E#K)s}hK%nn2Gg5m` zO{IigDehzG^jFepr>^Tpz{S5H(l}v(EFmF?gMkKUaR5t&p|~|n8Dta*3~@SJ#X2$R z9GM9SJ=MbX!EK9*{YPJLbboQtw&3-J>fq5wpSwo9ZuGIy>%=wZ9(^=>CbPcKvgCa2 zB5hG=aP8W`(jx4hzoezGK7-5F4rrTnoImtH#MQ!7g}P0lye4-RfBwbVDknE7dK%az+#LNL@nzgj8f z0ucl9!bGWeaOAV2^E;5yf?HTQ{-Q@N867ODN^W4r$o9p{V$0U9hT)#0SgnnB%?1&Y zc~=uw0iw$Fan!{wdH`pHp-y$Y1F#e#GlfcqKi+2cO?Bnscwvs1Iw!0Q4c+$F&kfGx z0Qu|ANr|H^^NN)^5Qz3)zk@pU3ePWE+ptWDtXO!|h7Ct8ToF-{g+OTiJP;7|h4JEd zoPKcim?I~_GQ_3BvfnXo8zf@h8E6ge4YjE3*%<%kt^ZtT{pVZH9LgzTetGNsHABN& z4MgcYX}El3`%rp$o|g+lT>a7&E0$(^dUYc=v98;SdeeP<R73|aOi|k(ZAp0JBp8YHP3oHlA6~Ns=3QsUi zn1FafNGVtgfT=ErBTjOavXaeI!)QEPHet{}3z(#o;b!1Vm?@CtJIe07ZIM4$bCY` z7&&mE4#!Go;RHjI)DZwo&(TPj7*j{q)>Q=$LgzY3>Q0nbR|>`^&h5KFjX3@$4m|0C z>qvxD>Dc1exyacFC}fC8fCFeKyGi0A5}G2XMUcNK&?^=6eZPf{WRy!?sj7+W0o@SN zeBOCJb@|9Er|oy*@^0Cd$p60L zS*TX5Trts9P_%rzXr&XysLFBCff&0E3>7FP2#2F$ge)SoV49OP9_|q&j7@8z1$PIi z0QlmV3NJ#e=zb`AVKqW-06f?b?C4QlS7-9;zVo zptr%J@^ZaTmWsGsMOtVW?t^EQIGugxj;l=bsyps5L@lvvS3=_>@s+samg@>pJb;?X zC|)COsG`p4cqofkV`hR#QO<-(O|ZaO=B}$IGK!L!Xi(Ep^erXo@p_EQYS6pJS`lQD z>;p3>YV;_Ip;~wnqFXho0S>GfEWIZt&IgPk61R}iQV^-*4Zwv3<3c7h{H(mCWWWVj zS`?sK33>{6LNw-83q~Oa?-?~9${E$%k-eA zJ|ai+qMB0qBFx_FRoo1^8XSv81D=%^8=As0xd7o?00!^_)xqYPUjtliLO$09d1?h5 z${1keCf6yhi(EG%LZJ(UAbFmH!-ct5LL$Kx>>drNIg8~FuvbZmm0D`mGL937oPb4} z0wqSgC$5o=Bc~iyzZ$=j=k~WFyGVf@V-_Njf<0BhANQ7( z$ym`;N=>CM#jA?>ynKUMC}_H_*H)tdBCpWXo;=j|I|E|edzq67IeuYF>2?&5)g#RHoQ zGlz~E7+|gWfq|n2`kr1qG_-g?Y`1T;Is3+$xmGI^&ksC#^(*$z2aXyXDCB>JS_l5^ zKcR3CEFIhTu4{wvOVLlf1IuuLuyDX5dJZHYf?Y%Q1z|7rw!Gs<55-QIA_)-L4a@-v z9OPj9!$&q)(Vy#uQYG3j`RWZ{u&m;`U52UoGGb1*lw54>4XXA;BI>>7OSeWX%ZMQz zsUn}vjvinW*Ino9E%pv__P(5DU^z-{_DRdVi!-C`Gunfd2fxA{X*YcRyi3Jn7A~q( zxM0F)8+68a-+#b9;03W2o-{MSn=gRp0rel&n3$|Uprkw`(R3RkwS}>V2N8i^f!9q$ z?(ZZz6o@v2-~uj)dhtriC7!54r#xAuGLrO0glDTie&&snQ({ArQ)b!sXjaftjAt<> zyy)#!8EOS zLav|v^v7(@Jtu(|%*1ADlZ|bbE{?7H8h|>a@}>1wtXLdfG047Y#`>4ViWa-U*S7J( zmoH(jE`pUzRh@|?TY8NZeP`RnWC&)MRE&EoU`=At&d*_=s5>)TI8S9l&Mva2yVFO2U}0Q z{u2Hvi0=5My9vs2Jy&10TrtdY_qCTT|JV5mU5)o?cUm>-#A=Dm7suEK3x4hYQa z^M~z=xTU-EQ5fQacXX|S?5va46$HqcY)wyX&9C!TxyRyq@xBCmynICr;-dWhfVaqcM{zrS~~o=o-*CP$Tn5oPdU5wh*8~P&w#1oV7vy@LqZxJdMxby@<~NXHAE)1>J;f z4WMbrx*5%&vj(3r3O|veDDo4ib`ZqLwO{5 zP;Gb(w9(*mt(l7vjRG;y@Z6#p3~;3C;n6g81TA1ZX^fp-QST-%!ziJgKqhq;_B%$7 zyN}F;&8c4yVMr(OPli1>B8CJzGz2txoDaqjXHIc?sGxc3jq||{T}mV1*t3HZ;KCqI z@zU_bxI3mHHN>etY@NogqULb{s?cQ~nqqVU`_8?blk$luhB3=@(j0~3GWfY3%4QjXpAg#0Vv4o8Jarqx?(fd9R=o>kQ0D1%K&OseXt*^)M}W-bkjv$ z*=AS)*J^ZUvA*HfLZ}de7W^Lch18&I){qPcrY1t9QZrH5khOMo%OL9{N|i|DUNw85 zT(~9K=ZD=PY!3Z>$yn6m$%g!%ftgW+EwPWbS0j+hz<}3pWIdi(Jl=~KJu~blcz^HA zn8%+s{N8~$t`XT?>gSK_Nkms{|Kgwi^u_HfqI-Ln4h$^qeLg;91hf5Cn-Q;1I%i$ToOK5)U;~ zH}DGHGR2KTUHYVeI69}dSwesyfAGPaz*~b=8C^j(2vif60Q4?HB?x)I`$P`d2T-Ya z*t(2Q>Fq@r2R4*@5-{%eiNQ`an6>~fxft&)+g_UPCRQ|{E}|Sn)K$HZFg{)|t=?5i zb$kFZ@tW$RmS)D)=!j{V<{YG0O6giTnlO~oz!<+#;e64c2>_i_GvQdm+JL3yYsg2% zw466$iOAm95j7{S!{R~8D>t27j`rTmK4ArxpdeIvBZnK97cbfCC;(? z5D@9RePha+HOl-Rb$MTDDTEM(Faids(r{Ro!@~gWVJnXuEK5s$%cnlaMeB7ro{`gW zgY(36i|L$|m*Xjw3Y3IyZHGmjuEa7T6^LmaVm^}HPC#b(JD{hs`s{p<^q^-GuXzklJ~6Ph|Ynz(1FJ)#kx0p0be zW1p3(nb(r?3NPNk`vqy02~i2aGT`AZ zB_Xq2%~IN4uSb^~#$qMI-5V2Q*O}2&)KVf)dGS%%elj5@*r=QqKL^An-qg<74M^Sj zrkFyojh>)Ll`%%bzCXGKh2KNJ7enUIVR-tvpjm;s0^^eb<>QBUHZ&GQMmZKqUEN?z zG2Mx2MLuv^N?3BxpBqSwHNcRGnrJB(otCH~dyW-mu2?a1&WfddNB6N-d*keldM1-T zee?Ds+Y=zTxySR{K7P_X`=@2;jMg!eTD?QNNgeQRazR8_7zIijWg<7lTJ8rDB z`R*D!&ZfYU-+y6mbKCXLJj;?#->tUk{L4Gnu32-w97VLXQF+14qt~q6$&Rcs^ZcX_g%GN z!`!GZQ1JRD<`mh`WVSRuUgBTGul?Jdm2&jb?|qNykKLl?bpC;JmM>p%hG@kRwQPJ~ z>GI|5?eX$tt~@?o=6_xupX}_hPEa3b=3|dt@z92FjQm9ed@lqnmY@|6y6Px?g^N&M z1|2gZ$t)jfs`AxD7l*xOUgE;oOr^O}H;HG(r1dJKteY;@#PuLyP{iI+J?m7>D{fM!cBtxv3W9Kx%6%zTf}ZG% z-9$lc11EkqoTWv*l4H{*vggJpOQ3`cc3y%BIF7UOgrDgs}`J7#1M z^+0>%CrUaBLYj`r6nJNVKMJ=1bVsIi2yf<3R6zkB<}&ipcD6z~Wh9R~8+L{gq>d3jT=k7!3FnmsX(oX>~+nzpf7lLcMz z3<~wKR<8hgUv%#E0|0kbqTflwh%x^ZIe8Ru= zH46&gb!>HE#Op`Ep@cn|@F2S9Y%P-f#_p|r=zG^9@DLhJ)YmUh997f>Eg~% z%;MZ;*7w)htL`IuA_*MxRp1yII3@w_3(DY~fSd!Wa+riAO6GpI7n4F$VZ~v9DkKe? zhH$bSnOMfmn)y#7wh;(vqR_pQmBuzP~_ z9qV|{4qz$kJae+u!Y}{4wRewYac@}G)R!!+5e@zJ85;+M4yk zwI46Pf9n(W?^weVx4vKg_+0yk4^P=Qu&q-Mv+h_w&-b5l*(s-xn+#UH%Y|IG!gJ_} zh@)EUoH{@P7p6e7OxbY}k*66}vZhEs4P4g4zW;p|;+38^>^An~)Z`F*^9k;lUe$gn zZr^ynWxu4J`Z^VP`Xa< za0WFgQ6}2o=?gVA`2ywPi4xn$);2}Vr2Vx0@aXwX(a-|8%BI|EWZlU>*sDe{cZO%6#T4ZWl z(hOzBvTnYq`;2dI-+Ss6+j#TpR8+m%&2Qci2!sOs=x1(TmA_$~ugPl4L_$MjW7f$} zJ-12@xTCWl%6QeuUxWf?6UMs!vYne-^W77X@_p+g`G7CwKJK&mH9O}ok|bF(LtZT# zz1jY?>f43-S@+HVJ{rihnAYskv9ZA!E#82SdoCm|8*@jDOvZHk%JZ8dzV8PD`R%Dx zCKSpi3S=^Y8P~7;Mw^x4B{|fT?--hWRNJq9 zAgP-psmMuxxeU*j?cTKf$f53hqg$1BN&}zS-jcyUgi4onM^b^Zn)ms9kqibk5||Nh zgcAwT1}gv~%1%!1R#?grOa6~9A;7|&r}fP!cj(%COZu9<&c|1 zcN2}n!ooM6NVQKsm^R`{aHf#T2IG5w$~`>0XlIJU{JP28%Ng$4bSi9ecKrH)X$Gzj zL?ZULh0wcs#pv7n<8&~IEgxz6|mCb1Kdjrpp1jj7SlWm^yQ7rm5NQ>Ly!B z^cUcqD=+*^JQfyy7ohjfvLkd#%d_@zY(gL}B`cDeun-Fdiw3T3BJltQ@d?gSpou6{D_0NA)y$77GI=fwX)*Q-maj?j~fft9?=pz=BQf+(jiHV z`w%@X0t=A{+7w}p+ki-@9!v3i0?~wr_lUjK_)$CaZ3~X#UMqPT{7NJkLclLKvY!S# zmbg8JXvd;|Q9gO(_G;^r@!p-iu_(7Jv}EP-SnK9R|BT@WA2P{8!cT<@5qD&UYc?{k zxk436q)RqCet~=nF_kb%h*(LUk_7sk0A+xZD2C}vcRQq{AZIY&DqYP4x*)l!mLkw$ zVN1XbF`E$a2}vI*qNN;hKw@N$yrj?;H4RHm3_~NT9kYmd4I?tPROO$t3^QuLgGj4CPkI5p`CKWK6TeE*m-+;8$)6#9bH zuFAkHo?FX3%5C~~p%AH$SxRilF_(`eHa$CER-qeuYzh0ntXO?S?|)p@ym}{5}P_AkxC^7=Z+>8#_4I^<7Y6Bx z95WN=LhyB@7^3zt`B4>DI19yDCeBqQClCQ(K<#4=j;!8vLT2&ks@~pADqt8X*vreA zbcHj-V>X<%W!pR3w)XbQVnd=lSnQcKfA##a;?R^m%?3Q_z}&^6F=W+)Tmr|Ad=~zG zGHmXn(NsL1N(_H+wV@dYE>{k|+JK?^VXns9CK$OHFfsuSG>aH%N4eGm%7E{16cYqy zu9ob!z!d8J znR=}dn@Xr99H-gcyCSA<&@xxfO(Bpa#6Y?+%s!dv>B;1Jdf1DF*l>G{T6A`(#l5#T z!}YN~m8zeDB)j9ME`8h%$7H>ti^Ajw?fR3v>&(wVHGWlPg6O z3Qb%{i6O)xK@9myk(36MIHqA4E8YRnl`Q5u3ZxVmn|8={9J-3)xPfrOFhfmgj~g6B?{w*)RWaNqY- zmlfth!9gNNXk2oMl&srtiRq^HWmOL%!6p*9D{Euvx(8$VYmBN)cARb&aw8UKf^TNc z?6da9Z?n&Fr%wK04_|rSzJy)JE)sq^)ocGV_muq!-u{YE;-&@&7ZR^Og84d%nd=9q z1bVyL3{aef_$){`9ZGfCZ0_!A#;R{dJLjH0I0+CE2w6x8Az>+5Nr18j3WXL3gs{CrTS|eJCG4dwrQ2&MukG&@ zO3Nem`2Rg4C#3CrpT8xKX1OzSmviqu_blI&H?UXcZ~Xpa*E@<&FO9amJ$~#A8Avs( zSjcjdtl(7HLM6FHfcQxuN6Z2#bz8{#K($bT+dTRTB)#fjUk>^}ph1qZ_CBk^Hg0@~{q*MdaFfr6o8G(GTjTwg zL**Ktx81!i5D2Wh8%n5CyUc-aZ`}CpjjHUTEO*iaJ+uO=wtCEK$51w!&{WpGOwLky z(e0s`4#iNXCRO(U_kT=zy6|bylw6H5f>oLFRya$`u<}Gjz`~Kt5XoISONtF5cIb>% zrLx*1;D^r?)j^-E{KzS;0rGPiyj5pIb=*d$2+$gYuoFCPnbP1oos!v`fV3={Ok%+T z6F7@SSSC5VZZ|~ElFtWcH7Kzh^E)EmxV)kTvzf(ViI^3h7IcVLx?1_&U?Mjf`Oi#1 zVB;=_*DUa`wXwO_=0G4A$$7;-*(+4DoEcHS?X5ye8Jdg>t zTCf63h+>T!a??;|L1T~J&G#~H}tuskWH+EY$B+MV3vT3vAWVGSu5BX z!d%gjJhf=olI#jvE*B5EtTUuWqC%Ldb%+Cm_@Zr3Y+Iy^*FMZFWX@BLq%{*0 ziEn*t{AtGe#!Y|Bca6k;m{ESyHnM2jwnZatOd#`IVx%ko$D7_T%{N}CY&rQ;b^g!rq{|iIIQ{AB1^q4#p*FE^!eTa1rwv;3{w$_Oj@> z5(ZuLW^$J)TQk%nRXv7unI5Am{)0>oV>iAHfbN1DI%!&P1H@H%N>zYLhh7|kOapcT zcqHlZp+lzupRmO8>Miwo@Z5zwnMknE?bD2aORyrv2h*ae(ucH5hh6|Rz8h4IUWd2B zWEX1rvU4H^8%)dfuzf&bF#o`w0cYGf;_`uBMs+XYgE_fS-Hd-|nbJ%%Bd0ml3kYw) z3+e&<1WN}PQs`l}ik^m^=c#1%ssahRDN;=#uT)uh4Gdh>I>UR(x*$SH@fs-e$&i?8 zo(w@$6X6I6@YK|5uoH;skU1AD@-PO#Cb_y?Z+I~Iz>%(L?p;apjcVP5&p%jE9MLu0>(cx|E#{7z6sb&tvY!e5* zgTAOQ+~b1L1n$s5f}z%xO0N=L(*Oet`Vdwd&COI^oqCHp&0|)tS8pMPUj4wtmrOS5 zF=3;@%hZ7S08s#0fJ#`vBCAZ3M3F2^T(U$P5J!RFFi}85gGxb7BQ4m9Z~?kO)HzWT zRlMq<1@e`0pb(hez)(Z|P}8K@Fjcu~Zc`8b0(1xWd^99cH4B3d2vJni4w!O)0?X73 z`$n=AN7Dh<)*W%d_?c=8a3-t^#yBu0FJ=kv4x~v`iJR(+um!U{hkzrsdgT_?E zJZ|z1&?b_jj{(yTX+d?9H{dSnf%ULjL$5ehYbXbibSsn__!NmU2r|zNQbeM1vK(nW z8uIFcD8~T41ChEw<(M0&iIB%8R-!hd2Es?wVsgPUfCvF;DU0An&?~ZT^h1mQxPgP* z5tL62TTeIP4zlsVyNS|RDmJWRRPS4mTck`fs)-OJVw4(mj0GILE@82*k`Pw-Ze&S?43=p5jc&u{!T3SAKx_o461@d&L%@QF zMS)diJ(=gDT}dGbQc*R()e*Jhp!3iR${ijZ#SOE;dejgq82JK3L$*+C(NYhE&6#=~ zq+Y4b!d?m4Mh(&sg=WAkJvmCDe^wXNkqu)ARiRX=#R!N7MuE|2_@brN|2$wI3LsDx z;~1^Ph`FWar11*!*A@l~JQ!MVCLOE87q-zZpw=N45PdmVPH-M82?lVH!yy9jz=|7x zNNpnhBUm0!ix62*dP>G|CZoX$fO{C?`P9>r6?3Q=5f@MdKExEsZT&25Hdn%MY(Ywk|0!) zdL8`wWGU!A6yItvm|43K`9k)PQ@q5^pVg;kUM(8x40r2Hh$5rYS*dWyl=@hzKPo)_ z)Mu)dqgEn1*YdTRmV&o+-B9; za0X3aN^*V{!X7*FNlD5TPj?%gPHG~mSv-vekp5R$Qgf)*In^u2IUy!T0!mEfFJ~Tc zCdy5YQgC*^hMEc$ zL3#FA)wfX2)d%6-cob_yKJb1cZ#Pn}03_h?hV#LK#rsg@<{p zRFep$VWjhF#iDR(4V3ePG%A%-LTX}EKZ&pKJmds9@Sry6y?CM7Ktuy_G^ypMIz@i) zWDhPP+bV4nIZ)F{pgy7(qI9*<(O58^=InSB@=Z~EKr*-qnWpDZmJNW4re9PT?kRTx z)E#B}blp*XP(V#*I(G(E|sMu702(mRvUPwyg7l&G*f*}dDAmxDS7$2Y{mubPE z<3S44O(%;nIqs<)mWCFL1k}QK1igY@rWS`NhdQgls?wg?U^FebCf|YMX2+dc0bC z{IYZ_rA8IgA)bY)0B@y2lnGURi252D7olRuAVoRFE|D*l1sxF&_n8qU2ID#r0&2#N zBzQReQT}lSSwQ(g$aW&*a^|Q|R6gVZ#VF?(jbX5d11Ja{u9lr@)DR50kQ5oFd&+{ESFzNjGT);nrP;i!BZ2EnHf z;5Fz(b}A`ef!mB!my{>Gr(6dtQ3lI;3HM>C0HF* zavA!UWA4lL%=j~z_Ef4p!%ok%XGZiSe$+!|c=Bf2`si5OUyy(Qd$~}M$M2zSd7oV@ zcSd~5LQ2IvK-;hO)pfN-0}ZnFY2chzz``km)hubx%eFMMzJh!e`Gmlf)~KOFGUy1BLQlq`a?>~8gpSjvH zCz{Db=U6@}L@AHa!VU}j;l_3AHvi1Bs*zl5RN4G{+}Bh&mkN%o(`Ug9LP^UY?g|Mf zr7YNV5`NMe4PVH(NFatS8T*5&O(Rs3OUq}Y;1prVyux+G?C7Gyz=nZxMh_!m3m<}X zBLGuld!gH(5HccPVE_UVz+@^6#PpcSBpI;Q%4^Ij&BQmD_?C~wVhm$muwCjbLk7QO9ZW{R26rJ+INBSoXiAFKP|lQgEe6K(ci zgwR6PmQ*cZ>vP#yLy;D-1@QA&5LC+=tZ-@JpenB6nN)1}9GUKZAW;ORUcZy!+q~RD ziRZ3}7CU-7T9iNh-eB;!1-(x))vOMc#8w!Uu%YKxe0_(Q%6;#VOasJI$x==;al!!E zR8!~n#y#VovAJde`l&CW=X@V}PCq=lQoupfI04#IhOv;~Tmpdy%8A^NMj!fqG8HW{ zI;iW|k6bmg4Z&$slBP2;CJ}HEEV`)#10yYFh#Nz;}@vhE{J+gLz zIpWXlRG8&g`-^@$73eS|<-+v-^GeCPPYVz(_~8CVimY+5h)B8z?y_AKqb=o zeRIq}Iyt|l;0PGZnND#SD5$IfKpN--6Mr5bLrlW2Lrx8(aP&!n1R*mV>VweOku?Nb zT1E9Dd8n$bBT67CCp1@RcB)R)Dh{JqJ7Q(dy)m9mCPikim=c+5UCFUmxX3qaA~h`o zu;!Z0KeVPJ5P{of&5}T5x$B$R05m_@=V$K<2+i5}4OdSOKrJ+^JoIurQWM?F{<%GQ z@}Xo>JCJNIcDFy0nm+UD*~R7S_liPNa5dND0@)gVHcaLD0shA1Y*B2lfzA9@ao@Ew zVMB?SQ5t3lG@M5HB*^n}@KtJpbbBTuF6~pxi&2tPl~9b6DG^2_vNhr-HRPv)R20v+ zM#hz=Ka?7y7w&ZPs4hr3i1ui$>cPSn)~rNIazqdD5I&%!>M+I+q@g7+7Qxu4Lc}t_ z6-fiMkDk0Z6w=-lQi`6{Uhis;aw6ta{vY{WGIn3A+e;_C?1kfpzWSF&yxtLMYi1u_?2I;?cq13*uM|8{`_mxjnvLR7ehODm1}LB)#gBWglbn%d%fqPbgEnySt}%4@=UB&-buD6pP|bLAfU2?}4+30}d^40tWV< z>X`tUssT9tK=H&CcuPag;)3I5zz;)0#Nc9pUBrDK+6FuHaB)qWrk9WcAUcics}VTd z?#wx{&0!ZB{(>Fdkt4)8Iz|uXAr)r}I4D42Pc{H87QVw{LeP1R)yZ_>iTO!c%bHQ#{NkAAgK(2_co* zmFJmH6psvO=C*i-SFV9q3(Itw;k*sbfc4+2kP3*6+8v+z0-W-RBz;#>?WakP2Hg+$ zE9h&&n317hL{qE&jvxt07_fotfLDi2sDugWOiQT4Kwt7`ubTJAdAoOEGiMGqyLQvw z*onqDGg}%PTV~E_+{MmbcX#8iU5$6I<8GWcZ};wb^XB|z&Z(V=#>V13#m2^6bAaHy zs}ZVu*ltaHG_g_p3!MQyL4t>Jmu3MXLr_d8O-xnp6{~d=2MMGK013&1k=<$K(a%xi zQ?=CjnGD(2tGlhL#@{1pV;B+`sGilc^)fm=PDy2jHl(?v+k*j6ik-?~jzpY4j1i1B zh8v?r9kXX^+u++fEe-{@2@Sx81sL;8I3fH!{~0zi4n_yrLL3xu)nV+AHkg zZcfh}6xwedUwKW#sLOg*de_D}SCLVeYoD@m%6R|Qt;#=k-}zp{#+!z|0W|+?X(RVn zw`F0ey+W8WBi3?PSlM7*63ace(rUNbr_9*&jc{?4IjLNx?2W(3*qA@-T}n9DW)U)V zVY~Hca*8%=vF7Tg`Yl0jE+-_@{R=m?r~CX8XV2yO~Ceb?jMy|8@p^T&+lEv z+Fq7hS~5|98E0BrzDh}YcBUC)?p*ZlW?*%#*Ib1&IShw9$V?ZO!6?8O4-jwCq-9(c z@fASw=b-3<5)o#5z~RNvr~;G0bc6|T5Wr1ki(%q3(AQ~>rg0VnDt@diEJ4AGNDY|C zbrH~`oYy`hL<|)cInh&Ce8Ga21s5!Co>Oqhd_<64EPV6&8ul?S?Q7@@xW@baEs;*3 z^9trhe^u|jF9bZ*GMKXoV}A(T|NhRB*;3m1{`~=XxJ3XS40qs`o~FXS?tO)( z>22Oj06ymt;qLBP4l`iQOEwRCXR%Sp*%Q%Hq*W*sgw{l39F3!b->?2~W|*;hy*yNY zWFN|$jv-Ku1I%OzChsWNXxc$d!*9e+HmdGPJ5^lgUd{XXm{`?UTgopkrG3zw#-cqv z>`Oh2GtKT#cQW6JFvEc2KSj zBMYrO8j5;G4n?58q>-T508oMmET8pxgmeR!2o}1Etbbs=3fjd`NRf%F^9AODoG_o; z8c=?xZxY0spIyM)hLo@Mr-UZ21TgMp=K3LN$TgwqDcRt*XIU}A@m}w&Wh<7>a%Dv3 zdQtYX!!7f-FB|dh6?#ZAhU3 zcn^_cHF^&)9e@B2WfM+@BRE|xqlwFB$wfAjCpkV?4Y29(fx{(eg2Iu)d@Xf>L7l@-{&LayKAOY&w(8Z31%u?^M8J>i7ybuK0KzXs!w?UVN*tW~N=Y zNzl0kAmj2npHDEEe1cmCOb}aPk!u1k(w1?%XPd-L z>`VL#ldg4SNv101F7+4MV!FLL8*os$gy6mcmMx|#-c-8mUO0g9Cbw==m3v*4pxm=anPM}sEpB1_ z>JP?WPFld!AWI(&w4_mJuvQc~lE zEr2zTh9Q{%HCjQ3uwY;`+)nWMBpy(g+ZZ08=p`%+($0p$WV;R&cU45d{oAe8|8|CZ zD4I@3zkmL0Pt+riomZMyN^nPNOW)7+^yI#u4vn1$%=;tR?&jeieU)y>SG(MrOr$ZC z{`sLAyU%B54lgK;&rh_pBp6FiwlUk&6H3Rsv*QO7J*=s7Sb6`<#B0wyzmoZRPB`6V!i=1t{P*I z&Rl!=NK`}$>iCuO7xHz$oe?hL#eR5y3*1S;<>dRxFU2T$0Y1yu9sYo? zo%J6xqBG_c}`D{(CtvXvQ zQ$XMDs;X)=x#2Fvm)hC{6HfZnxx-)v$3;>mNcP7M2mPc1QvLn(AJ4 zMpo+^D$XWEi$vv9RjVlUr>YuMsJ)W!;raEpATMN4GrbS^p5oKBd?C$$_oY{r4_c;)18=1cx@wLWkTYbxa zv;VEP_WxmtueCPT>Qgo-8-f{k)Wp9wfB$+KqESUY^7CXht5B{BQ7*k^6^mJd|=k{u)((1V)D&IC3CnB?(K>st~7I8as)6zEKX6cl7NS$4Jmxk+Ih zlB+rYlHE&|>}D=T^Xmp_Jmt|;ouz)$dQ+OO^6~wqEBa?=s!Dt?=1!CZQ$ABDwHDm5 zpe`S)?djj7TWmv#)3$BA31r6ewM0$Jb(7Te5d?9U&PS^OZl#X&25X}-gGT?3SIe<^2B*c#@VaV zSIY8B_}g$*;}R_SwAQfHZ5?~Z3Y*9&p^lbsrnl{Hw9Wy3Sd4^9wcu(nMILjHmoHm2n<@E#BDGRB?AIFs)j#~C#E9FA^NU_xra_yV?5!(`j!1x z!7_NT?Bvyum2Q`c?T&OIjxprqNQ3XB+hJPoljLlvh~bru#$q`1{vHa*+rS5z${J z#wOad|EcRmES7eV12Mg{h$f4PB1T*A-6ZfKei!hs@WjQOQfS~YBC9q8APo!_ke)&e zBr@6#8UA46jm4P;Q=eYcdWwPbwl;;#UMat|cQ|8MD%LSIpZuJG|F)#O?2N^LVxcu@ zmlr*rc;3+@*VTzW?VLKF$I~1an>=ALrWKodH?DoS`{^Ug2jbV5^iB64W{&()AJ8B4 ziLpA5Ni;aL2VVC0V%))(uZc}7V=M#XkvE|Ki{R&jYC9LP675H6X%fM54JJ{bZSai$ z@~csKi%6LLKYqd0oWX5?iGDK^-MKSL{}9rju|2uupANse#N`#l%uWQEzrmnc>*=n4 zu=oB9Qgp&tMMz@Wc>t-oL~ zzb5J}mN!{&8iE^=T*S+{VrvNq;_MIhsW*@8Q%dUd@CfEd|9+0UfOH>tu<{KS=z)-7 z9d!x9Ymtn}yzw2fh;&&5#_582Wc#LJK_I%u+K55y0Bw*wi$TVu>_Go?xoPDME>fmL z5}2yB^+`$=kF44F9VjJq9Ya2IWB;|>vf*p5<%;6!8y?z3`tWl*SiZk;<+V!}!wCY9 zoKPkn1dj9jOdJQ0Gm*70r0)cYr3QgOA1Z&*VIVn$M@cmzSs@`7^_XGkwU}B-Fhw6? z-3Z_uSfXlogH2>vhz}%RSTE5XJAM4=W$Tco^#|q=2Z4e&L8z)*a!E1R_q+YLc`Ylf=ions&RTf*E!|mQUr;XU~vPi$*QV{$=Nrv|`T-J2PxR8|x zI6ddI*@0JMn)>IGPc3%5UIG@M&y$djGPhWbP77B&Up!; zd;fQJ5f>2pkS^$%Z7U`o;urEy6abXB3(jVYiq7q=bVW*apEP&mrii1c`#Bv zHeSM6%$1x!-qoL3vEA$uoVtj=qbK6@IDlc!oT87jnVof9|16_lhHYn0^9((g zu0lF`H%l}2Z9)r!oD zbllHXnk^i~Y|$*&{tD|yqsF7Df`qq-b)TjPRJp0(yYxDQxYyC-jKgXjR_!UGa;X8! z`)XW42LVM>f5HKv|0!BBXdA;9R6oB-6c;Z4Yie3yaB+vh)}0 zB7eT-((4TCnCzuDSkg1k-}3Ick^g2Nx+;18F|T)KU*tr(c-R;KvKeXa*@ zxcr2?kNI@g^wmoq+2wlRhAZEq@q?TA8}kw5>yK!@qj`ZLh8)Z@N(8gNAm_=!h_IfF zD`6X|&tgHFEt0MqCXq0D%@*saOVdgEP%2Lj#?z1)LJ;YJ`6dQ*oT?|gSTdQ$KktDp zF6?pDyU1#?p$H5%GKPhFe~!>^CoK$NUkGIdX@HOh=BKcCZee9!p32eCgP}zoUr@I) z{Cr`M2s2H33TBCNtUZJ#fK?_Qm(RiO5WlpS#}0baoGjx0{cMw~6>g<{z}(1;Dxo#Jj`?#k+LEgW~Pt{kGfCv=4}f zS<`*uelvfUV^h+?_lbwa z`yleVU3?I4qDS3fyWb$(g_qqX-X|Qk+y~qm@eZEfZNC}v-IcAs`I$pd{u?~-7ZYEg z9&Q1?en^cnbEu`ie`~rZymhx z+9iuWe0~4^*Y~qA7DI<)Df1?-Ny@COPIOqu9?@BsELqBk%GUjF?BD+e@e%m8gHP$C zHh|3wAitocR=E;lQ0Pd7!!I9Tpd-eC4lqX05gicIR|Ew5 z<2N73rd+{bO(0S{zb{aOz!5cpzVnNbKus{{N@Wk2{e%N52>Z;Eq#xR_zNUuR;f0#f zyblg70q(j$+>yz=5m zg#*OKy9^$KeuQb_tH33pp1+)UAAZq~W3ADlj(EgvLQn^#DCv<&ckFc0xP~zVLz#+% zRB)mk97!9%xq)SZ{KpAS6pR}XleBMCI~%@X7E9xQD~XodijJ7kCRT(4HD6YkxwchH zr*XC^U)Bag{=oNs?siUlqm47We^Xt}m16ASXh|2-UbC-MbJkfkrF~wvLwP0TnLCT~ z#+bI~_>GQv{hk_5Sruz&h%vX-Ap2+dV2MDiA+2Z*oHrI7h%rpXIK4KAP11?3%!boi z5qq>qbm=A`dR_A5iBrGYH;3EDE^Z$lZs%@lA0E3U-7|d!>*boHbmvRpBp=`5cZ->Cj7>V1m3uj=WRfaVjE>m&{4Ts3~) z>HJMfPPkRT{XfK9$V@O7D$LtA-~9H?cNOOpi*xvda;u_IZe>=o8bx#HtwV?2+B>^g zoL$uDC;p`ThxWI+_kce%71kKDHH+Y(3Mnz>2nVKUnAgM91!DvSb;U8fFC9=uJ89L0 z>6~@M0*nKmPDIr#(4$nNDUG_#h4@o0*%8QoC%v;Z#K_}%teiB*rFJ|s+iNhKU76sG z?(ErbAK3GgSz)c#IAfO4*aZB$!`?)tHVhHo!%XnRPX_HXw4Da`@v#@!-xZ7F{wA)b zX?#m_Gkdk-1(scJQ_~wb*@TN@KgG!=Tx5RV)TA88xu4DWE93lpO{X>&uQSdvJsY%AL$m<5 z_NWuXHbp@ryNt=*2==jpgJDJrB5^R@bOMt*&;-s%p@wh4jdbzUo!DhuS~yd;&$zAj=c2 z9*fJ{3g1(M<*M_xZ$EGGRacF-LVgDq`Bt~xqAWNgL9zp0u#Q#$(Hq3I*q?j`_cP_i zcivH66cerRmpAE-|Z5UsqmF!RgPE=FP4ZDbeM& zr+C4wyf<<^0zr*jEy|&UCt#l^1p?9#_@qG91+=>rC~f%hz@a%1@FYSq$)Dg4JN_YJ zq~3v%<6?{)5VS&4M$9b>om8;_US1xw5%@2;2o)B3M5(+=R2P0Y50!E;Qw?W07H(D) z-x=#r$yo@6Cu+72pF~EXbBWnm+>f(#YfQ%ajY&I8C;-yF)MYDKaDS>B>>ifjhP06{+59c)Ia;cgbbC~A2E$iYDDBT1ef^Qel z#{;5wc}#|_wxUhc75Z61SPuCQ0geuKwmwR@P_5`Z~O%uS{Mo)oh4 z0aNz7fr{~u(pAA=Rhk7f*0an}zsKUwhfdfyrw;2^tYLMqyLZwGma`3bJt;3AN~h8W zQ#u7O6mQDo9k3ZmyJ>go$i~=aG8t_r>f(N^N)0rRO^l%~zm73-hUOO3X4$ckDow2? ziuL4%*OmT^YDEV*4eklZ1FEocy^)XvEG|`70kUAVf+wF+HhQC`D92Q(CRHP3JCk>u zuIqC2ITDPZ3CfQpLjkvTqdBtc_N>kok90-iE?xHaT@ka6pJt9!rn%4RB30&TP|b4Y zF`zT++`eNMi!xVLiL{jvTZk7Q^8vRro_|F`#?6K)cDp%Zw%ex|jFOv^UdhLORggkd zR_g4!BlC?$T_s0pjBz72ZoX1yG|oSQYn7Fpu1f3V%#jPXBshm1e-19O<-!OY9(sDl z{*(%Y!&P;h3;XYEGQ;K)=K6M@Yxl4*%sH$Me7Uf3c(=>A>qWds}N(+r6x+FJ5Zls z0+{bEg4C8IcHpMYFseqpiGM!Uo;&8vbaiF8KhXA!eeFeEnZf$*?)t$@*Z3Fek9vaM z0a{^#c*kn>9b`QHFHil~x5Uy|1`ucJk}#a8&WS|~s114c+VSsJ#N!q0G=C!DKVzTu zhgjuVSG_$1i#xyaJA`?#*SnZ5Hss)5i2HLDb#)ave_VMh?#~8m68@||J_P+hC#(t` zIlJ;}<=6Hcb{$M77jnR=L&Z+`Ci46{*x^ONZ-U!YqlHqQ$j>%JmPg2us=A{29aKlG zGzH&*GHdb-r^1lp5J{0huYExA%j;w%6pu4NBx#K@Y_v5PVWjxD9nqIlg78y8Kmfbv z^*^c?%s#Uzqu2ME4ZVUvIVuX2!eC%l38o&HN`Aonrz|T~HKTFmcTuv~gaLMZRQb}B z6in}nVz)*AoM}OZ;wqba4R{2bQyw#!k`_FGt^$+|?V`z}4=;dZyPjepqJ-7Jr=#^?i1<|IHp_XzX)xZq=3aSOsm95HW)!ocv!q;00 zzBF6enW?Q!c2~0Lhazbu6-lQf+`W->P5!5!Tii}drNy#V`NAz&t%92|thL~TQ!;&S z(b^fI)}r)vj$N9mtm|?c3fWS&lr9MFj!ZhtoJdDb?x1JY)@GRFpW`-bt>q#_ch5R4 zwu>yamI_h)%;IqWQ<q)cohk#Ls>#JEx$0nGDKTRc}Z=X0<6_tg%`vtq4Q%nZ@!MesEx2!x)?U9UIG$aSOVnIZ|2d0kdIx$`nP1zT#1=&sp45T0JZG@<(J2z7E2}pbO%$NMy9PwP6eMC#lEb zAKKE;+B=HaP3}a>kpQ5w!`#dM7@8%JhTZ|HFc^ZafWD`Lcl%8+5o0>V?JJ~cg6mW! zX65 z+UpR+oY;80rM@f9WduiWtG`jq{jFt|ix)Z@kF{hnE&TRQ_)+wB)G@cQz?&H?%{9CK zbNu}iokMf_7b}mD_z)G{cbk_VEL`@xM-swig+XZ9;>)^Mj%RWwL5r_>nZ-7Xz2Z2NJ$_vl z059`a{vdX@vZH^QJ-Td}^0Bnz(6Rv6(^Yd-SH*%?A9x_7oz>JseTkj;i{?h{@3iBP z{9lPYsu_ar3G12$=;A4R5DSrERbWaJ0xeJPy&~&xBILi~6}*(LLJ{Ktyv1;SKCA4vQX^D-`w} zjUaRx=i%M0UZAFTWHZBSqwn3jb)#R;oRD0p_7%L~ZIlXuVShy&cw%szffSCywQ+pn z3PdtUN(k!34<%Y#RTl`v|H^eH3 zr8y_NY79G9F!{S>;wu=q{A+gu1-Tw;(JmZM4!5e$M|qe9HdrV(Ip9L_NILWCGqlDs zX*N|~DL{p(8fV!4-*EET09d07mIKwCKi|P3Jk?VEEH4`j=e$^IR?Qf(psvF zQ5B%5*G|}ls$gZX1;fyV#>I&H)gBfB>VO3qBc@97CoJzliE97u+TkwtkDbG7Q&sO) zW!7b?-VG(6J+C7b8VF^Whccl#p-jhl+{G_-4-a?0R0t)Lp+b4PS$VZ%n2pjI{9zkq zhdW@73wr)s<3cQ~4X9t38iT2UN@Ox-(rG!agz>pthop(6*h--D$;hTqq0+cJm62%? zkGQB9y$Q_$XF;lE%q1dr?M_-m=ff>q3Qp78{Lqy{{M#mHVM|Lm|L+$pcDkTUshe8N zzHJQ#TG}dt*0<|grd6v)ErFnwZ87NnrZWULkAwn7+ZKcHAq-$t@-R-rHaQni?%Ph9y-J?HJh~W zWBjl}HrtFkAJJTkH^Jr);|A)jh$W#1mcc;pDUw4IK^an=!)OV$NT^>D(KpSzNUcHu z@h}`9D#tYGp#>qZbX5Ey9J(72(8YuC2!vLkK?EyCxmb#ILQV?RJ>`+;QSz# zI{iylkNO2)+#MKPy7Zi&B_#=!kY!@5nZ(RDLZ*^J%V?OeDs3*e-fL)~mJgazMhqv!vrF^z(|Nd3mR_zVA67IlXm5*Gg6($5n zE#)VB+_r(2t=8Y8M+Vn4?6e`wkuBc2PH(&d^Rnmwp>qHByVDGY-YZxJ*L8dk@5 z3IK~S1g^=J0x>UPYI{*30Ccy>4NWh`Z6^^t|qAJp=iB)>K$>FoBRKJ51HtZ+o79sr1rG(n_r?A`9JU6 z_0^k$H8tbcU9jh^w?=Mc^Kb3B;Kq@+{`Z`WZ7Q+9>6FKJmDpoZm};Q76Q5|-W4`l( z3ZYLXvVtUAB1W=EBPF^n#`hK&Z@@YMBVz;NzNzL*SV)v5n^0L`tkuh)T9qr)>x>S` z0lTi~N{E`niL*1kQ)_0x@8~RZluTyMxj_UL0$<-00Q1eyZ>!6NTIRMzTN*NrXZ1Gr zPc;kG{%-D;Ts&kG`LlV4J(voG;1@DWs{7idV62)f;z~2Tk7mt~5KH!)rpAuy(ERw> zEwZJtG878w4K6rNC8k+ij$l98Y>a6h*Zx8KKD2)+O&_hxJ1KPWxkXwt8o2f;Y=m{_tg z&$K2-d_rMX;^e2y1CCaiIntUL@l~9cxl#Gsob7^=ck$0M=R=(#_A##W5%0So5DG1V zy^4C}O4+ac%A#Ytl=tjj=3)y_1C^^S7N*X@n+Ag3jDf#TxyhlgU;=Q->bqi2eC@s) z6-CT>XT44 z*x41?d~({FZ1$WrD`$WYuLNs6W96E2ve`B5>3mju>DlRZ7N?kaula}D`@{Xx^N{WaeSiA60eDABwO zgv7vB7fG)I<8Q1mP$rL54N)%a8;Bz)f(65TFY{y^2ek~G0MU|EB=B`Gc?0R{^hieq zXYXKn+d$K>ztR+{*ITOnHqmr=pr_W-`Ap@Ez4N99?|8CZ;Ac0b7d1GPWd>iPiIHoa zY#jux@tm*PuM?`bFJBO?l>F;^rVTj^AvfX<7)0irw9e}@_@_%jh!}-Om#lS9ZC8G~ zURcs+n0e9rXPXRXPnmwf!kJ%i^(p43n=g@UZfWEa$>*=*gsE$%rrbfFZE9|Mm#t0| zZbMr_{5Cl^bBG2J##$f`t!;_sXiYXBCd4*y&~RghqcUcOm`vg|nn7r-WGgEUZR)xV zb4#pRSJZ=}YACo_=R*&@ebOOVx}Wccac1;!W#Z&hPdxF|$uFOORGGNtjaP0tcyQl| zclI4X#3~NXOOOq7_ka5hU~QgM-eKxa!qNL5k3as**w~ZDpL&#K$L~CJ;2`sjL;Lm} zc=PSo1;CT|BO)T~oxxl95VN>na{=0sBxi7;Mza)&ZJx|7mXL^s`+r^ncdnLga(+ak z()0*sJWq6h`{+XqBk_{B>UMFd8jowP1D$Vn_Tt%@d^SHXJK#MVtyv?v=0VA5o|nD2 zFQ3h3=j8{yGd=7*nSo=<_{3w2l9^<7U}(+7o3^gG^og3}gl6V>=f1LN;n_WMO^w{M z|HRt|Fj2AR1gbJ?%z{6$sE}W{2-t9mn&MZdiUa4R)lLy z?dHcG`;U|V^YoKXKEiMeKYr`M{Wrfh-2L@L2vN&I7O`)q9 zLS$Z!A0Fl#Gpn<~g9rD%+tC5~{fh52qpTS<7L^=Qp;$C1Efi0xkTqXK{7pCwVN-7P zYV~||j@L0Tk1HTL{A7WNm?n!0&q}>Ea8x;|OdLJVT*Um(a}Q74dg9f?2fg> z1IHg>4db^SI<)_dp`M=98$4}>e{~L2UuOAMihHt!a za43~I#C?i<&TCtjWUBt#|IXH-lDzMq+J^8Gs-WA@P+TzN9Cd6{sj=`CH8#Mp8u7s> z!CvP3N-KNAqsqyN$DVxhN#^tCL1?$V{@Tq4ZoYweXz$+fdNskG3)#6(Jn^KWd*aC_ zpBN`HI&^67iPsJtIB?UuZ!^m;L>5##`f|OQFr(LE>?=_18NlQt4+ySJ;!`3K3~tqZNwUHr;Qkex zm21Dn9lY~Sf$7v64hqjwyc*ZgvZ27*wcJb01;?IJbZGvg!-ozXWNtll@ZcV0;g7S2 zZ|{A$_0EnCekaGZ8XkI)<2J5c&xPbf&Cbk4sWaN$3KW?ZYImYg)L!m%XV#n^oK-nj zL@Gv3byg}G{F*&fP8!>_fv3lj`QuN0$!MNBswlU<_J;D_VNmEEESyHC&k{3NT#*zv zPY=m8a>sW4t>UbnksF5w7c3z1MgET;fBL9qf?>zMageDk7vi1wSzmL<+AFRY&1F_B zE;g=R-`uu%`1(VGaJnh`;+z_bDp2#&R1Bk26!7m8j18VF$Y%r`9GO}XGYyuK)Cl0E zF?!=Pda*qOuTXnP>wi=kQ=a%=rks6aK*11{hwZd>6|ZrLOuq>8H|2Jb7nU=Y2b9kk zi}v#4$DdRT|1$X;*rP0BuHK2eVM;10O*Xx-3vmxE%!_nNZxF|r9V?V3X8W0C(_^LU z$D9g&Q3G>#PgR4BS7#@YkzvFS87u;i5p|!QfY5;Sp$ec6CLkih)AJ8VvAmFDKUMy` zVFTmbpzK>?)B9b!_%(o$=GcVykifi_TzE`5IZl&JCV9@#nl)E$xO~IHfn-v_Jg|Jx z`R#oXOg1xbV(z2KX5ZP`_zC5wCr&Um2R`JasxO*<2%PBzqs3P|K1#2$;a{TccIoaN~aLIE^&YM}DUry{LtQznX6K_DD_bjv{PFPeXRV%Q$ zumVFL$4c~!^)rW-BCYGGc7*2&j>?US)ioryv~I$xfn2ewWd~iuTAChnDp7Ruoc7j} zx4Xk(w{{t}J!1y$iyg{!o^aU1Y@pL;?2o-&9hxorIls8apGt&R1;bZPtFNC{&$geD zX#5KG9RFSd?OrKo*XPZDYfRq<19Y-(lDF-OaG8EiFGOct6W z;#-h{PKLo^(z1zgU?ej^O670j6YZwghZD zdpPpN?TceNQ&;!k+9!8DJ;-r>7i%_KGiM{XGqBoBI*E-WtA_H`r5QjffXf0Dz=<%7 z2CDA6VCR!-*^5kw9BeW%+%5bG0{oWa-t<+yzsB zjfqYur1F=U^XaoC@x7`B=97XC!+H22rNZPQu16? z9ami{hzl()Rr^^~TiJn=>ZwbYhbO)X9+bg5bc^6e54YcvuC}&RTj74Wc7AWIFk9$1 zd4i<@w=Z3SS8FZru5!C|ou<~ReiJJtigT+r6UpK)!$=xTbW5 zd2x|YRa<3yJY6U}Rf;h!wpPgWY^L?@Z~1&XwkAqX6$(+)GIjETiNG-8;X>j6)j4M^ATu3S<3?9I#rWgS5CerEM zS|^<=$Xp7}UUCd8gleSL!rsJ%8j~Q*0fpsdcGZt=yZPDRvp3&X+P)3r2_O$L@dZ4$ znHSr*BXPuw5h$QCzim6icRRR^Jbw>oSfPAjDeCy5Mfv?=V0At6_uv-~8ldUWcHfg2 z<+#y=^4HxN#JA?zOv~=?1YWtlzjPA90Gu*dST=P%cTzbyqxs?g*u}mNqEB`LddAtYnnFo%E01BaK%!G46Dk2&E0KJ9I zsRA#T$5k)EYLXzwQ!K4mA+};(3~UfR>)bCera$+OZmHmgZs_0a_WpeLP*U_Fl54)U zB8cGP_zNs)UYuWl1!IjHLjhfhdHX2iS{~*ST)@@^N8E-|{oLaHLp^RWY_4#+D;Cb> zV33Ut7cka1bQJ(gP5xos-AWzVsA+n%?_%8W-K3zsRIFF%2mG#iVq ziq%U!d8EJ{CiZprx0kMB@HQ3Cri>w0_Ki#tN35cTK^KA{)s2W+`BV14F#IGPl{`QV(;_j2+GoJqQjjV9PRFLZLo(SxBj3eic$`Hy_=)_2>(hjD@|^V!4yW z&TcypFskfafRIB6I*Z=TeQZP(Id`=xmSt(Ygn0JUFH>|^Cs^DEynG0#z~MQY7$B*ju+=a_Zy}=$(k@A; z0<8b+cN|u}b;scB$ z^@vCmM8`J>dxQ7)6DkUPSDzyu#J14 zKcKmkEKLdLF;WesC(S%l^{wQ!2&zM$C%qC5B-g0}S_r{m2d6RFV2jQ~0z5#^tNZF* zIR2*tb3lkO%iesQPE6d@k~W#vCb&x9Mc1^&b!OwH)y0Z+g zfXi+lHtNj9`h!+eD!a>Pv?CMgEgV;8A1Fvgz|u#}Li+E?i_nss$%V-0si+4=Qv zN@lSJ5?JUQCrr>|Z9^1UU=3=j(1|n>xEf+a(QC1AQTa8;>2)#54={aWkxaCN*$1^b z$#qY1>{wctjY@+bl=`5DI<#W^&?~p)up!=MSco{?67#GDlU<$oIy-UmVi<`5Gk>0AmiSVRlU2@w4O&`%T-srdT; zZ9JIAuf;u3nS*Dqf%!EQU=%EhPt8fdhE|;ye*(Gt4$@JxlvZsW z`d%(1dk-(TVyKjhlyV!hGUC3B-@A43;;rXtrA(?1HY11*%!hjKE%fZ{>l(i5s;-gg znUvhTSPE?SrjovFuGBNHckLxT8_&PKCBX9zv6au%xY!oa1w4hui)IZLht4a_@19<2 zk^B`FgI&pX47Ilp(Ok-`N4Df+rgYjBtEH|UstC*wHi%9Z2>#%H+5SPbtbE6RP}wQD_xZegF{uR zrmQ2tRE%~2S`|5<*z+s{z_E~qVi|uN3xt~7#P?yFu?s#)WT#YrM0Cxf;QXP2ejPr%Xb6~k%|v@ zTouv6B{ywSEwv9bs~F9XnU1mQfq~l+vb}$Az3vS4Z=e#rF0e+@dW1vn8LYs;~TvxrIrsnbE#$)ljXo?9V>&h4LNk z2fDwg=%zA9)rVe&7#OrN0!V|KdLa!aDkdz}3=(E!$~T3B1&9e|X{h?J#i%4}%`;}m zfu>mopSv~8H_3@6tE4tOov@XBeP)cFG`?LciKFKd7~vmpN6=Ji%tOjbx4U}f0ep8C7!!D;3vsgCw^x{AzuOy;U7Q*25>^sLo4 z^PJceLwHQx%FeEpdQRVY*6i75DZhfrZB^rN(UECdSz6kjow{(BqhYR%VHTKSC?mRz zeq-Pj1V$e8G!IxslRMzX_hUf_7+Y}g{}J~c@Ntz_zVqFC=hm5frx(qPdha7?W>iL! zWvjTW*^=cd8)K7zjRDh52#|yhfizM!Kme13O;3RAvYSTwCcD44Z{OQZB?*M|9+K?Z zv+sYtdq*0{rY4&g97!{C+kEAe|M{PD^t@haBs`|agMwsul*k%gH@Bk$9DcA*Sh^9d zMkSI^xn4E0XKmz|sT*r|k5nS-oPQG8h9ZuwNZpT&?%FjPQzvu1Q)-{myV%=aKfHP1 z+=2D+BXgdu878oAq>O|f^jUhs_*Tn~!KT{$C<~aOkU3|C!`8=9P>mUR!!jerpk5G= zUw{g0rs+w5W~-I!MmQBgg--X>^pU`^1$*3wpYjb%; z1n5kz-uZ&aIqLz}g}Es!_{wYp4MyQHf5iYYpV-a()#X-9=~o2bKpl($cY3mI^pGMc z>w2fBdkaq~3ajkf*BeOZ&mCyrR?#!KaC0y-?PKMJX0clkY_JNKSs~V^Cv?jf!r*&- z;isAh2j@Zq^PZp?wya>#vck_As^6~;>a-w?YAuQGmAanrSXPtaF}IuHu({nAW{+Y$ zge|9F{uIrAuacwLAKZf3ud7ZR-ELy~3-{o1Av{1xti%eS zm5oOUf1z=1u(>+Fo?#0FeOPs23rkMNnxu6*WEA`rS^_~JEZey8jD7Q95I9nn-6g$K zDqt04!BCra?SqZ~8rQ9~27qsr>|+$pEKX#!2bTWw-Y1dg?0uxQVPbNS8}>$hX*0^1 z*7lSZ*8(j$T-M&<+1$Qf_Jv-|O=tDMblaY>^qPemL*onU$1`C?)DB_~qr$#2nwy%+ z75cMNET$(d!yCp|H8Dpm14HxSLF`y>kjBkt1)tTt5EgkoY+BloR%IkKWanZ+twuw~ z;9(xOTf+Xn#awQ&uc>)ps&%HnW<%o0obTBBp3MrdkI`Mb*Ts~nT;KGJ&}U)S3*iba zsRP8A8)}3D$wG9a?X+kP;aOY{wuV6{gb}Pe4mM4zw);vGhR6Vef8FWE=yP0VBY|k^c8^k2~_dM{3ZUu||gRZ}GeaZEIT|adFp3iucBLS#$ zvvQ{u<*dS$?AcT-;3o&(z;x5JaH$Eqg$!+yqVx`wb~_p7T(6QF>g-l5HU4on7bJj0 z#w^h#ocHXv@D6_itHHTyFuOvDmq=|OK|Do{7Ay4lk{YMmkr`ocaYtx(UplL*navX! zsAc8cv9ZIXmV0M5XH|9EaesQ?(7=I_?%^G`gvNG$SN3`nZj@f}CS)XAp@pl~>h@V? z+}*;q3T`y3k~GufjbjPKu@pSsG6-PP3ga|I)D@4sN%ESggSCad5v{KH(cr##&4i4i z6JFUJ(^@1GwFTTQLR<6D;Cwhg?+yBBy@YU;9~oN8$a^A|*T_fp1k&L(kB214Am*Dd z1qgUy|F$b6rB@ZEvl&PX6%vEw`gATkEkLk~S8nU58=M?CH@_iqbk28C;f?4iWO&Uo zw_=#ad72VTyulY2CDXi7{*@}BRS`8dMlxtfe5(&TfeBGqG-XEk)aUe|1fVd;m=%{K zuT?m$g683cJe0j=9IDWCpQ8sP7Jt3{`5RRBT+`fOWBuTI#&;Jt8XkrgGN3EWh$nyg z_mEClyD5HsTUCTY6m!V9ZkFB!TQZM4jNMqfmvSiu7?~E%%UZEZLdj&T8;h+4UJ*1m z*608lDU%9WT9jv3A>1ZdG6_nBQt`x9%PV_)o1$blP4q-G0n2Oj5Xzmb>zm$`qvaLq zsu`GW-M=>52c18*ll6PPD~QtW{gQsQEbU~ys+4^~_gWSG4oEN4aZsnXVL&sG#dfylv%fDXxSm0;*$MKrhO zx3or#N|oxXy;Q7G}sRkLRsP$l2gmtjT<6M%B@-{E+kvIWiFw0v=L$o zy>$-Wa!3&b7?4vNGnzJgiI3YSi)(xP7j6trEIeg;t(e;_Stjog&CP)HOlog3Ul0BC|Sf|eW)NqzQHoX0LKmE*UKu}<$;dA4LX_u z<=O(A>q6JHt~=oweZckiuCKVh>H3MiKO)1R;I7ioOWT9At-aQX<;(rx(mg^S@fZXt zX+)7qH%0VJjl1fIGu8HL9sR;f-SMMHX!5llU0Uol@a|S9<*sdOWvQ!gY9bScR)(_- ztqeoEcWR=$LfMV3GFpW;-Mzglkgge+Y27#4wPwf7fr;G@Vj(AyiR|?z-R?=|G0L@F zIyh+M#)1}sVp0K`*a{EC({YByS1O4oTr1D;P3YpEI2yPcLh7PPQ9eqoSF1JivyTcD34 zqq}#L^zF?|N|Jh+C#4yZ_prNvcTZbGeiBl+)=|uRy^8F?u0&05ukSp`)KJ#ya(o}O z|GG^7zpyh%HPfTXhAHooOhcDE-}EL8O)|cvi(`B}Ls^r-A3AkRLGM7WnK3$sR}ntl zG&j^#3suZ*i+M8=wu-8lFH(v21>v0>|d71jS1f)4bD3hoqIlOEXIuf#|X`M4l1^e@gTCDCOva_tT$(cr;X2(g znHh#flxkeE^57zJBTo^hay?sQf!spddCyI8`FQ2FwuZqi`9lNFT6((0bA2i`SD1M}AZy+B(WX<_P z@bP_Ej~*`4U;q?+@Gdou2E;hwDD%&HjVy%dUTS zJ^QkJj^p@z!c( zUWy#zRyfs04wrN}0(0;|a2b28ahQmkgqckfnGiP#2}DrGv(uY0ijv#a6M#Pokv5VZ zA(4g!1|uKZ7rMMm@UUD0ikj=!xaeiwrkBB&RXlDF4uE<#grJc?8Y^TOBvd_VZdBnl zP1y9F<3h~9)Y6f-hQU}rzz9!JfHi=%D|rO78QyIW-mT9FRfO>GM>^uV-n<@y-=S9- zWzg0h4wYUo((IXOrZ_$izgokfY#J2Ht~VlhPDA4gE@P}vQ%fGs4&d&91qdUQiaZO|3W-SCHm_If zWj?~$AQnS;l8YSPv?9X3?4CYG?(b9&B%`Q?p>Db5*fYi5-z#Q1>jx$W4i2mbs^&lT z8|P_G+Wrc#&2C3=mJ`}?>JOGdpjkM46AVK>uIFXKd#mYT}4hc}$d?NuH-WzONViwXdnMzd98| zo%?7-^-#=@3cQ99yq#chxWrf`krelcb%Ov_!q{k;Xbwse2Ozd`q3qA?=@a-u$*x3J zvwWeD&}yfZa&AAZ6yLEUvFhrWm9u`$`+*E z(r=(e8xcVx>2sm$1fpoj?10)T(I$9hhfGk_(}rD5Mr|@2m~9!*2(HBRiarAZE%k^F z^Vybxv?Fjvm$WAw(;4QWGv_jJjY$?QJFU>Dr4MsiG&t^$MFZo(=*ERStIW@ zV0Zrs)H;gM|C#C;O;j4jxTiYmF;FCF+`uaEj(UzP-%|Ju3O@M)v1s8Zg9|%`$|F@5 z4tMWa*SPNZs98H|Z5Ap5`a~q+3HZEYp4jPkC+bkFIa-@e*Cw>aL=x388%OsZoM_z? zt;mhAqjci~G@GZps=cFSWd@4Pj_d44ez>d?sLLAjj2VSzoLiD@{0I}Jdg&U>SrW|H zK_IQ$F>l9QucbaHL4=VpZBE`~um@wv#~dD8L%km#QZFMO&LHwdkY|&X3sg=Q8B0a+ zP9mMtF(@$=ZlIrMZ`v>D2K*Yx?Z6fMrFQ@YB2s$)zXdw(#2dnw>qBT49X1Bg(n$AU z;}D$f(}wi(vHA&;?mzdkg98(DSI^B24bB~-7!aY#DFh+m&1-O-2X#Fj&udy9k&LiD z=t1?5z1WC00%Z!HCMk-TW#Q+RF`x%wW#$1Y3DbBRx5ko3w5ae4hyeict&q+5H#k2( zn4g;~TuT<`ELvLlgm2D~kS9d_^t14W^Z{4{!C>BC|AANvq_l;rgq|rk^hhdd#TT{-a={hA>c|O$*aGR@c5LHP2+Tu6591~fRzqa!3 z-nKR=Y6}CNM@326{VGX6Axmv-1LRl>6bu23YobX!=*dBf7

qCQ~Fp|>xA;8}o|+@a3HfaDJK0-M2-a!Yzd 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%0D`iKxvR42n-h0%w{13$ar%un zHevive~6sM6nkE#7+BI@MOhc#-88>Bi0P({#Ndaqk|rm`ITkzO%88{uqlP!;j5&)Y zB>;2s!c)T#or)%ZjvCoXU1zZw317eEK=w~(wr3hrrMm68S)ESJ(b1jSHgD(r(b?Jg zby|euH4m6vc6F}FVOcrXKQYhd!LBb#i4)g$Ebw^1SA{~}2r`$X^s++@ae^=44z5VM z6G%7~9GUMGI_no|Zb$pf;s#!off^IE3;my}{Qm9M^|GGQRJ*1|Vnexw*S5qvLv0$ zpgsLem>X#L8O@_1AYx#slOfhjtz2{9NJ~hh&k*Q{3m}<_MiFNqJP|q#p~_=Kk+K=* zjgpw{Sj_lL)dh_@BtRN-9k{NOwHeRFG3qxzxP5B4C#^SBaWzztn0wHC#wmkd)G3|Qt}I8Pr#kVQ!xlQ?R~gk*1~E;e08CKrJroziG< z-v$$lfHnn=s8*=CEH=akAMz~;A9PSWoIsQg)|B?=0HDGWcPzk=77V?edU<86e zgoU30;FJ-Rh3FyC#>6}+1Wg$R5cux}+%bd_z+MaMC#!f1Zp)A1DW>$&Z9)_31Fo`+ zkVf1Kd`)s+fbRkl0HY<)V!^3aaO!Sf1R1~pu`dfU5LxkTEuzImcqhT%!J-A>m4sVh z!T}gISXfHREF(TJ$#Z?cuZJZDU`{B2SHnZeEds|ySaI+yye4{pJPlRN13jGV_iNJ! z5r@boqBZpaA5uG^*}%B4umsSpk$J|7MAmT7kU4w{03A_epgvn7R@{z9IgqeMX^{lY z7m3KQ;8-cF+X4xLgPjN2X=BKRZOy0-#G63;fUOsO2ahJ(M8pc*wQ1EgQVOv>+^ZIM z+UJNUmH|t+X(M3qsW*00D z=!7lye1ohH!-@sJK8qE()~qU7r(o^F`vR97?l2;BG+N7iPV3kocEGE&wdZqJIp5)A@_)MZu;$=YBiw`g9a&r$8cNfb&e z7-}-9(NqvX*{pV$6LAgmfCeO-j6zg_PnL~_1)-W46`E;CXCR9m0Aq6JJ(ywWbi9+M zdm)Vjp%z62FEq}GzG4M8exN*zbC_?i?;(behclN|0GV@8=ioGw+X+f2kwmH+%sey_ zQEbS}Z4u@RbsS~3#!E;7419P?N&2DSvL#z(d9h}JfP?+HYAyDmI`|NFRm~xa2qQk| zAML{i^#ZI5I9#kjsAAkxDk0L>kRP9+;zCJ+5HZv>w0=qb!n`+f!`_vlrY8T~4Hx$2 z+ZQZuZCZEF?yk-qC)PEz57#fWzc{}vYZncthJ3DQ&q4r|`LwJ9l6hMHWWnRf-sD2N zZOf2i00_d`z?%I7drt1@*uHWQU1M=1_TKrqjhmjob8p-UIUXSv+Yg^83@@?pHQ~Uf z-r%ZyvOkhWj->3!hE192k=eGmJ9&Q!5a4F4%(sOC{B@QBcl6)jo#upF=%}$5K+EMe z-rRWk?#Z-yl!?ToMSK_!sS*YOMjsG$#RXF>Nku`0r>J{jlC%@?Ej9sp z0JTr5)!eQrO>p|mo#WN?P&C=_OcuG5SB7#FfBdUdCOVLEsxz|aU>)KUMhA3E+cz@oOBA)YyP&~ z&1AQ?Nva3S3F{9MIxD99mhFeOTLKx1+J#pO$co$UoN>!LSb*ApBOerX$u9a70P^>yj$c9Mj^3r%ojAtA=Yd$By*q zj_)8Cmm;cRE>+wqPYSji2IkRBL`IZ2%-BfZ?Mh7pogGYqgurFk;PV`Fg^P!lzV`W}@!mR*ihK<=p;{4t2^+da zSCr)9#s~T?Xja^SxK~sJZAXGqDi?Wf-Tm`q)hAMEA?gDWQv znt$3=c>tIno8-zxV&xO^cK*}0%0A&)85ZyV6e_P-nC1}+tFe!`EB_`i&Dz8=vGTf` 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

CSb6Q^apE!Z}k?_j6I9iVxp{A)t7Xgd7ovLkA% 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 0 ? enclosing.height-(enclosing.height*fullness) : 0 - width: parent.width - height: (enclosing.height*fullness) - // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; - color: fullness > 0.9 ? red : "white"; - border.width: 3 - border.color: "white" - } - - Rectangle { - id: bubble - x: -(width-enclosing.width)/2 - y: enclosing.height - height: 100 - width: 100 - radius: width/2 - color: fullness > 0.9 ? red : "white" - border.width: 3 - } - - - Rectangle { - id: bubblebg - x: enclosing.x - y: bubble.y - enclosing.radius/2 - 1 - // radius: level.radius - height: 50 - width: enclosing.width - color: bubble.color - } -} diff --git a/build/content/TemperatureIsland.qml b/build/content/TemperatureIsland.qml deleted file mode 100644 index 97c4c46..0000000 --- a/build/content/TemperatureIsland.qml +++ /dev/null @@ -1,70 +0,0 @@ -import QtQuick - -Item { - width: 500 - height: 250 - - property int packTemp: 0 - property int mcTemp: 0 - property int motorTemp: 0 - readonly property int padding: 10 - readonly property int horizSpacing: 35 - readonly property int sliderWidth: 55 - - - Rectangle { - x: 0 - y: 0 - radius: 0 - width: parent.width - height: parent.height - color: "transparent" - border.width: 2 - border.color: "white" - - FullSlider { - id: packSlider - x: 3*padding - y: 15 - label: "PACK" - fullness: packTemp / 70 - value: packTemp - imageUrl: "Pictures/battery_temp.svg" - imageWidth: 35 - imageHeight: 30 - } - - FullSlider { - id: mcSlider - x: packSlider.x + horizSpacing + sliderWidth - y: packSlider.y - label: "MC" - fullness: mcTemp / 100 - value: mcTemp - imageUrl: "Pictures/controller_temp.svg" - imageWidth: 30 - imageHeight: 30 - } - - FullSlider { - id: motorSlider - x: mcSlider.x + horizSpacing + sliderWidth - y: packSlider.y - label: "MOTOR" - fullness: motorTemp / 115 - value: motorTemp - imageUrl: "Pictures/motor_temp.svg" - imageWidth: 30 - imageHeight: 25 - } - - // Redline - // Rectangle { - // x: 25 - // y: 13 - // width: 200 - // height: 3 - // color: "red" - // } - } -} \ No newline at end of file diff --git a/build/content/cmake_install.cmake b/build/content/cmake_install.cmake deleted file mode 100644 index 03a3c53..0000000 --- a/build/content/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/content - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/content/content_qml_module_dir_map.qrc b/build/content/content_qml_module_dir_map.qrc deleted file mode 100644 index c22c2b3..0000000 --- a/build/content/content_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/content - - - diff --git a/build/content/contentplugin_contentPlugin.cpp b/build/content/contentplugin_contentPlugin.cpp deleted file mode 100644 index ab03b9d..0000000 --- a/build/content/contentplugin_contentPlugin.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - -QT_DECLARE_EXTERN_RESOURCE(qmlcache_content); -QT_DECLARE_EXTERN_RESOURCE(qmake_content); -QT_DECLARE_EXTERN_RESOURCE(content_raw_qml_0); - - -QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_content); - -class contentPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -QT_KEEP_SYMBOL(qml_register_types_content); -QT_KEEP_RESOURCE(qmlcache_content); -QT_KEEP_RESOURCE(qmake_content); -QT_KEEP_RESOURCE(content_raw_qml_0); - } -}; - - - -#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_contentPlugin_in.cpp b/build/content/contentplugin_contentPlugin_in.cpp deleted file mode 100644 index 25fb635..0000000 --- a/build/content/contentplugin_contentPlugin_in.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - -$<$>:QT_DECLARE_EXTERN_RESOURCE($,); -QT_DECLARE_EXTERN_RESOURCE(>);> -$<$>:QT_DECLARE_EXTERN_RESOURCE($,); -QT_DECLARE_EXTERN_RESOURCE(>);> - - -$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> - -class contentPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - contentPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -$<$:QT_KEEP_SYMBOL($);> -$<$>:QT_KEEP_RESOURCE($,); -QT_KEEP_RESOURCE(>);> -$<$>:QT_KEEP_RESOURCE($,); -QT_KEEP_RESOURCE(>);> - } -}; - - - -#include "contentplugin_contentPlugin.moc" diff --git a/build/content/contentplugin_init.cpp b/build/content/contentplugin_init.cpp deleted file mode 100644 index 9e80ed4..0000000 --- a/build/content/contentplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(contentPlugin) diff --git a/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf b/build/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf deleted file mode 100755 index a26a052bd8056f90ad900fca7018b0479bd42dab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2308356 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 R(w7qQGV0P<^fU@Nh=Vb9x;dwU^plGr+= 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

Mei16uWACBv@5C2?(F&`U&OFNh{ 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�fcgtL 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 XZ`peb_k>pRg|kEHr~ls{Wq~ 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 diff --git a/build/content/meta_types/qt6content_debug_metatypes.json b/build/content/meta_types/qt6content_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/content/qmldir b/build/content/qmldir deleted file mode 100644 index 62199ff..0000000 --- a/build/content/qmldir +++ /dev/null @@ -1,28 +0,0 @@ -module content -linktarget contentplugin -optional plugin contentplugin -classname contentPlugin -typeinfo content.qmltypes -prefer :/content/ -App 1.0 App.qml -Screen01 1.0 Screen01.ui.qml -Speedometer 1.0 Speedometer.qml -BatterySlider 1.0 BatterySlider.qml -TempSlider 1.0 TempSlider.qml -Debug1 1.0 Debug1.qml -BoltLeanAngle 1.0 BoltLeanAngle.qml -BikeStatus 1.0 BikeStatus.qml -BatteryReadout 1.0 BatteryReadout.qml -FullBatterySlider 1.0 FullBatterySlider.qml -TemperatureIsland 1.0 TemperatureIsland.qml -FullSlider 1.0 FullSlider.qml -BMSFaultDetails 1.0 BMSFaultDetails.qml -DebugItem1 1.0 DebugItem1.ui.qml -FaultMotorStatus 1.0 FaultMotorStatus.qml -SpeedometerDecorations 1.0 SpeedometerDecorations.qml -DebugMain 1.0 DebugMain.qml -DebugMotor 1.0 DebugMotor.qml -DebugOverview 1.0 DebugOverview.qml -DebugBMS 1.0 DebugBMS.qml -DebugPDU 1.0 DebugPDU.qml - diff --git a/build/content/qmltypes/content_foreign_types.txt b/build/content/qmltypes/content_foreign_types.txt deleted file mode 100644 index c8f0862..0000000 --- a/build/content/qmltypes/content_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc b/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc deleted file mode 100644 index 8bf9280..0000000 --- a/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc +++ /dev/null @@ -1,9 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - - - diff --git a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc b/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc deleted file mode 100644 index eb6ebe5..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir - - - diff --git a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp b/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp deleted file mode 100644 index 96bcd11..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp +++ /dev/null @@ -1,8 +0,0 @@ ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -/Bolt_Dash/Constants.qml -/Bolt_Dash/DirectoryFontLoader.qml -/Bolt_Dash/EventListModel.qml -/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp deleted file mode 100644 index af759c0..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp +++ /dev/null @@ -1,13 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp deleted file mode 100644 index 7f12564..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp +++ /dev/null @@ -1,15 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml ---json -/Users/mason/Documents/Code/dash-cpp/build/Bolt_Dash_qmllint.json diff --git a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp b/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp deleted file mode 100644 index 60410c3..0000000 --- a/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp +++ /dev/null @@ -1,10 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc ---module -Bolt_Dash diff --git a/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp b/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp deleted file mode 100644 index f9ae3a8..0000000 --- a/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: BSD-3-Clause - -// This file was generated by the qt_add_resources command. - -#include - -QT_DECLARE_EXTERN_RESOURCE(Bolt_Dash_raw_qml_0) - -namespace { - struct resourceReferenceKeeper { - resourceReferenceKeeper() { QT_KEEP_RESOURCE(Bolt_Dash_raw_qml_0); } - } resourceReferenceKeeperInstance; -} diff --git a/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp b/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp deleted file mode 100644 index 7242029..0000000 --- a/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: BSD-3-Clause - -// This file was generated by the qt_add_resources command. - -#include - -QT_DECLARE_EXTERN_RESOURCE(qmake_Bolt_Dash) - -namespace { - struct resourceReferenceKeeper { - resourceReferenceKeeper() { QT_KEEP_RESOURCE(qmake_Bolt_Dash); } - } resourceReferenceKeeperInstance; -} diff --git a/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc b/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc deleted file mode 100644 index bd21939..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dash_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash - - - diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp deleted file mode 100644 index 596d922..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - -QT_DECLARE_EXTERN_RESOURCE(qmlcache_Bolt_Dash); -QT_DECLARE_EXTERN_RESOURCE(qmake_Bolt_Dash); -QT_DECLARE_EXTERN_RESOURCE(Bolt_Dash_raw_qml_0); - - -QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_Bolt_Dash); - -class Bolt_DashPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -QT_KEEP_SYMBOL(qml_register_types_Bolt_Dash); -QT_KEEP_RESOURCE(qmlcache_Bolt_Dash); -QT_KEEP_RESOURCE(qmake_Bolt_Dash); -QT_KEEP_RESOURCE(Bolt_Dash_raw_qml_0); - } -}; - - - -#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp deleted file mode 100644 index c71ed27..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - -$<$>:QT_DECLARE_EXTERN_RESOURCE($,); -QT_DECLARE_EXTERN_RESOURCE(>);> -$<$>:QT_DECLARE_EXTERN_RESOURCE($,); -QT_DECLARE_EXTERN_RESOURCE(>);> - - -$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> - -class Bolt_DashPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - Bolt_DashPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -$<$:QT_KEEP_SYMBOL($);> -$<$>:QT_KEEP_RESOURCE($,); -QT_KEEP_RESOURCE(>);> -$<$>:QT_KEEP_RESOURCE($,); -QT_KEEP_RESOURCE(>);> - } -}; - - - -#include "Bolt_Dashplugin_Bolt_DashPlugin.moc" diff --git a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp b/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp deleted file mode 100644 index 7e5749c..0000000 --- a/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include -Q_IMPORT_PLUGIN(Bolt_DashPlugin) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake deleted file mode 100644 index 5dbeca3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake +++ /dev/null @@ -1,37 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make deleted file mode 100644 index 8b8e7da..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make +++ /dev/null @@ -1,342 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes - -imports/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate imports/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/qmldir -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp --name qmake_Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Generating .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --resource-name qmlcache_Bolt_Dash -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qml_loader_file_list.rsp - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp: imports/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/Constants.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp: imports/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Generating .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/DirectoryFontLoader.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp: imports/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Generating .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListModel.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /opt/homebrew/share/qt/libexec/qmlcachegen -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp: imports/Bolt_Dash/qmldir - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Generating .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmlcachegen --bare --resource-path /Bolt_Dash/EventListSimulator.qml -I /Users/mason/Documents/Code/dash-cpp/build/imports/ -I /opt/homebrew/share/qt/qml -i /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmldir --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmake_Bolt_Dash.qrc --resource /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc -imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Running rcc for resource Bolt_Dash_raw_qml_0" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp --name Bolt_Dash_raw_qml_0 /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/Bolt_Dash_raw_qml_0.qrc - -imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Running AUTOMOC file extraction for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -MF CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp > CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -MF CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp > CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s - -# Object files for target Bolt_Dash -Bolt_Dash_OBJECTS = \ -"CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" \ -"CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - -# External object files for target Bolt_Dash -Bolt_Dash_EXTERNAL_OBJECTS = - -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make -imports/Bolt_Dash/libBolt_Dash.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Linking CXX static library libBolt_Dash.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dash.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build: imports/Bolt_Dash/libBolt_Dash.a -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/Bolt_Dash.qmltypes -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake deleted file mode 100644 index 7b1de49..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean.cmake +++ /dev/null @@ -1,43 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qmlcache/Bolt_Dash_Constants_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp" - ".rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp" - ".rcc/qrc_Bolt_Dash_raw_qml_0.cpp" - ".rcc/qrc_qmake_Bolt_Dash.cpp" - "Bolt_Dash_autogen" - "CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt" - "Bolt_Dash.qmltypes" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o" - "CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o" - "CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o.d" - "bolt_dash_qmltyperegistrations.cpp" - "libBolt_Dash.a" - "libBolt_Dash.pdb" - "meta_types/Bolt_Dash_json_file_list.txt" - "meta_types/Bolt_Dash_json_file_list.txt.timestamp" - "meta_types/qt6bolt_dash_debug_metatypes.json" - "meta_types/qt6bolt_dash_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake deleted file mode 100644 index bff356f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libBolt_Dash.a" -) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make deleted file mode 100644 index 25601d2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts deleted file mode 100644 index 1271544..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make deleted file mode 100644 index 1044e3c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make deleted file mode 100644 index 5d07a6e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -isystem /opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0 -isystem /opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt deleted file mode 100644 index 8cd46de..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dash.a CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dash.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make deleted file mode 100644 index 4ce8023..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/progress.make +++ /dev/null @@ -1,22 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 1 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = 2 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 3 -CMAKE_PROGRESS_7 = 4 -CMAKE_PROGRESS_8 = -CMAKE_PROGRESS_9 = 5 -CMAKE_PROGRESS_10 = -CMAKE_PROGRESS_11 = 6 -CMAKE_PROGRESS_12 = -CMAKE_PROGRESS_13 = 7 -CMAKE_PROGRESS_14 = 8 -CMAKE_PROGRESS_15 = -CMAKE_PROGRESS_16 = 9 -CMAKE_PROGRESS_17 = -CMAKE_PROGRESS_18 = 10 -CMAKE_PROGRESS_19 = -CMAKE_PROGRESS_20 = 11 -CMAKE_PROGRESS_21 = 12 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json deleted file mode 100644 index f54014c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/deps", - "DEP_FILE_RULE_NAME" : "Bolt_Dash_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake deleted file mode 100644 index 67099ed..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/Bolt_Dash/Bolt_Dash_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dash_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make deleted file mode 100644 index e3e6d83..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp - -imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp - -Bolt_Dash_autogen: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make -.PHONY : Bolt_Dash_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build: Bolt_Dash_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 57e8aa6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dash_autogen/mocs_compilation.cpp" - "Bolt_Dash_autogen/timestamp" - "CMakeFiles/Bolt_Dash_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make deleted file mode 100644 index a5fe86e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts deleted file mode 100644 index 22459ea..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make deleted file mode 100644 index e9ac291..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 18 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index 3acae9f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make - -Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make -.PHONY : Bolt_Dash_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build: Bolt_Dash_autogen_timestamp_deps -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index b8f91e2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 8e69d79..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index e8de022..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make deleted file mode 100644 index 99bbdbe..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash.rsp - -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make -.PHONY : Bolt_Dash_qmllint - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build: Bolt_Dash_qmllint -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 463a13e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make deleted file mode 100644 index 5f5570c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts deleted file mode 100644 index 112cb0c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make deleted file mode 100644 index b35949e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint_json. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_json.rsp - -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make -.PHONY : Bolt_Dash_qmllint_json - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build: Bolt_Dash_qmllint_json -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index b86f4a9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 28c8d6d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index 2bb34d5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_json. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make deleted file mode 100644 index c5fecc6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make +++ /dev/null @@ -1,92 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmllint_module. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /opt/homebrew/bin/qmllint -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module: imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmllint/Bolt_Dash_module.rsp - -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make -.PHONY : Bolt_Dash_qmllint_module - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build: Bolt_Dash_qmllint_module -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 1b59bb9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 473476b..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index a08bc79..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmllint_module. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index a5de929..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/Bolt_Dash/Bolt_Dash_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dash_autogen/deps" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make deleted file mode 100644 index c8ab7da..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,129 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash.qmltypes --import-name=Bolt_Dash --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.generated/Bolt_Dash.qmltypes - -imports/Bolt_Dash/Bolt_Dash.qmltypes: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate imports/Bolt_Dash/Bolt_Dash.qmltypes - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6bolt_dash_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json - -imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include - -imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/Bolt_Dash_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target Bolt_Dash" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/timestamp - -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash.qmltypes -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/Bolt_Dash_autogen/timestamp -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/Bolt_Dash_json_file_list.txt -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json.gen -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make -.PHONY : Bolt_Dash_qmltyperegistration - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build: Bolt_Dash_qmltyperegistration -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index 4fa774e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dash.qmltypes" - "Bolt_Dash_autogen/mocs_compilation.cpp" - "Bolt_Dash_autogen/timestamp" - "CMakeFiles/Bolt_Dash_qmltyperegistration" - "bolt_dash_qmltyperegistrations.cpp" - "meta_types/Bolt_Dash_json_file_list.txt" - "meta_types/Bolt_Dash_json_file_list.txt.timestamp" - "meta_types/qt6bolt_dash_debug_metatypes.json" - "meta_types/qt6bolt_dash_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 83877ca..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index d1aa310..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_qmltyperegistration. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make deleted file mode 100644 index f21ffe6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,6 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 19 -CMAKE_PROGRESS_3 = 20 -CMAKE_PROGRESS_4 = -CMAKE_PROGRESS_5 = 21 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake deleted file mode 100644 index 8b56538..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make deleted file mode 100644 index 5cda9a3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -MF CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp > CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp -o CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s - -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make -.PHONY : Bolt_Dash_resources_1 - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build: Bolt_Dash_resources_1 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake deleted file mode 100644 index c9da9b5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o" - "CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash_resources_1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make deleted file mode 100644 index 9f34916..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts deleted file mode 100644 index 1471eb2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_1. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make deleted file mode 100644 index 3e9abce..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash_resources_1. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make deleted file mode 100644 index c78a5b8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake deleted file mode 100644 index 50d4f3d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make deleted file mode 100644 index 75415b0..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make +++ /dev/null @@ -1,101 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -MF CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp > CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp -o CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s - -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make -.PHONY : Bolt_Dash_resources_2 - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build: Bolt_Dash_resources_2 -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake deleted file mode 100644 index be13a64..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o" - "CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dash_resources_2.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make deleted file mode 100644 index 421a8fa..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dash_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts deleted file mode 100644 index 26925a3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dash_resources_2. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make deleted file mode 100644 index 9d32419..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dash_resources_2. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make deleted file mode 100644 index c78a5b8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/opt/homebrew/lib/QtCore.framework/Headers -F/opt/homebrew/lib -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtQml.framework/Headers -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make deleted file mode 100644 index 9e6c9ba..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 22 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make deleted file mode 100644 index 9e7e727..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make +++ /dev/null @@ -1,103 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dash_tooling. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make - -imports/Bolt_Dash/Constants.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Copying Constants.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/Constants.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Constants.qml - -imports/Bolt_Dash/DirectoryFontLoader.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Copying DirectoryFontLoader.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/DirectoryFontLoader.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/DirectoryFontLoader.qml - -imports/Bolt_Dash/EventListModel.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Copying EventListModel.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListModel.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListModel.qml - -imports/Bolt_Dash/EventListSimulator.qml: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Copying EventListSimulator.qml to /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml" - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/EventListSimulator.qml /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/EventListSimulator.qml - -Bolt_Dash_tooling: imports/Bolt_Dash/Constants.qml -Bolt_Dash_tooling: imports/Bolt_Dash/DirectoryFontLoader.qml -Bolt_Dash_tooling: imports/Bolt_Dash/EventListModel.qml -Bolt_Dash_tooling: imports/Bolt_Dash/EventListSimulator.qml -Bolt_Dash_tooling: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build.make -.PHONY : Bolt_Dash_tooling - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build: Bolt_Dash_tooling -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake deleted file mode 100644 index 180e064..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -file(REMOVE_RECURSE - "Constants.qml" - "DirectoryFontLoader.qml" - "EventListModel.qml" - "EventListSimulator.qml" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dash_tooling.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make deleted file mode 100644 index f1a0682..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dash_tooling. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts deleted file mode 100644 index fed7193..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dash_tooling. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make deleted file mode 100644 index b3c9864..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dash_tooling.dir/progress.make +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 23 -CMAKE_PROGRESS_3 = 24 -CMAKE_PROGRESS_4 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake deleted file mode 100644 index df41ca9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make deleted file mode 100644 index dc6d9fa..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make +++ /dev/null @@ -1,127 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -MF CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp > CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp -o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s - -# Object files for target Bolt_Dashplugin -Bolt_Dashplugin_OBJECTS = \ -"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - -# External object files for target Bolt_Dashplugin -Bolt_Dashplugin_EXTERNAL_OBJECTS = - -imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make -imports/Bolt_Dash/libBolt_Dashplugin.a: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libBolt_Dashplugin.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Bolt_Dashplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build: imports/Bolt_Dash/libBolt_Dashplugin.a -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake deleted file mode 100644 index 63e5451..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_autogen" - "CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o.d" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o.d" - "libBolt_Dashplugin.a" - "libBolt_Dashplugin.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake deleted file mode 100644 index 7029119..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libBolt_Dashplugin.a" -) diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make deleted file mode 100644 index 6c17ab3..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dashplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts deleted file mode 100644 index 7866f98..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make deleted file mode 100644 index 8c10503..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dashplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make deleted file mode 100644 index 820a575..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt deleted file mode 100644 index 540c37a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libBolt_Dashplugin.a CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libBolt_Dashplugin.a diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make deleted file mode 100644 index aefacce..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 25 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 26 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 5b9c32f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/deps", - "DEP_FILE_RULE_NAME" : "Bolt_Dashplugin_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "-Muri=Bolt_Dash" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 4a4b34f..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dashplugin_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make deleted file mode 100644 index 6be7c41..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen: imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp - -imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp - -Bolt_Dashplugin_autogen: imports/Bolt_Dash/Bolt_Dashplugin_autogen/timestamp -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make -.PHONY : Bolt_Dashplugin_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build: Bolt_Dashplugin_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index db9b29a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_autogen/mocs_compilation.cpp" - "Bolt_Dashplugin_autogen/timestamp" - "CMakeFiles/Bolt_Dashplugin_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 77a2a8d..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index fe735a7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index 151f64e..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,86 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin.cpp - -Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps -Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build: Bolt_Dashplugin_autogen_timestamp_deps -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 3299c3a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 193fce2..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index dbc0b2a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake deleted file mode 100644 index 09a6a7c..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" "gcc" "imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make deleted file mode 100644 index 8917328..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make +++ /dev/null @@ -1,116 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -MF CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp > CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp -o CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s - -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make -.PHONY : Bolt_Dashplugin_init - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build: Bolt_Dashplugin_init -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake deleted file mode 100644 index 6a9b604..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_init_autogen" - "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt" - "CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o.d" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o" - "CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/Bolt_Dashplugin_init.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make deleted file mode 100644 index 88959e8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for Bolt_Dashplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts deleted file mode 100644 index 31dd117..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for Bolt_Dashplugin_init. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make deleted file mode 100644 index 086af44..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for Bolt_Dashplugin_init. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make deleted file mode 100644 index c7656c9..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB -DQT_STATICPLUGIN - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include -I/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include -I/opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -I/opt/homebrew/include/QtQmlIntegration -I/opt/homebrew/include/QtQmlBuiltins -I/opt/homebrew/lib/QtNetwork.framework/Headers -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make deleted file mode 100644 index 8791cb6..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 27 -CMAKE_PROGRESS_2 = 28 - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json deleted file mode 100644 index 460267a..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreResourceInit.in.cpp", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_Bolt_DashPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/deps", - "DEP_FILE_RULE_NAME" : "Bolt_Dashplugin_init_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB", - "QT_STATICPLUGIN" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/include", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/.rcc/qrc_qmake_Bolt_Dash_init.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dash_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/bolt_dash_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake deleted file mode 100644 index 94fc314..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp" "custom" "imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make deleted file mode 100644 index 1707870..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_init_autogen. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp - -imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target Bolt_Dashplugin_init" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp - -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/Bolt_Dashplugin_init_autogen/timestamp -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make -.PHONY : Bolt_Dashplugin_init_autogen - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build: Bolt_Dashplugin_init_autogen -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 1b02a03..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "Bolt_Dashplugin_init_autogen/mocs_compilation.cpp" - "Bolt_Dashplugin_init_autogen/timestamp" - "CMakeFiles/Bolt_Dashplugin_init_autogen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_init_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make deleted file mode 100644 index b7a01da..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts deleted file mode 100644 index b0d50c8..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index 61aecdd..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,86 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for Bolt_Dashplugin_init_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/Bolt_Dashplugin_init.cpp - -Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps -Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build: Bolt_Dashplugin_init_autogen_timestamp_deps -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash && $(CMAKE_COMMAND) -P CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/clean - -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 1ede4ea..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index f5c74f7..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for Bolt_Dashplugin_init_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index a7fa8eb..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for Bolt_Dashplugin_init_autogen_timestamp_deps. diff --git a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make b/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 05e27f5..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/Bolt_Dash/CMakeFiles/progress.marks b/build/imports/Bolt_Dash/CMakeFiles/progress.marks deleted file mode 100644 index 209e3ef..0000000 --- a/build/imports/Bolt_Dash/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -20 diff --git a/build/imports/Bolt_Dash/Constants.qml b/build/imports/Bolt_Dash/Constants.qml deleted file mode 100644 index 6c20441..0000000 --- a/build/imports/Bolt_Dash/Constants.qml +++ /dev/null @@ -1,29 +0,0 @@ -pragma Singleton -import QtQuick 6.2 -// import QtQuick.Studio.Application - -QtObject { - readonly property int width: 800 - readonly property int height: 480 - - property string relativeFontDirectory: "fonts" - - /* Edit this comment to add your custom font */ - readonly property font font: Qt.font({ - family: Qt.application.font.family, - pixelSize: Qt.application.font.pixelSize - }) - readonly property font largeFont: Qt.font({ - family: Qt.application.font.family, - pixelSize: Qt.application.font.pixelSize * 1.6 - }) - - readonly property color backgroundColor: "#000000" - readonly property color textColor: "#ffffff" - readonly property color errColor: "#ff0000" - - - /*property StudioApplication application: StudioApplication { - fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) - }*/ -} diff --git a/build/imports/Bolt_Dash/DirectoryFontLoader.qml b/build/imports/Bolt_Dash/DirectoryFontLoader.qml deleted file mode 100644 index aa22eac..0000000 --- a/build/imports/Bolt_Dash/DirectoryFontLoader.qml +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (C) 2019 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import Qt.labs.folderlistmodel 6.2 - -QtObject { - id: loader - - property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) - property string relativeFontDirectory: "fonts" - - function loadFont(url) { - var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', - loader, - "dynamicFontLoader"); - } - - property FolderListModel folderModel: FolderListModel { - id: folderModel - folder: loader.fontDirectory - nameFilters: [ "*.ttf", "*.otf" ] - showDirs: false - - onStatusChanged: { - if (folderModel.status == FolderListModel.Ready) { - var i - for (i = 0; i < count; i++) { - loadFont(folderModel.get(i, "fileURL")) - } - } - } - } -} diff --git a/build/imports/Bolt_Dash/EventListModel.qml b/build/imports/Bolt_Dash/EventListModel.qml deleted file mode 100644 index bd5e5c3..0000000 --- a/build/imports/Bolt_Dash/EventListModel.qml +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (C) 2018 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 - -ListModel { - id: eventListModel - - ListElement { - eventId: "enterPressed" - eventDescription: "Emitted when pressing the enter button" - shortcut: "Return" - parameters: "Enter" - } -} diff --git a/build/imports/Bolt_Dash/EventListSimulator.qml b/build/imports/Bolt_Dash/EventListSimulator.qml deleted file mode 100644 index b7724cb..0000000 --- a/build/imports/Bolt_Dash/EventListSimulator.qml +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (C) 2018 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -import QtQuick 6.2 -import QtQuick.Studio.EventSimulator 1.0 -import QtQuick.Studio.EventSystem 1.0 - -QtObject { - id: simulator - property bool active: true - - property Timer __timer: Timer { - id: timer - interval: 100 - onTriggered: { - EventSimulator.show() - } - } - - Component.onCompleted: { - EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) - if (simulator.active) - timer.start() - } -} diff --git a/build/imports/Bolt_Dash/Makefile b/build/imports/Bolt_Dash/Makefile deleted file mode 100644 index 7aaaece..0000000 --- a/build/imports/Bolt_Dash/Makefile +++ /dev/null @@ -1,820 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule - -# Convenience name for target. -Bolt_Dash: imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/rule -.PHONY : Bolt_Dash - -# fast build rule for target. -Bolt_Dash/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build -.PHONY : Bolt_Dash/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule - -# Convenience name for target. -Bolt_Dash_qmltyperegistration: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/rule -.PHONY : Bolt_Dash_qmltyperegistration - -# fast build rule for target. -Bolt_Dash_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmltyperegistration.dir/build -.PHONY : Bolt_Dash_qmltyperegistration/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_1: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/rule -.PHONY : Bolt_Dash_resources_1 - -# fast build rule for target. -Bolt_Dash_resources_1/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build -.PHONY : Bolt_Dash_resources_1/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule - -# Convenience name for target. -Bolt_Dashplugin: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/rule -.PHONY : Bolt_Dashplugin - -# fast build rule for target. -Bolt_Dashplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build -.PHONY : Bolt_Dashplugin/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/rule -.PHONY : Bolt_Dash_qmllint - -# fast build rule for target. -Bolt_Dash_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint.dir/build -.PHONY : Bolt_Dash_qmllint/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_json: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/rule -.PHONY : Bolt_Dash_qmllint_json - -# fast build rule for target. -Bolt_Dash_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_json.dir/build -.PHONY : Bolt_Dash_qmllint_json/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule - -# Convenience name for target. -Bolt_Dash_qmllint_module: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/rule -.PHONY : Bolt_Dash_qmllint_module - -# fast build rule for target. -Bolt_Dash_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_qmllint_module.dir/build -.PHONY : Bolt_Dash_qmllint_module/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule - -# Convenience name for target. -Bolt_Dash_resources_2: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/rule -.PHONY : Bolt_Dash_resources_2 - -# fast build rule for target. -Bolt_Dash_resources_2/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build -.PHONY : Bolt_Dash_resources_2/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/rule -.PHONY : Bolt_Dashplugin_init - -# fast build rule for target. -Bolt_Dashplugin_init/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build -.PHONY : Bolt_Dashplugin_init/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dash_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dash_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dash_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule - -# Convenience name for target. -Bolt_Dash_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/rule -.PHONY : Bolt_Dash_autogen - -# fast build rule for target. -Bolt_Dash_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_autogen.dir/build -.PHONY : Bolt_Dash_autogen/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dashplugin_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dashplugin_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/rule -.PHONY : Bolt_Dashplugin_autogen - -# fast build rule for target. -Bolt_Dashplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_autogen.dir/build -.PHONY : Bolt_Dashplugin_autogen/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen_timestamp_deps: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps - -# fast build rule for target. -Bolt_Dashplugin_init_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen_timestamp_deps.dir/build -.PHONY : Bolt_Dashplugin_init_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule - -# Convenience name for target. -Bolt_Dashplugin_init_autogen: imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/rule -.PHONY : Bolt_Dashplugin_init_autogen - -# fast build rule for target. -Bolt_Dashplugin_init_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init_autogen.dir/build -.PHONY : Bolt_Dashplugin_init_autogen/fast - -.rcc/qmlcache/Bolt_Dash_Constants_qml.o: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_Constants_qml.i: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_Constants_qml.s: .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_Constants_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s: .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.o: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.i: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.s: .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListModel_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.o - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.i - -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s: .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.cpp.s - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.o: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o - -# target to build an object file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.o - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.i: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i - -# target to preprocess a source file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.i - -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.s: .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s - -# target to generate assembly for a file -.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s -.PHONY : .rcc/qmlcache/Bolt_Dash_qmlcache_loader.cpp.s - -.rcc/qrc_Bolt_Dash_raw_qml_0.o: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.o - -# target to build an object file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.o - -.rcc/qrc_Bolt_Dash_raw_qml_0.i: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.i - -# target to preprocess a source file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.i - -.rcc/qrc_Bolt_Dash_raw_qml_0.s: .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.s - -# target to generate assembly for a file -.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0.cpp.s - -.rcc/qrc_Bolt_Dash_raw_qml_0_init.o: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.o - -# target to build an object file -.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.o - -.rcc/qrc_Bolt_Dash_raw_qml_0_init.i: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.i - -# target to preprocess a source file -.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.i - -.rcc/qrc_Bolt_Dash_raw_qml_0_init.s: .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.s - -# target to generate assembly for a file -.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_2.dir/.rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s -.PHONY : .rcc/qrc_Bolt_Dash_raw_qml_0_init.cpp.s - -.rcc/qrc_qmake_Bolt_Dash.o: .rcc/qrc_qmake_Bolt_Dash.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash.o - -# target to build an object file -.rcc/qrc_qmake_Bolt_Dash.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.o - -.rcc/qrc_qmake_Bolt_Dash.i: .rcc/qrc_qmake_Bolt_Dash.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash.i - -# target to preprocess a source file -.rcc/qrc_qmake_Bolt_Dash.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.i - -.rcc/qrc_qmake_Bolt_Dash.s: .rcc/qrc_qmake_Bolt_Dash.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash.s - -# target to generate assembly for a file -.rcc/qrc_qmake_Bolt_Dash.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/.rcc/qrc_qmake_Bolt_Dash.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash.cpp.s - -.rcc/qrc_qmake_Bolt_Dash_init.o: .rcc/qrc_qmake_Bolt_Dash_init.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.o - -# target to build an object file -.rcc/qrc_qmake_Bolt_Dash_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.o -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.o - -.rcc/qrc_qmake_Bolt_Dash_init.i: .rcc/qrc_qmake_Bolt_Dash_init.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.i - -# target to preprocess a source file -.rcc/qrc_qmake_Bolt_Dash_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.i -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.i - -.rcc/qrc_qmake_Bolt_Dash_init.s: .rcc/qrc_qmake_Bolt_Dash_init.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.s - -# target to generate assembly for a file -.rcc/qrc_qmake_Bolt_Dash_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash_resources_1.dir/.rcc/qrc_qmake_Bolt_Dash_init.cpp.s -.PHONY : .rcc/qrc_qmake_Bolt_Dash_init.cpp.s - -Bolt_Dash_autogen/mocs_compilation.o: Bolt_Dash_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dash_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.o - -Bolt_Dash_autogen/mocs_compilation.i: Bolt_Dash_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dash_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.i - -Bolt_Dash_autogen/mocs_compilation.s: Bolt_Dash_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dash_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/Bolt_Dash_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dash_autogen/mocs_compilation.cpp.s - -Bolt_Dashplugin_Bolt_DashPlugin.o: Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.o - -# target to build an object file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.o -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.o - -Bolt_Dashplugin_Bolt_DashPlugin.i: Bolt_Dashplugin_Bolt_DashPlugin.cpp.i -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.i - -# target to preprocess a source file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.i -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.i - -Bolt_Dashplugin_Bolt_DashPlugin.s: Bolt_Dashplugin_Bolt_DashPlugin.cpp.s -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.s - -# target to generate assembly for a file -Bolt_Dashplugin_Bolt_DashPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_Bolt_DashPlugin.cpp.s -.PHONY : Bolt_Dashplugin_Bolt_DashPlugin.cpp.s - -Bolt_Dashplugin_autogen/mocs_compilation.o: Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.o - -Bolt_Dashplugin_autogen/mocs_compilation.i: Bolt_Dashplugin_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.i - -Bolt_Dashplugin_autogen/mocs_compilation.s: Bolt_Dashplugin_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dashplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin.dir/Bolt_Dashplugin_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_autogen/mocs_compilation.cpp.s - -Bolt_Dashplugin_init.o: Bolt_Dashplugin_init.cpp.o -.PHONY : Bolt_Dashplugin_init.o - -# target to build an object file -Bolt_Dashplugin_init.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.o -.PHONY : Bolt_Dashplugin_init.cpp.o - -Bolt_Dashplugin_init.i: Bolt_Dashplugin_init.cpp.i -.PHONY : Bolt_Dashplugin_init.i - -# target to preprocess a source file -Bolt_Dashplugin_init.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.i -.PHONY : Bolt_Dashplugin_init.cpp.i - -Bolt_Dashplugin_init.s: Bolt_Dashplugin_init.cpp.s -.PHONY : Bolt_Dashplugin_init.s - -# target to generate assembly for a file -Bolt_Dashplugin_init.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init.cpp.s -.PHONY : Bolt_Dashplugin_init.cpp.s - -Bolt_Dashplugin_init_autogen/mocs_compilation.o: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.o - -# target to build an object file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.o - -Bolt_Dashplugin_init_autogen/mocs_compilation.i: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.i - -# target to preprocess a source file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.i - -Bolt_Dashplugin_init_autogen/mocs_compilation.s: Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.s - -# target to generate assembly for a file -Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dashplugin_init.dir/Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s -.PHONY : Bolt_Dashplugin_init_autogen/mocs_compilation.cpp.s - -bolt_dash_qmltyperegistrations.o: bolt_dash_qmltyperegistrations.cpp.o -.PHONY : bolt_dash_qmltyperegistrations.o - -# target to build an object file -bolt_dash_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.o -.PHONY : bolt_dash_qmltyperegistrations.cpp.o - -bolt_dash_qmltyperegistrations.i: bolt_dash_qmltyperegistrations.cpp.i -.PHONY : bolt_dash_qmltyperegistrations.i - -# target to preprocess a source file -bolt_dash_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.i -.PHONY : bolt_dash_qmltyperegistrations.cpp.i - -bolt_dash_qmltyperegistrations.s: bolt_dash_qmltyperegistrations.cpp.s -.PHONY : bolt_dash_qmltyperegistrations.s - -# target to generate assembly for a file -bolt_dash_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/build.make imports/Bolt_Dash/CMakeFiles/Bolt_Dash.dir/bolt_dash_qmltyperegistrations.cpp.s -.PHONY : bolt_dash_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... Bolt_Dash_autogen" - @echo "... Bolt_Dash_autogen_timestamp_deps" - @echo "... Bolt_Dash_qmllint" - @echo "... Bolt_Dash_qmllint_json" - @echo "... Bolt_Dash_qmllint_module" - @echo "... Bolt_Dash_qmltyperegistration" - @echo "... Bolt_Dashplugin_autogen" - @echo "... Bolt_Dashplugin_autogen_timestamp_deps" - @echo "... Bolt_Dashplugin_init_autogen" - @echo "... Bolt_Dashplugin_init_autogen_timestamp_deps" - @echo "... Bolt_Dash" - @echo "... Bolt_Dash_resources_1" - @echo "... Bolt_Dash_resources_2" - @echo "... Bolt_Dash_tooling" - @echo "... Bolt_Dashplugin" - @echo "... Bolt_Dashplugin_init" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_Constants_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_DirectoryFontLoader_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListModel_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.o" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.i" - @echo "... .rcc/qmlcache/Bolt_Dash_EventListSimulator_qml.s" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.o" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.i" - @echo "... .rcc/qmlcache/Bolt_Dash_qmlcache_loader.s" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.o" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.i" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0.s" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.o" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.i" - @echo "... .rcc/qrc_Bolt_Dash_raw_qml_0_init.s" - @echo "... .rcc/qrc_qmake_Bolt_Dash.o" - @echo "... .rcc/qrc_qmake_Bolt_Dash.i" - @echo "... .rcc/qrc_qmake_Bolt_Dash.s" - @echo "... .rcc/qrc_qmake_Bolt_Dash_init.o" - @echo "... .rcc/qrc_qmake_Bolt_Dash_init.i" - @echo "... .rcc/qrc_qmake_Bolt_Dash_init.s" - @echo "... Bolt_Dash_autogen/mocs_compilation.o" - @echo "... Bolt_Dash_autogen/mocs_compilation.i" - @echo "... Bolt_Dash_autogen/mocs_compilation.s" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.o" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.i" - @echo "... Bolt_Dashplugin_Bolt_DashPlugin.s" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.o" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.i" - @echo "... Bolt_Dashplugin_autogen/mocs_compilation.s" - @echo "... Bolt_Dashplugin_init.o" - @echo "... Bolt_Dashplugin_init.i" - @echo "... Bolt_Dashplugin_init.s" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.o" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.i" - @echo "... Bolt_Dashplugin_init_autogen/mocs_compilation.s" - @echo "... bolt_dash_qmltyperegistrations.o" - @echo "... bolt_dash_qmltyperegistrations.i" - @echo "... bolt_dash_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/Bolt_Dash/cmake_install.cmake b/build/imports/Bolt_Dash/cmake_install.cmake deleted file mode 100644 index 0181251..0000000 --- a/build/imports/Bolt_Dash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/Bolt_Dash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json b/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/imports/Bolt_Dash/qmldir b/build/imports/Bolt_Dash/qmldir deleted file mode 100644 index 6e42ed5..0000000 --- a/build/imports/Bolt_Dash/qmldir +++ /dev/null @@ -1,11 +0,0 @@ -module Bolt_Dash -linktarget Bolt_Dashplugin -optional plugin Bolt_Dashplugin -classname Bolt_DashPlugin -typeinfo Bolt_Dash.qmltypes -prefer :/Bolt_Dash/ -singleton Constants 1.0 Constants.qml -DirectoryFontLoader 1.0 DirectoryFontLoader.qml -EventListModel 1.0 EventListModel.qml -EventListSimulator 1.0 EventListSimulator.qml - diff --git a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt b/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt deleted file mode 100644 index c8f0862..0000000 --- a/build/imports/Bolt_Dash/qmltypes/Bolt_Dash_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 05e27f5..0000000 --- a/build/imports/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/CMakeFiles/progress.marks b/build/imports/CMakeFiles/progress.marks deleted file mode 100644 index e85087a..0000000 --- a/build/imports/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -31 diff --git a/build/imports/IO/.rcc/qmake_IO.qrc b/build/imports/IO/.rcc/qmake_IO.qrc deleted file mode 100644 index ce07d2c..0000000 --- a/build/imports/IO/.rcc/qmake_IO.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmldir - - - diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin.rsp deleted file mode 100644 index 23e5f34..0000000 --- a/build/imports/IO/.rcc/qmllint/IOPlugin.rsp +++ /dev/null @@ -1,7 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp deleted file mode 100644 index 14862e3..0000000 --- a/build/imports/IO/.rcc/qmllint/IOPlugin_json.rsp +++ /dev/null @@ -1,9 +0,0 @@ ---bare --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc ---json -/Users/mason/Documents/Code/dash-cpp/build/IOPlugin_qmllint.json diff --git a/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp b/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp deleted file mode 100644 index 71d52f0..0000000 --- a/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp +++ /dev/null @@ -1,8 +0,0 @@ --I -/Users/mason/Documents/Code/dash-cpp/build/imports --I -/opt/homebrew/share/qt/qml ---resource -/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc ---module -IO diff --git a/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake b/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 05e27f5..0000000 --- a/build/imports/IO/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/mason/Documents/Code/dash-cpp/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake deleted file mode 100644 index a62b3c4..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO.dir/build.make b/build/imports/IO/CMakeFiles/IO.dir/build.make deleted file mode 100644 index 9e4b31b..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/build.make +++ /dev/null @@ -1,111 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/IO/CMakeFiles/IO.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/IO/CMakeFiles/IO.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IO.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/IO/CMakeFiles/IO.dir/flags.make - -imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IO.dir/flags.make -imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/IO_autogen/mocs_compilation.cpp -imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IO.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp - -imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp > CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i - -imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp -o CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s - -# Object files for target IO -IO_OBJECTS = \ -"CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" - -# External object files for target IO -IO_EXTERNAL_OBJECTS = - -imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/build.make -imports/IO/libIO.a: imports/IO/CMakeFiles/IO.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libIO.a" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO.dir/cmake_clean_target.cmake - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IO.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IO.dir/build: imports/IO/libIO.a -.PHONY : imports/IO/CMakeFiles/IO.dir/build - -imports/IO/CMakeFiles/IO.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IO.dir/clean - -imports/IO/CMakeFiles/IO.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IO.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake deleted file mode 100644 index 4aee8e5..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IO_autogen.dir/AutogenUsed.txt" - "CMakeFiles/IO_autogen.dir/ParseCache.txt" - "IO_autogen" - "CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o" - "CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o.d" - "libIO.a" - "libIO.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/IO.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake b/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake deleted file mode 100644 index 67a6915..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libIO.a" -) diff --git a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make deleted file mode 100644 index 2a52f97..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for IO. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts deleted file mode 100644 index f54395d..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for IO. diff --git a/build/imports/IO/CMakeFiles/IO.dir/depend.make b/build/imports/IO/CMakeFiles/IO.dir/depend.make deleted file mode 100644 index 8b32dbe..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for IO. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO.dir/flags.make b/build/imports/IO/CMakeFiles/IO.dir/flags.make deleted file mode 100644 index 7c56821..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include - -CXX_FLAGSarm64 = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - -CXX_FLAGS = -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk - diff --git a/build/imports/IO/CMakeFiles/IO.dir/link.txt b/build/imports/IO/CMakeFiles/IO.dir/link.txt deleted file mode 100644 index e930b5e..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/ar qc libIO.a CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libIO.a diff --git a/build/imports/IO/CMakeFiles/IO.dir/progress.make b/build/imports/IO/CMakeFiles/IO.dir/progress.make deleted file mode 100644 index efb07f4..0000000 --- a/build/imports/IO/CMakeFiles/IO.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 29 -CMAKE_PROGRESS_2 = - diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake deleted file mode 100644 index 0452e74..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake +++ /dev/null @@ -1,32 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make deleted file mode 100644 index 3456216..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/build.make +++ /dev/null @@ -1,203 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/IO/CMakeFiles/IOPlugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/IO/CMakeFiles/IOPlugin.dir/flags.make - -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: imports/IO/meta_types/IOPlugin_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running moc --collect-json for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json - -imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/qmltypes/IOPlugin_foreign_types.txt -imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic QML type registration for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes --import-name=IO --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated/IOPlugin.qmltypes - -imports/IO/IOPlugin.qmltypes: imports/IO/ioplugin_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate imports/IO/IOPlugin.qmltypes - -imports/IO/.rcc/qrc_qmake_IO.cpp: imports/IO/qmldir -imports/IO/.rcc/qrc_qmake_IO.cpp: imports/IO/.rcc/qmake_IO.qrc -imports/IO/.rcc/qrc_qmake_IO.cpp: /opt/homebrew/share/qt/libexec/rcc - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running rcc for resource qmake_IO" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/rcc --output /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp --name qmake_IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmake_IO.qrc - -imports/IO/meta_types/IOPlugin_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -imports/IO/meta_types/IOPlugin_json_file_list.txt: imports/IO/IOPlugin_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include - -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Generating meta_types/qt6ioplugin_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make -imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/IOPlugin_autogen/mocs_compilation.cpp -imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp - -imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp > CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i - -imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp -o CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s - -imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make -imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/ioplugin_qmltyperegistrations.cpp -imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -MF CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp - -imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp > CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i - -imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp -o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s - -imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make -imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/.rcc/qrc_qmake_IO.cpp -imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -MF CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp - -imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp > CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i - -imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp -o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s - -imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/flags.make -imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp -imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o: imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o -MF CMakeFiles/IOPlugin.dir/io.cpp.o.d -o CMakeFiles/IOPlugin.dir/io.cpp.o -c /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp - -imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPlugin.dir/io.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp > CMakeFiles/IOPlugin.dir/io.cpp.i - -imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPlugin.dir/io.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp -o CMakeFiles/IOPlugin.dir/io.cpp.s - -# Object files for target IOPlugin -IOPlugin_OBJECTS = \ -"CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" \ -"CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" \ -"CMakeFiles/IOPlugin.dir/io.cpp.o" - -# External object files for target IOPlugin -IOPlugin_EXTERNAL_OBJECTS = - -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/build.make -imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/libQt6QmlBuiltins.a -imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -imports/IO/libIOPlugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -imports/IO/libIOPlugin.dylib: imports/IO/CMakeFiles/IOPlugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX shared library libIOPlugin.dylib" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IOPlugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin.dir/build: imports/IO/libIOPlugin.dylib -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/build - -imports/IO/CMakeFiles/IOPlugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/clean - -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/.rcc/qrc_qmake_IO.cpp -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/IOPlugin.qmltypes -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/ioplugin_qmltyperegistrations.cpp -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/IOPlugin_json_file_list.txt -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json -imports/IO/CMakeFiles/IOPlugin.dir/depend: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake deleted file mode 100644 index 26f0b0f..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,27 +0,0 @@ -file(REMOVE_RECURSE - ".rcc/qrc_qmake_IO.cpp" - "CMakeFiles/IOPlugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt" - "IOPlugin_autogen" - "CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o" - "CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o.d" - "CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o.d" - "CMakeFiles/IOPlugin.dir/io.cpp.o" - "CMakeFiles/IOPlugin.dir/io.cpp.o.d" - "CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o" - "CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o.d" - "IOPlugin.qmltypes" - "ioplugin_qmltyperegistrations.cpp" - "libIOPlugin.dylib" - "libIOPlugin.pdb" - "meta_types/IOPlugin_json_file_list.txt" - "meta_types/IOPlugin_json_file_list.txt.timestamp" - "meta_types/qt6ioplugin_debug_metatypes.json" - "meta_types/qt6ioplugin_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/IOPlugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make deleted file mode 100644 index aad3b52..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for IOPlugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts deleted file mode 100644 index 72a52de..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for IOPlugin. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make deleted file mode 100644 index 48295f3..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for IOPlugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make deleted file mode 100644 index 0258ea0..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DIOPlugin_EXPORTS -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include -I/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0 -I/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore -I/opt/homebrew/include/QtQmlBuiltins/6.7.0 -I/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -isystem /opt/homebrew/lib/QtCore.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtQml.framework/Headers -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt b/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt deleted file mode 100644 index 183c519..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -dynamiclib -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries -o libIOPlugin.dylib -install_name @rpath/libIOPlugin.dylib CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o CMakeFiles/IOPlugin.dir/io.cpp.o -F/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make deleted file mode 100644 index bb29b4d..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin.dir/progress.make +++ /dev/null @@ -1,11 +0,0 @@ -CMAKE_PROGRESS_1 = 30 -CMAKE_PROGRESS_2 = -CMAKE_PROGRESS_3 = 31 -CMAKE_PROGRESS_4 = 32 -CMAKE_PROGRESS_5 = -CMAKE_PROGRESS_6 = 33 -CMAKE_PROGRESS_7 = -CMAKE_PROGRESS_8 = 34 -CMAKE_PROGRESS_9 = -CMAKE_PROGRESS_10 = 35 - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index d6269b8..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/deps", - "DEP_FILE_RULE_NAME" : "IOPlugin_autogen/timestamp", - "HEADERS" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.h", - "MU", - "EWIEGA46WW/moc_io.cpp", - null - ] - ], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "IOPlugin_EXPORTS", - "QT_CORE_LIB", - "QT_NETWORK_LIB", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtQml.framework/Versions/A/Headers/6.7.0/QtQml", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0", - "/opt/homebrew/lib/QtCore.framework/Versions/A/Headers/6.7.0/QtCore", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0", - "/opt/homebrew/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "--output-json" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/io.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index f3421f8..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/IO/IOPlugin_autogen/timestamp" "custom" "imports/IO/IOPlugin_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make deleted file mode 100644 index 47c540b..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make - -imports/IO/CMakeFiles/IOPlugin_autogen: imports/IO/IOPlugin_autogen/timestamp - -imports/IO/IOPlugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/IO/IOPlugin_autogen/timestamp: imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp - -IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen -IOPlugin_autogen: imports/IO/IOPlugin_autogen/timestamp -IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make -.PHONY : IOPlugin_autogen - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_autogen.dir/build: IOPlugin_autogen -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/build - -imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/clean - -imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index e4a0be1..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPlugin_autogen" - "IOPlugin_autogen/mocs_compilation.cpp" - "IOPlugin_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 5b71a63..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index a87cd5f..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_autogen. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make deleted file mode 100644 index 9e6c9e4..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 36 - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index c50ed61..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make - -IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make -.PHONY : IOPlugin_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build: IOPlugin_autogen_timestamp_deps -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build - -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/clean - -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 4ef147b..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 53c976f..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index 4bbae12..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make deleted file mode 100644 index 19ee9ff..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_qmllint. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make - -imports/IO/CMakeFiles/IOPlugin_qmllint: /opt/homebrew/bin/qmllint -imports/IO/CMakeFiles/IOPlugin_qmllint: imports/IO/.rcc/qmllint/IOPlugin.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E echo Nothing\ to\ do\ for\ target\ IOPlugin_qmllint. - -IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint -IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make -.PHONY : IOPlugin_qmllint - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build: IOPlugin_qmllint -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build - -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/clean - -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake deleted file mode 100644 index 0e74e13..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPlugin_qmllint" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_qmllint.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make deleted file mode 100644 index 1741b94..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_qmllint. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts deleted file mode 100644 index e22eafa..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_qmllint. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make deleted file mode 100644 index b05694d..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make +++ /dev/null @@ -1,87 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_qmllint_json. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make - -imports/IO/CMakeFiles/IOPlugin_qmllint_json: /opt/homebrew/bin/qmllint -imports/IO/CMakeFiles/IOPlugin_qmllint_json: imports/IO/.rcc/qmllint/IOPlugin_json.rsp - -IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json -IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make -.PHONY : IOPlugin_qmllint_json - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build: IOPlugin_qmllint_json -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build - -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/clean - -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake deleted file mode 100644 index 7a05bdd..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPlugin_qmllint_json" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_qmllint_json.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make deleted file mode 100644 index 0857ea3..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_qmllint_json. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts deleted file mode 100644 index c5ce1f8..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_qmllint_json. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make deleted file mode 100644 index 2fa3a55..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make +++ /dev/null @@ -1,88 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_qmllint_module. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make - -imports/IO/CMakeFiles/IOPlugin_qmllint_module: /opt/homebrew/bin/qmllint -imports/IO/CMakeFiles/IOPlugin_qmllint_module: imports/IO/.rcc/qmllint/IOPlugin_module.rsp - cd /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO && /opt/homebrew/bin/qmllint @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qmllint/IOPlugin_module.rsp - -IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module -IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make -.PHONY : IOPlugin_qmllint_module - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build: IOPlugin_qmllint_module -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build - -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/clean - -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake deleted file mode 100644 index 0a9d190..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPlugin_qmllint_module" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_qmllint_module.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make deleted file mode 100644 index 44eef48..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_qmllint_module. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts deleted file mode 100644 index a7d0835..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_qmllint_module. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake deleted file mode 100644 index 43d8e22..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/IO/IOPlugin_autogen/timestamp" "custom" "imports/IO/IOPlugin_autogen/deps" - ) - -# Pairs of files generated by the same build rule. -set(CMAKE_MULTIPLE_OUTPUT_PAIRS - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes" "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ) - - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make deleted file mode 100644 index c704e61..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make +++ /dev/null @@ -1,129 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPlugin_qmltyperegistration. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make - -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration: imports/IO/ioplugin_qmltyperegistrations.cpp -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration: imports/IO/IOPlugin.qmltypes - -imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/qmltypes/IOPlugin_foreign_types.txt -imports/IO/ioplugin_qmltyperegistrations.cpp: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/libexec/qmltyperegistrar -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json -imports/IO/ioplugin_qmltyperegistrations.cpp: /opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic QML type registration for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/qmltyperegistrar --generate-qmltypes=/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin.qmltypes --import-name=IO --major-version=1 --minor-version=0 @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E make_directory /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/.generated/IOPlugin.qmltypes - -imports/IO/IOPlugin.qmltypes: imports/IO/ioplugin_qmltyperegistrations.cpp - @$(CMAKE_COMMAND) -E touch_nocreate imports/IO/IOPlugin.qmltypes - -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating meta_types/qt6ioplugin_debug_metatypes.json" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E true - -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: /opt/homebrew/share/qt/libexec/moc -imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen: imports/IO/meta_types/IOPlugin_json_file_list.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Running moc --collect-json for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/moc -o /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen --collect-json @/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E copy_if_different /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json - -imports/IO/meta_types/IOPlugin_json_file_list.txt: /opt/homebrew/share/qt/libexec/cmake_automoc_parser -imports/IO/meta_types/IOPlugin_json_file_list.txt: imports/IO/IOPlugin_autogen/timestamp - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Running AUTOMOC file extraction for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/share/qt/libexec/cmake_automoc_parser --cmake-autogen-cache-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/ParseCache.txt --cmake-autogen-info-file /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json --output-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt --timestamp-file-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/IOPlugin_json_file_list.txt.timestamp --cmake-autogen-include-dir-path /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/include - -imports/IO/IOPlugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/IO/IOPlugin_autogen/timestamp: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Automatic MOC and UIC for target IOPlugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/timestamp - -IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration -IOPlugin_qmltyperegistration: imports/IO/IOPlugin.qmltypes -IOPlugin_qmltyperegistration: imports/IO/IOPlugin_autogen/timestamp -IOPlugin_qmltyperegistration: imports/IO/ioplugin_qmltyperegistrations.cpp -IOPlugin_qmltyperegistration: imports/IO/meta_types/IOPlugin_json_file_list.txt -IOPlugin_qmltyperegistration: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json -IOPlugin_qmltyperegistration: imports/IO/meta_types/qt6ioplugin_debug_metatypes.json.gen -IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make -.PHONY : IOPlugin_qmltyperegistration - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build: IOPlugin_qmltyperegistration -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build - -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/clean - -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake deleted file mode 100644 index fdd487c..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPlugin_qmltyperegistration" - "IOPlugin.qmltypes" - "IOPlugin_autogen/mocs_compilation.cpp" - "IOPlugin_autogen/timestamp" - "ioplugin_qmltyperegistrations.cpp" - "meta_types/IOPlugin_json_file_list.txt" - "meta_types/IOPlugin_json_file_list.txt.timestamp" - "meta_types/qt6ioplugin_debug_metatypes.json" - "meta_types/qt6ioplugin_debug_metatypes.json.gen" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPlugin_qmltyperegistration.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make deleted file mode 100644 index 7096ca2..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPlugin_qmltyperegistration. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts deleted file mode 100644 index c2ea182..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPlugin_qmltyperegistration. diff --git a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make b/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make deleted file mode 100644 index ee94005..0000000 --- a/build/imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/progress.make +++ /dev/null @@ -1,6 +0,0 @@ -CMAKE_PROGRESS_1 = -CMAKE_PROGRESS_2 = 37 -CMAKE_PROGRESS_3 = -CMAKE_PROGRESS_4 = 38 -CMAKE_PROGRESS_5 = - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake deleted file mode 100644 index 5909030..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d" - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" "gcc" "imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make deleted file mode 100644 index b993795..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/build.make +++ /dev/null @@ -1,131 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Include any dependencies generated for this target. -include imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make - -# Include the compile flags for this target's objects. -include imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -MF CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp > CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/IOPluginplugin_IOPlugin.cpp -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o: imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -MF CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -c /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp > CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i - -imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp -o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s - -# Object files for target IOPluginplugin -IOPluginplugin_OBJECTS = \ -"CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" \ -"CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" - -# External object files for target IOPluginplugin -IOPluginplugin_EXTERNAL_OBJECTS = - -imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/build.make -imports/IO/libIOPluginplugin.dylib: imports/IO/libIOPlugin.dylib -imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml -imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/libQt6QmlBuiltins.a -imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork -imports/IO/libIOPluginplugin.dylib: /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -imports/IO/libIOPluginplugin.dylib: imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared module libIOPluginplugin.dylib" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/IOPluginplugin.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPluginplugin.dir/build: imports/IO/libIOPluginplugin.dylib -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/build - -imports/IO/CMakeFiles/IOPluginplugin.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/clean - -imports/IO/CMakeFiles/IOPluginplugin.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake deleted file mode 100644 index 11c3ff4..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/cmake_clean.cmake +++ /dev/null @@ -1,16 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPluginplugin_autogen.dir/AutogenUsed.txt" - "CMakeFiles/IOPluginplugin_autogen.dir/ParseCache.txt" - "IOPluginplugin_autogen" - "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o" - "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o.d" - "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o" - "CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o.d" - "libIOPluginplugin.dylib" - "libIOPluginplugin.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/IOPluginplugin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make deleted file mode 100644 index daad4a6..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for IOPluginplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts deleted file mode 100644 index a622dec..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for IOPluginplugin. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make deleted file mode 100644 index 742f0e5..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for IOPluginplugin. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make deleted file mode 100644 index 9e300e6..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/flags.make +++ /dev/null @@ -1,12 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ -CXX_DEFINES = -DIOPluginplugin_EXPORTS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_NETWORK_LIB -DQT_PLUGIN -DQT_QMLBUILTINS_LIB -DQT_QMLINTEGRATION_LIB -DQT_QML_LIB - -CXX_INCLUDES = -I/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include -isystem /opt/homebrew/lib/QtQml.framework/Headers -iframework /opt/homebrew/lib -isystem /opt/homebrew/lib/QtCore.framework/Headers -isystem /opt/homebrew/share/qt/mkspecs/macx-clang -isystem /opt/homebrew/include -isystem /opt/homebrew/include/QtQmlIntegration -isystem /opt/homebrew/include/QtQmlBuiltins -isystem /opt/homebrew/lib/QtNetwork.framework/Headers - -CXX_FLAGSarm64 = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - -CXX_FLAGS = -g -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -fPIC - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt deleted file mode 100644 index d882557..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/c++ -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk -bundle -Wl,-headerpad_max_install_names -Xlinker -no_warn_duplicate_libraries -o libIOPluginplugin.dylib CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -F/opt/homebrew/lib -Wl,-rpath,/Users/mason/Documents/Code/dash-cpp/build/imports/IO -Wl,-rpath,/opt/homebrew/lib libIOPlugin.dylib /opt/homebrew/lib/QtQml.framework/Versions/A/QtQml /opt/homebrew/lib/libQt6QmlBuiltins.a /opt/homebrew/lib/QtNetwork.framework/Versions/A/QtNetwork /opt/homebrew/lib/QtCore.framework/Versions/A/QtCore -framework IOKit -framework DiskArbitration diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make deleted file mode 100644 index 6d7a107..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 39 -CMAKE_PROGRESS_2 = 40 -CMAKE_PROGRESS_3 = - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json deleted file mode 100644 index 9f0e144..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/deps", - "DEP_FILE_RULE_NAME" : "IOPluginplugin_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : - [ - "IOPluginplugin_EXPORTS", - "QT_CORE_LIB", - "QT_DEPRECATED_WARNINGS", - "QT_NETWORK_LIB", - "QT_PLUGIN", - "QT_QMLBUILTINS_LIB", - "QT_QMLINTEGRATION_LIB", - "QT_QML_LIB" - ], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/opt/homebrew/lib/QtQml.framework/Headers", - "/opt/homebrew/lib/QtQml.framework", - "/opt/homebrew/lib/QtCore.framework/Headers", - "/opt/homebrew/lib/QtCore.framework", - "/opt/homebrew/share/qt/mkspecs/macx-clang", - "/opt/homebrew/include", - "/opt/homebrew/include/QtQmlIntegration", - "/opt/homebrew/include/QtQmlBuiltins", - "/opt/homebrew/lib/QtNetwork.framework/Headers", - "/opt/homebrew/lib/QtNetwork.framework", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [ "-Muri=IO" ], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenUsed.txt", - "SOURCES" : - [ - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin.cpp", - "MU", - null - ] - ], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPlugin_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake deleted file mode 100644 index 8002672..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/IO/IOPluginplugin_autogen/timestamp" "custom" "imports/IO/IOPluginplugin_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make deleted file mode 100644 index c8daa63..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPluginplugin_autogen. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make - -imports/IO/CMakeFiles/IOPluginplugin_autogen: imports/IO/IOPluginplugin_autogen/timestamp - -imports/IO/IOPluginplugin_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/IO/IOPluginplugin_autogen/timestamp: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IOPluginplugin" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_autogen/timestamp - -IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen -IOPluginplugin_autogen: imports/IO/IOPluginplugin_autogen/timestamp -IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make -.PHONY : IOPluginplugin_autogen - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build: IOPluginplugin_autogen -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build - -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/clean - -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 99de594..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPluginplugin_autogen" - "IOPluginplugin_autogen/mocs_compilation.cpp" - "IOPluginplugin_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPluginplugin_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make deleted file mode 100644 index 58978a2..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPluginplugin_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts deleted file mode 100644 index b166c65..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPluginplugin_autogen. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make deleted file mode 100644 index b390e26..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 41 - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index 6bf0b49..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,86 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IOPluginplugin_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make - -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps: imports/IO/IOPluginplugin_IOPlugin.cpp - -IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps -IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make -.PHONY : IOPluginplugin_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build: IOPluginplugin_autogen_timestamp_deps -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build - -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/clean - -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index 2cf776e..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IOPluginplugin_autogen_timestamp_deps" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index cd6c5ef..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IOPluginplugin_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index f336632..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IOPluginplugin_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json b/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json deleted file mode 100644 index ea2532a..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "BUILD_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen", - "CMAKE_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build", - "CMAKE_CURRENT_BINARY_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO", - "CMAKE_CURRENT_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO", - "CMAKE_EXECUTABLE" : "/opt/homebrew/Cellar/cmake/3.30.0/bin/cmake", - "CMAKE_LIST_FILES" : - [ - "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO/CMakeLists.txt", - "/opt/homebrew/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in", - "/opt/homebrew/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp" - ], - "CMAKE_SOURCE_DIR" : "/Users/mason/Documents/Code/dash-cpp/Bolt_Dash", - "CROSS_CONFIG" : false, - "DEP_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/deps", - "DEP_FILE_RULE_NAME" : "IO_autogen/timestamp", - "HEADERS" : [], - "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], - "INCLUDE_DIR" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/include", - "MOC_COMPILATION_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/mocs_compilation.cpp", - "MOC_DEFINITIONS" : [], - "MOC_DEPEND_FILTERS" : - [ - [ - "Q_PLUGIN_METADATA", - "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" - ] - ], - "MOC_INCLUDES" : - [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include/c++/v1", - "/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include", - "/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk/usr/include", - "/Library/Developer/CommandLineTools/usr/include" - ], - "MOC_MACRO_NAMES" : - [ - "Q_OBJECT", - "Q_GADGET", - "Q_NAMESPACE", - "Q_NAMESPACE_EXPORT", - "Q_GADGET_EXPORT", - "Q_ENUM_NS" - ], - "MOC_OPTIONS" : [], - "MOC_PATH_PREFIX" : false, - "MOC_PREDEFS_CMD" : - [ - "/Library/Developer/CommandLineTools/usr/bin/c++", - "-dM", - "-E", - "-c", - "/opt/homebrew/Cellar/cmake/3.30.0/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - ], - "MOC_PREDEFS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/moc_predefs.h", - "MOC_RELAXED_MODE" : false, - "MOC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "MULTI_CONFIG" : false, - "PARALLEL" : 12, - "PARSE_CACHE_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/ParseCache.txt", - "QT_MOC_EXECUTABLE" : "/opt/homebrew/share/qt/libexec/moc", - "QT_UIC_EXECUTABLE" : "", - "QT_VERSION_MAJOR" : 6, - "QT_VERSION_MINOR" : 7, - "SETTINGS_FILE" : "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenUsed.txt", - "SOURCES" : [], - "UIC_OPTIONS" : [], - "UIC_SEARCH_PATHS" : [], - "UIC_SKIP" : - [ - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/.rcc/qrc_qmake_IO.cpp", - "/Users/mason/Documents/Code/dash-cpp/build/imports/IO/ioplugin_qmltyperegistrations.cpp" - ], - "UIC_UI_FILES" : [], - "USE_BETTER_GRAPH" : false, - "VERBOSITY" : 0 -} diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake deleted file mode 100644 index b73f639..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "" "imports/IO/IO_autogen/timestamp" "custom" "imports/IO/IO_autogen/deps" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make deleted file mode 100644 index ebbd18b..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/build.make +++ /dev/null @@ -1,93 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IO_autogen. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IO_autogen.dir/progress.make - -imports/IO/CMakeFiles/IO_autogen: imports/IO/IO_autogen/timestamp - -imports/IO/IO_autogen/timestamp: /opt/homebrew/share/qt/libexec/moc -imports/IO/IO_autogen/timestamp: imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/mason/Documents/Code/dash-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC and UIC for target IO" - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E cmake_autogen /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/AutogenInfo.json Debug - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E touch /Users/mason/Documents/Code/dash-cpp/build/imports/IO/IO_autogen/timestamp - -IO_autogen: imports/IO/CMakeFiles/IO_autogen -IO_autogen: imports/IO/IO_autogen/timestamp -IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/build.make -.PHONY : IO_autogen - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IO_autogen.dir/build: IO_autogen -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/build - -imports/IO/CMakeFiles/IO_autogen.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO_autogen.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/clean - -imports/IO/CMakeFiles/IO_autogen.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake deleted file mode 100644 index 9b30fb5..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/IO_autogen" - "IO_autogen/mocs_compilation.cpp" - "IO_autogen/timestamp" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IO_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make deleted file mode 100644 index 789cb81..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IO_autogen. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts deleted file mode 100644 index 4311093..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IO_autogen. diff --git a/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make b/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make deleted file mode 100644 index 225de34..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = - diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make deleted file mode 100644 index a757bb5..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for IO_autogen_timestamp_deps. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make - -IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make -.PHONY : IO_autogen_timestamp_deps - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build: IO_autogen_timestamp_deps -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build - -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/clean - -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/depend - diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake deleted file mode 100644 index fb47c0d..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/IO_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make deleted file mode 100644 index 427134d..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for IO_autogen_timestamp_deps. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts deleted file mode 100644 index a50422a..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for IO_autogen_timestamp_deps. diff --git a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make b/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/CMakeFiles/progress.marks b/build/imports/IO/CMakeFiles/progress.marks deleted file mode 100644 index b4de394..0000000 --- a/build/imports/IO/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -11 diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make deleted file mode 100644 index 4572b3c..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make +++ /dev/null @@ -1,83 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -# Utility rule file for qt_internal_plugins. - -# Include any custom commands dependencies for this target. -include imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make - -# Include the progress variables for this target. -include imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make - -qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make -.PHONY : qt_internal_plugins - -# Rule to build all files generated by this target. -imports/IO/CMakeFiles/qt_internal_plugins.dir/build: qt_internal_plugins -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/build - -imports/IO/CMakeFiles/qt_internal_plugins.dir/clean: - cd /Users/mason/Documents/Code/dash-cpp/build/imports/IO && $(CMAKE_COMMAND) -P CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/clean - -imports/IO/CMakeFiles/qt_internal_plugins.dir/depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/mason/Documents/Code/dash-cpp/Bolt_Dash /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO /Users/mason/Documents/Code/dash-cpp/build /Users/mason/Documents/Code/dash-cpp/build/imports/IO /Users/mason/Documents/Code/dash-cpp/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/depend - diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake deleted file mode 100644 index d36db1c..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/cmake_clean.cmake +++ /dev/null @@ -1,5 +0,0 @@ - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/qt_internal_plugins.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make deleted file mode 100644 index a7eb7e0..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for qt_internal_plugins. -# This may be replaced when dependencies are built. diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts deleted file mode 100644 index 6cd921c..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for qt_internal_plugins. diff --git a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make b/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make deleted file mode 100644 index 8b13789..0000000 --- a/build/imports/IO/CMakeFiles/qt_internal_plugins.dir/progress.make +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/imports/IO/IOPlugin_qml_module_dir_map.qrc b/build/imports/IO/IOPlugin_qml_module_dir_map.qrc deleted file mode 100644 index b4722d5..0000000 --- a/build/imports/IO/IOPlugin_qml_module_dir_map.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - /Users/mason/Documents/Code/dash-cpp/build/imports/IO - - - diff --git a/build/imports/IO/IOPluginplugin_IOPlugin.cpp b/build/imports/IO/IOPluginplugin_IOPlugin.cpp deleted file mode 100644 index 6041c49..0000000 --- a/build/imports/IO/IOPluginplugin_IOPlugin.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - - - -QT_DECLARE_EXTERN_SYMBOL_VOID(qml_register_types_IO); - -class IOPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - IOPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -QT_KEEP_SYMBOL(qml_register_types_IO); - } -}; - - - -#include "IOPluginplugin_IOPlugin.moc" diff --git a/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp b/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp deleted file mode 100644 index 1c1d41e..0000000 --- a/build/imports/IO/IOPluginplugin_IOPlugin_in.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// This file is autogenerated by CMake. Do not edit. - -#include -#include - - - - -$<$:QT_DECLARE_EXTERN_SYMBOL_VOID($);> - -class IOPlugin : public QQmlEngineExtensionPlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlEngineExtensionInterface_iid) - -public: - IOPlugin(QObject *parent = nullptr) : QQmlEngineExtensionPlugin(parent) - { - -$<$:QT_KEEP_SYMBOL($);> - } -}; - - - -#include "IOPluginplugin_IOPlugin.moc" diff --git a/build/imports/IO/Makefile b/build/imports/IO/Makefile deleted file mode 100644 index 041bac3..0000000 --- a/build/imports/IO/Makefile +++ /dev/null @@ -1,588 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports/IO//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -imports/IO/CMakeFiles/IO.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO.dir/rule -.PHONY : imports/IO/CMakeFiles/IO.dir/rule - -# Convenience name for target. -IO: imports/IO/CMakeFiles/IO.dir/rule -.PHONY : IO - -# fast build rule for target. -IO/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/build -.PHONY : IO/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin.dir/rule - -# Convenience name for target. -IOPlugin: imports/IO/CMakeFiles/IOPlugin.dir/rule -.PHONY : IOPlugin - -# fast build rule for target. -IOPlugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/build -.PHONY : IOPlugin/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule - -# Convenience name for target. -IOPlugin_qmltyperegistration: imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/rule -.PHONY : IOPlugin_qmltyperegistration - -# fast build rule for target. -IOPlugin_qmltyperegistration/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmltyperegistration.dir/build -.PHONY : IOPlugin_qmltyperegistration/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPluginplugin.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPluginplugin.dir/rule - -# Convenience name for target. -IOPluginplugin: imports/IO/CMakeFiles/IOPluginplugin.dir/rule -.PHONY : IOPluginplugin - -# fast build rule for target. -IOPluginplugin/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/build -.PHONY : IOPluginplugin/fast - -# Convenience name for target. -imports/IO/CMakeFiles/qt_internal_plugins.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : imports/IO/CMakeFiles/qt_internal_plugins.dir/rule - -# Convenience name for target. -qt_internal_plugins: imports/IO/CMakeFiles/qt_internal_plugins.dir/rule -.PHONY : qt_internal_plugins - -# fast build rule for target. -qt_internal_plugins/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/qt_internal_plugins.dir/build.make imports/IO/CMakeFiles/qt_internal_plugins.dir/build -.PHONY : qt_internal_plugins/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule - -# Convenience name for target. -IOPlugin_qmllint: imports/IO/CMakeFiles/IOPlugin_qmllint.dir/rule -.PHONY : IOPlugin_qmllint - -# fast build rule for target. -IOPlugin_qmllint/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint.dir/build -.PHONY : IOPlugin_qmllint/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule - -# Convenience name for target. -IOPlugin_qmllint_json: imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/rule -.PHONY : IOPlugin_qmllint_json - -# fast build rule for target. -IOPlugin_qmllint_json/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_json.dir/build -.PHONY : IOPlugin_qmllint_json/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule - -# Convenience name for target. -IOPlugin_qmllint_module: imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/rule -.PHONY : IOPlugin_qmllint_module - -# fast build rule for target. -IOPlugin_qmllint_module/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build.make imports/IO/CMakeFiles/IOPlugin_qmllint_module.dir/build -.PHONY : IOPlugin_qmllint_module/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule -.PHONY : imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IO_autogen_timestamp_deps: imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/rule -.PHONY : IO_autogen_timestamp_deps - -# fast build rule for target. -IO_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IO_autogen_timestamp_deps.dir/build -.PHONY : IO_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IO_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IO_autogen.dir/rule -.PHONY : imports/IO/CMakeFiles/IO_autogen.dir/rule - -# Convenience name for target. -IO_autogen: imports/IO/CMakeFiles/IO_autogen.dir/rule -.PHONY : IO_autogen - -# fast build rule for target. -IO_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO_autogen.dir/build.make imports/IO/CMakeFiles/IO_autogen.dir/build -.PHONY : IO_autogen/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IOPlugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/rule -.PHONY : IOPlugin_autogen_timestamp_deps - -# fast build rule for target. -IOPlugin_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen_timestamp_deps.dir/build -.PHONY : IOPlugin_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule - -# Convenience name for target. -IOPlugin_autogen: imports/IO/CMakeFiles/IOPlugin_autogen.dir/rule -.PHONY : IOPlugin_autogen - -# fast build rule for target. -IOPlugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPlugin_autogen.dir/build -.PHONY : IOPlugin_autogen/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule - -# Convenience name for target. -IOPluginplugin_autogen_timestamp_deps: imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/rule -.PHONY : IOPluginplugin_autogen_timestamp_deps - -# fast build rule for target. -IOPluginplugin_autogen_timestamp_deps/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen_timestamp_deps.dir/build -.PHONY : IOPluginplugin_autogen_timestamp_deps/fast - -# Convenience name for target. -imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule -.PHONY : imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule - -# Convenience name for target. -IOPluginplugin_autogen: imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/rule -.PHONY : IOPluginplugin_autogen - -# fast build rule for target. -IOPluginplugin_autogen/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build.make imports/IO/CMakeFiles/IOPluginplugin_autogen.dir/build -.PHONY : IOPluginplugin_autogen/fast - -.rcc/qrc_qmake_IO.o: .rcc/qrc_qmake_IO.cpp.o -.PHONY : .rcc/qrc_qmake_IO.o - -# target to build an object file -.rcc/qrc_qmake_IO.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.o -.PHONY : .rcc/qrc_qmake_IO.cpp.o - -.rcc/qrc_qmake_IO.i: .rcc/qrc_qmake_IO.cpp.i -.PHONY : .rcc/qrc_qmake_IO.i - -# target to preprocess a source file -.rcc/qrc_qmake_IO.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.i -.PHONY : .rcc/qrc_qmake_IO.cpp.i - -.rcc/qrc_qmake_IO.s: .rcc/qrc_qmake_IO.cpp.s -.PHONY : .rcc/qrc_qmake_IO.s - -# target to generate assembly for a file -.rcc/qrc_qmake_IO.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/.rcc/qrc_qmake_IO.cpp.s -.PHONY : .rcc/qrc_qmake_IO.cpp.s - -IOPlugin_autogen/mocs_compilation.o: IOPlugin_autogen/mocs_compilation.cpp.o -.PHONY : IOPlugin_autogen/mocs_compilation.o - -# target to build an object file -IOPlugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.o -.PHONY : IOPlugin_autogen/mocs_compilation.cpp.o - -IOPlugin_autogen/mocs_compilation.i: IOPlugin_autogen/mocs_compilation.cpp.i -.PHONY : IOPlugin_autogen/mocs_compilation.i - -# target to preprocess a source file -IOPlugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.i -.PHONY : IOPlugin_autogen/mocs_compilation.cpp.i - -IOPlugin_autogen/mocs_compilation.s: IOPlugin_autogen/mocs_compilation.cpp.s -.PHONY : IOPlugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -IOPlugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/IOPlugin_autogen/mocs_compilation.cpp.s -.PHONY : IOPlugin_autogen/mocs_compilation.cpp.s - -IOPluginplugin_IOPlugin.o: IOPluginplugin_IOPlugin.cpp.o -.PHONY : IOPluginplugin_IOPlugin.o - -# target to build an object file -IOPluginplugin_IOPlugin.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.o -.PHONY : IOPluginplugin_IOPlugin.cpp.o - -IOPluginplugin_IOPlugin.i: IOPluginplugin_IOPlugin.cpp.i -.PHONY : IOPluginplugin_IOPlugin.i - -# target to preprocess a source file -IOPluginplugin_IOPlugin.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.i -.PHONY : IOPluginplugin_IOPlugin.cpp.i - -IOPluginplugin_IOPlugin.s: IOPluginplugin_IOPlugin.cpp.s -.PHONY : IOPluginplugin_IOPlugin.s - -# target to generate assembly for a file -IOPluginplugin_IOPlugin.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_IOPlugin.cpp.s -.PHONY : IOPluginplugin_IOPlugin.cpp.s - -IOPluginplugin_autogen/mocs_compilation.o: IOPluginplugin_autogen/mocs_compilation.cpp.o -.PHONY : IOPluginplugin_autogen/mocs_compilation.o - -# target to build an object file -IOPluginplugin_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.o -.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.o - -IOPluginplugin_autogen/mocs_compilation.i: IOPluginplugin_autogen/mocs_compilation.cpp.i -.PHONY : IOPluginplugin_autogen/mocs_compilation.i - -# target to preprocess a source file -IOPluginplugin_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.i -.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.i - -IOPluginplugin_autogen/mocs_compilation.s: IOPluginplugin_autogen/mocs_compilation.cpp.s -.PHONY : IOPluginplugin_autogen/mocs_compilation.s - -# target to generate assembly for a file -IOPluginplugin_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPluginplugin.dir/build.make imports/IO/CMakeFiles/IOPluginplugin.dir/IOPluginplugin_autogen/mocs_compilation.cpp.s -.PHONY : IOPluginplugin_autogen/mocs_compilation.cpp.s - -IO_autogen/mocs_compilation.o: IO_autogen/mocs_compilation.cpp.o -.PHONY : IO_autogen/mocs_compilation.o - -# target to build an object file -IO_autogen/mocs_compilation.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.o -.PHONY : IO_autogen/mocs_compilation.cpp.o - -IO_autogen/mocs_compilation.i: IO_autogen/mocs_compilation.cpp.i -.PHONY : IO_autogen/mocs_compilation.i - -# target to preprocess a source file -IO_autogen/mocs_compilation.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.i -.PHONY : IO_autogen/mocs_compilation.cpp.i - -IO_autogen/mocs_compilation.s: IO_autogen/mocs_compilation.cpp.s -.PHONY : IO_autogen/mocs_compilation.s - -# target to generate assembly for a file -IO_autogen/mocs_compilation.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IO.dir/build.make imports/IO/CMakeFiles/IO.dir/IO_autogen/mocs_compilation.cpp.s -.PHONY : IO_autogen/mocs_compilation.cpp.s - -io.o: io.cpp.o -.PHONY : io.o - -# target to build an object file -io.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.o -.PHONY : io.cpp.o - -io.i: io.cpp.i -.PHONY : io.i - -# target to preprocess a source file -io.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.i -.PHONY : io.cpp.i - -io.s: io.cpp.s -.PHONY : io.s - -# target to generate assembly for a file -io.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/io.cpp.s -.PHONY : io.cpp.s - -ioplugin_qmltyperegistrations.o: ioplugin_qmltyperegistrations.cpp.o -.PHONY : ioplugin_qmltyperegistrations.o - -# target to build an object file -ioplugin_qmltyperegistrations.cpp.o: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.o -.PHONY : ioplugin_qmltyperegistrations.cpp.o - -ioplugin_qmltyperegistrations.i: ioplugin_qmltyperegistrations.cpp.i -.PHONY : ioplugin_qmltyperegistrations.i - -# target to preprocess a source file -ioplugin_qmltyperegistrations.cpp.i: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.i -.PHONY : ioplugin_qmltyperegistrations.cpp.i - -ioplugin_qmltyperegistrations.s: ioplugin_qmltyperegistrations.cpp.s -.PHONY : ioplugin_qmltyperegistrations.s - -# target to generate assembly for a file -ioplugin_qmltyperegistrations.cpp.s: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f imports/IO/CMakeFiles/IOPlugin.dir/build.make imports/IO/CMakeFiles/IOPlugin.dir/ioplugin_qmltyperegistrations.cpp.s -.PHONY : ioplugin_qmltyperegistrations.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... IOPlugin_autogen" - @echo "... IOPlugin_autogen_timestamp_deps" - @echo "... IOPlugin_qmllint" - @echo "... IOPlugin_qmllint_json" - @echo "... IOPlugin_qmllint_module" - @echo "... IOPlugin_qmltyperegistration" - @echo "... IOPluginplugin_autogen" - @echo "... IOPluginplugin_autogen_timestamp_deps" - @echo "... IO_autogen" - @echo "... IO_autogen_timestamp_deps" - @echo "... qt_internal_plugins" - @echo "... IO" - @echo "... IOPlugin" - @echo "... IOPluginplugin" - @echo "... .rcc/qrc_qmake_IO.o" - @echo "... .rcc/qrc_qmake_IO.i" - @echo "... .rcc/qrc_qmake_IO.s" - @echo "... IOPlugin_autogen/mocs_compilation.o" - @echo "... IOPlugin_autogen/mocs_compilation.i" - @echo "... IOPlugin_autogen/mocs_compilation.s" - @echo "... IOPluginplugin_IOPlugin.o" - @echo "... IOPluginplugin_IOPlugin.i" - @echo "... IOPluginplugin_IOPlugin.s" - @echo "... IOPluginplugin_autogen/mocs_compilation.o" - @echo "... IOPluginplugin_autogen/mocs_compilation.i" - @echo "... IOPluginplugin_autogen/mocs_compilation.s" - @echo "... IO_autogen/mocs_compilation.o" - @echo "... IO_autogen/mocs_compilation.i" - @echo "... IO_autogen/mocs_compilation.s" - @echo "... io.o" - @echo "... io.i" - @echo "... io.s" - @echo "... ioplugin_qmltyperegistrations.o" - @echo "... ioplugin_qmltyperegistrations.i" - @echo "... ioplugin_qmltyperegistrations.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/IO/cmake_install.cmake b/build/imports/IO/cmake_install.cmake deleted file mode 100644 index c49c819..0000000 --- a/build/imports/IO/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports/IO - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - diff --git a/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json b/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/imports/IO/qmldir b/build/imports/IO/qmldir deleted file mode 100644 index 21b85a2..0000000 --- a/build/imports/IO/qmldir +++ /dev/null @@ -1,7 +0,0 @@ -module IO -linktarget IOPluginplugin -optional plugin IOPluginplugin -classname IOPlugin -typeinfo IOPlugin.qmltypes -prefer :/IO/ - diff --git a/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt b/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt deleted file mode 100644 index c8f0862..0000000 --- a/build/imports/IO/qmltypes/IOPlugin_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json \ No newline at end of file diff --git a/build/imports/Makefile b/build/imports/Makefile deleted file mode 100644 index d84a0da..0000000 --- a/build/imports/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.30 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/mason/Documents/Code/dash-cpp/Bolt_Dash - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/mason/Documents/Code/dash-cpp/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/Cellar/cmake/3.30.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles /Users/mason/Documents/Code/dash-cpp/build/imports//CMakeFiles/progress.marks - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/mason/Documents/Code/dash-cpp/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/mason/Documents/Code/dash-cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 imports/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/mason/Documents/Code/dash-cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/imports/cmake_install.cmake b/build/imports/cmake_install.cmake deleted file mode 100644 index 3d0b4d7..0000000 --- a/build/imports/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /Users/mason/Documents/Code/dash-cpp/Bolt_Dash/imports - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/mason/Documents/Code/dash-cpp/build/imports/IO/cmake_install.cmake") -endif() - diff --git a/build/meta_types/qt6bolt_dashapp_debug_metatypes.json b/build/meta_types/qt6bolt_dashapp_debug_metatypes.json deleted file mode 100644 index e69de29..0000000 diff --git a/build/qmltypes/Bolt_DashApp_foreign_types.txt b/build/qmltypes/Bolt_DashApp_foreign_types.txt deleted file mode 100644 index 8595dec..0000000 --- a/build/qmltypes/Bolt_DashApp_foreign_types.txt +++ /dev/null @@ -1 +0,0 @@ ---foreign-types=/opt/homebrew/share/qt/metatypes/qt6core_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6gui_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qml_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlbuiltins_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6network_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6quick_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6qmlmodels_release_metatypes.json,/opt/homebrew/share/qt/metatypes/qt6opengl_release_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/content/meta_types/qt6content_debug_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/imports/Bolt_Dash/meta_types/qt6bolt_dash_debug_metatypes.json,/Users/mason/Documents/Code/dash-cpp/build/imports/IO/meta_types/qt6ioplugin_debug_metatypes.json \ No newline at end of file From 01ad726f62e3d175179e30dd79007f885b45dd4d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 28 Aug 2024 16:40:53 -0400 Subject: [PATCH 141/165] Added gps library to compile --- Bolt_Dash/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 24a19fd..4244469 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -43,6 +43,7 @@ target_link_libraries(Bolt_DashApp PRIVATE Qt6::Qml Qt6::Quick pigpio + gps ) # if (BUILD_QDS_COMPONENTS) From 5b6e94c682d920a4ec0bdfe094e7dd657f0c911c Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 10:45:48 -0400 Subject: [PATCH 142/165] Add lat and long to global program --- Bolt_Dash/backend.cpp | 26 ++++++++++++++++++++++++-- Bolt_Dash/backend.h | 10 ++++++++++ Bolt_Dash/gpsprocessing.cpp | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 9ae43c6..08d8e01 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -11,18 +11,19 @@ #include #include +std::mutex gps_m; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{}, m_bmsErrorCodes{}, - m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{} { + m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{}, m_lat{}, m_lon{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&gpsMain); + std::thread run_gps(&gpsMain, &m_lat, &m_lon, gps_m); run_gps.detach(); } @@ -221,6 +222,13 @@ std::vector Backend::bmsErrorCodesString() const { return m_bmsErrorCodesString; } +double Backend::lat() const { + return m_lat; +} + +double Backend::lon() const { + return m_lon; +} // } // Setter Functions @@ -364,6 +372,20 @@ void Backend::setBmsErrorCodesString(const std::vector warnings) { emit bmsErrorCodesStringChanged(); } } + +void Backend::setLat(const double lat) { + if (m_lat != lat) { + m_lat = lat; + emit latChanged(); + } +} + +void Backend::setLon(const double lon) { + if (m_lon != lon) { + m_lon = lon; + emit lonChanged(); + } +} // } std::thread can_thread(can::run); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index b426c5d..1017628 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -30,6 +30,8 @@ class Backend : public QObject { Q_PROPERTY(bool bmsError READ bmsError WRITE setBmsError NOTIFY bmsErrorChanged); Q_PROPERTY(bool bmsWarning READ bmsWarning WRITE setBmsWarning NOTIFY bmsWarningChanged); Q_PROPERTY(std::vector bmsErrorCodesString READ bmsErrorCodesString NOTIFY bmsErrorCodesStringChanged); + Q_PROPERTY(double lat READ lat WRITE setLat NOTIFY latChanged); + Q_PROPERTY(double lon READ lon WRITE setLon NOTIFY lonChanged); public: explicit Backend(QObject *parent = nullptr); @@ -53,6 +55,8 @@ class Backend : public QObject { bool bmsWarning() const; uint32_t bmsErrorCodes() const; std::vector bmsErrorCodesString() const; + double lat() const; + double lon() const; void setMotorTemp(const double temp); void setAuxVoltage(const double cap); @@ -74,6 +78,8 @@ class Backend : public QObject { void setBmsWarning(const bool warning); void setBmsErrorCodes(const uint32_t warnings); void setBmsErrorCodesString(const std::vector warnings); + void setLat(const double lat); + void setLon(const double lon); signals: void motorTempChanged(); @@ -96,6 +102,8 @@ class Backend : public QObject { void bmsWarningChanged(); void bmsErrorCodesChanged(); void bmsErrorCodesStringChanged(); + void latChanged(); + void lonChanged(); private: void updateVars(); @@ -120,6 +128,8 @@ class Backend : public QObject { bool m_bmsWarning; uint32_t m_bmsErrorCodes; std::vector m_bmsErrorCodesString; + double m_lat; + double m_lon; }; #endif // BACKEND_H diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index acc93e4..b27d0fa 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,6 +1,6 @@ #include "gpsprocessing.h" -int gpsMain() { +int gpsMain(double &lat, double &long, std::mutex m) { gpsmm gps_rec("localhost", DEFAULT_GPSD_PORT); if (!gps_rec.stream(WATCH_ENABLE | WATCH_JSON)) { From d9425a9e863825b209258422fa24b38b6e673d1e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 10:47:45 -0400 Subject: [PATCH 143/165] I think it helped --- Bolt_Dash/backend.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 08d8e01..0ae5361 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -12,6 +12,8 @@ #include std::mutex gps_m; +double *lat = 0.0; +double *lon = 0.0; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, @@ -23,7 +25,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&gpsMain, &m_lat, &m_lon, gps_m); + std::thread run_gps(&gpsMain, lat, lon, gps_m); run_gps.detach(); } @@ -55,6 +57,11 @@ void Backend::updateVars() { std::vector warnings = getErrorCodeStrings(data.bms_error_codes); setBmsErrorCodesString(warnings); m.unlock(); + + gps_m.lock(); + setLat(*lat); + setLon(*lon); + gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; std::this_thread::sleep_for(std::chrono::milliseconds(1)); From d6e93846cd3e1275354f27bc2a9b5b0b3f76deea Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 10:52:32 -0400 Subject: [PATCH 144/165] Maybe? --- Bolt_Dash/backend.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 0ae5361..414ae2f 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -12,8 +12,8 @@ #include std::mutex gps_m; -double *lat = 0.0; -double *lon = 0.0; +double lat = 0.0; +double lon = 0.0; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, @@ -59,8 +59,8 @@ void Backend::updateVars() { m.unlock(); gps_m.lock(); - setLat(*lat); - setLon(*lon); + setLat(lat); + setLon(lon); gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From b5d095237a793aa3c82bffe885058c2fa44281fb Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 12:26:53 -0400 Subject: [PATCH 145/165] Help me --- Bolt_Dash/backend.cpp | 12 +++++------- Bolt_Dash/backend.h | 2 ++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 414ae2f..75b9337 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -7,25 +7,23 @@ #include #include #include +#include #include #include #include -std::mutex gps_m; -double lat = 0.0; -double lon = 0.0; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{}, m_bmsErrorCodes{}, - m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{}, m_lat{}, m_lon{} { + m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{}, m_lat{}, m_lon{}, gps_lat{}, gps_lon{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&gpsMain, lat, lon, gps_m); + std::thread run_gps(&gpsMain, std::ref(gps_lat), std::ref(gps_lon), gps_m); run_gps.detach(); } @@ -59,8 +57,8 @@ void Backend::updateVars() { m.unlock(); gps_m.lock(); - setLat(lat); - setLon(lon); + setLat(gps_lat); + setLon(gps_lon); gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 1017628..f4a971f 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -130,6 +130,8 @@ class Backend : public QObject { std::vector m_bmsErrorCodesString; double m_lat; double m_lon; + double gps_lat; + double gps_lon; }; #endif // BACKEND_H From 4310540a8353389a10a60725f72a288eb665003e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 12:28:22 -0400 Subject: [PATCH 146/165] Add mutex for gps --- Bolt_Dash/backend.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 75b9337..c66e5eb 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -12,6 +12,7 @@ #include #include +std::mutex gps_m; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, From 4c26d2879fd8e1598cbc86acc5599d3ab1296fdc Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 12:47:43 -0400 Subject: [PATCH 147/165] Help me again plz --- Bolt_Dash/backend.cpp | 2 +- Bolt_Dash/gpsprocessing.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index c66e5eb..b330db8 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -24,7 +24,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&gpsMain, std::ref(gps_lat), std::ref(gps_lon), gps_m); + std::thread run_gps(&gpsMain, std::ref(gps_lat), std::ref(gps_lon), std::ref(gps_m)); run_gps.detach(); } diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index b27d0fa..e439c4e 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,6 +1,6 @@ #include "gpsprocessing.h" -int gpsMain(double &lat, double &long, std::mutex m) { +int gpsMain(double &lat, double &lon, std::mutex &m) { gpsmm gps_rec("localhost", DEFAULT_GPSD_PORT); if (!gps_rec.stream(WATCH_ENABLE | WATCH_JSON)) { From 2320ac6dfc1b8376415e8a71981018918c170f9f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:25:08 -0400 Subject: [PATCH 148/165] Almost goblinfest --- Bolt_Dash/backend.cpp | 1 - Bolt_Dash/gpsprocessing.cpp | 7 ++++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index b330db8..1857e7f 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -12,7 +12,6 @@ #include #include -std::mutex gps_m; // Create Backend class which can be included in QML Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index e439c4e..8e4e88b 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,6 +1,11 @@ #include "gpsprocessing.h" +#include -int gpsMain(double &lat, double &lon, std::mutex &m) { +std::mutex gps_m; +double gps_lat; +double gps_lon; + +int gpsMain() { gpsmm gps_rec("localhost", DEFAULT_GPSD_PORT); if (!gps_rec.stream(WATCH_ENABLE | WATCH_JSON)) { From 038ed51bb9678c8477d59e38785a8f0aba038d3e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:32:12 -0400 Subject: [PATCH 149/165] Plz work --- Bolt_Dash/backend.cpp | 2 +- Bolt_Dash/gpsprocessing.cpp | 1 - Bolt_Dash/gpsprocessing.h | 5 +++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 1857e7f..13d3bbe 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -23,7 +23,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage std::thread run_app(&web::runApp); run_app.detach(); - std::thread run_gps(&gpsMain, std::ref(gps_lat), std::ref(gps_lon), std::ref(gps_m)); + std::thread run_gps(&gpsMain); run_gps.detach(); } diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 8e4e88b..94766db 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -1,5 +1,4 @@ #include "gpsprocessing.h" -#include std::mutex gps_m; double gps_lat; diff --git a/Bolt_Dash/gpsprocessing.h b/Bolt_Dash/gpsprocessing.h index 1a6125b..9953da9 100644 --- a/Bolt_Dash/gpsprocessing.h +++ b/Bolt_Dash/gpsprocessing.h @@ -4,6 +4,11 @@ #include #include #include +#include #include +extern std::mutex gps_m; +extern double gps_lat; +extern double gps_lon; + int gpsMain(); \ No newline at end of file From 9029b7f3c0eff40eadb1369df0e7107124c1b166 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:34:44 -0400 Subject: [PATCH 150/165] Fix debug output --- Bolt_Dash/backend.cpp | 1 + Bolt_Dash/gpsprocessing.cpp | 31 ++++++++++++++++++------------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 13d3bbe..fc6492d 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -59,6 +59,7 @@ void Backend::updateVars() { gps_m.lock(); setLat(gps_lat); setLon(gps_lon); + std::cout << "Lat: " << lat() << " Lon: " << long() << std::endl; gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 94766db..3195330 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -30,19 +30,24 @@ int gpsMain() { !std::isnan(gpsd_data->fix.latitude) && !std::isnan(gpsd_data->fix.longitude)) { - std::cout << std::fixed << std::setprecision(6); - std::cout << "Latitude: " << gpsd_data->fix.latitude << std::endl; - std::cout << "Longitude: " << gpsd_data->fix.longitude << std::endl; - std::cout << "Altitude: " << gpsd_data->fix.altitude << " m" << std::endl; - std::cout << "Speed: " << gpsd_data->fix.speed * 3.6 << " km/h" << std::endl; - - // Use timespec_t for time - std::cout << "Timestamp: " - << gpsd_data->fix.time.tv_sec << "." - << std::setfill('0') << std::setw(9) - << gpsd_data->fix.time.tv_nsec << std::endl; - - std::cout << std::endl; + // std::cout << std::fixed << std::setprecision(6); + // std::cout << "Latitude: " << gpsd_data->fix.latitude << std::endl; + // std::cout << "Longitude: " << gpsd_data->fix.longitude << std::endl; + // std::cout << "Altitude: " << gpsd_data->fix.altitude << " m" << std::endl; + // std::cout << "Speed: " << gpsd_data->fix.speed * 3.6 << " km/h" << std::endl; + + // // Use timespec_t for time + // std::cout << "Timestamp: " + // << gpsd_data->fix.time.tv_sec << "." + // << std::setfill('0') << std::setw(9) + // << gpsd_data->fix.time.tv_nsec << std::endl; + + // std::cout << std::endl; + + gps_m.lock(); + gps_lat = gpsd_data->fix.latitude; + gps_lon = gpsd_data->fix.longitude; + gps_m.unlock(); } sleep(1); From e8475cb6776da35b5882e8e3a66c7cee2cc0cc56 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:36:45 -0400 Subject: [PATCH 151/165] Remove duplicate variables --- Bolt_Dash/backend.cpp | 2 +- Bolt_Dash/backend.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index fc6492d..122906f 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -16,7 +16,7 @@ Backend::Backend(QObject *parent) : QObject(parent), m_motorTemp{}, m_auxVoltage{}, m_auxPercent{}, m_packSOC{}, m_highCellTemp{}, m_lowCellTemp{}, m_bmsTemp{}, m_motorSpeed{}, m_bikeSpeed{}, m_mcTemp{}, m_bmsFault{}, m_packVoltage{}, m_motorOn{}, m_mcFault{}, m_bikeStatus{}, m_packCurrent{}, m_bmsErrorCodes{}, - m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{}, m_lat{}, m_lon{}, gps_lat{}, gps_lon{} { + m_bmsErrorCodesString{}, m_bmsError{}, m_bmsWarning{}, m_lat{}, m_lon{} { std::thread update_vars(&Backend::updateVars, this); update_vars.detach(); diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index f4a971f..1017628 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -130,8 +130,6 @@ class Backend : public QObject { std::vector m_bmsErrorCodesString; double m_lat; double m_lon; - double gps_lat; - double gps_lon; }; #endif // BACKEND_H From da982656cd875f55f357b4da22363385cb75da8d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:39:00 -0400 Subject: [PATCH 152/165] FIx lon printout --- Bolt_Dash/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index 122906f..b76d463 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -59,7 +59,7 @@ void Backend::updateVars() { gps_m.lock(); setLat(gps_lat); setLon(gps_lon); - std::cout << "Lat: " << lat() << " Lon: " << long() << std::endl; + std::cout << "Lat: " << lat() << " Lon: " << lon() << std::endl; gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From 7a591496d8a5fe831ea497b32e90926febe919ae Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:39:50 -0400 Subject: [PATCH 153/165] Add gps to web out --- Bolt_Dash/web.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Bolt_Dash/web.cpp b/Bolt_Dash/web.cpp index 3ad3028..44a0fc8 100644 --- a/Bolt_Dash/web.cpp +++ b/Bolt_Dash/web.cpp @@ -2,6 +2,7 @@ #include "can.h" #include "constants.h" #include "crow.h" +#include "gpsprocessing.h" #include namespace web { @@ -28,6 +29,10 @@ namespace web { response["motor_on"] = data.motor_on; response["bike_status"] = data.bike_status; m.unlock(); + gps_m.lock(); + response["lat"] = gps_lat; + response["lon"] = gps_lon; + gps_m.unlock(); return response; }); From 85b93f0b97df5c67cc3441ba3bd693498add1bde Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 13:43:47 -0400 Subject: [PATCH 154/165] Turn off debug mode by default --- Bolt_Dash/content/App.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 29035cc..a831738 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -8,7 +8,7 @@ import IO Window { width: mainScreen.width height: mainScreen.height - property bool debugMode: true + property bool debugMode: false visible: true From 9d0a5824ab999d72e89206be85757ec65d9fb288 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 30 Aug 2024 15:49:23 -0400 Subject: [PATCH 155/165] Add gps to debug screen --- Bolt_Dash/content/Debug1.qml | 2 ++ Bolt_Dash/content/DebugItem1.ui.qml | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index e31ee86..750ad8c 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -16,6 +16,8 @@ Item { bmsTemp: backend.bmsTemp motorSpeed: backend.motorSpeed bikeSpeed: backend.bikeSpeed + longitude: backend.lon + latitude: backend.lat } DebugMotor { diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 349be1c..894aee6 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -18,6 +18,8 @@ Item { property double motorSpeed: 0.0 property double bikeSpeed: 0.0 property double packVoltage: 0.0 + property double latitude: 0.0 + property double longitude: 0.0 // Using grid layout for organized display GridLayout { @@ -57,5 +59,11 @@ Item { Text { text: "Bike Speed:" } Text { text: qsTr("%1 mph").arg(bikeSpeed) } + + Text { text: "Longitude:" } + Text { text: qsTr("%1").arg(longitude) } + + Text { text: "Latitude:" } + Text { text: qsTr("%1").arg(latitude) } } } From cb21b58084bcb3aebd809bfcee5c2623fd41b960 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 12 Sep 2024 13:17:26 -0400 Subject: [PATCH 156/165] Add doxygen theme submodule --- .gitmodules | 3 +++ doxygen-awesome-css | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 doxygen-awesome-css diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d8da1e4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "doxygen-awesome-css"] + path = doxygen-awesome-css + url = https://github.com/jothepro/doxygen-awesome-css.git diff --git a/doxygen-awesome-css b/doxygen-awesome-css new file mode 160000 index 0000000..cc1bee0 --- /dev/null +++ b/doxygen-awesome-css @@ -0,0 +1 @@ +Subproject commit cc1bee08048035a81eff21e45a8d69e1e7962c3f From 2945d9888071ea61a05ab357100a348500679eed Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 12 Sep 2024 13:18:08 -0400 Subject: [PATCH 157/165] Add doxygen config file --- .gitignore | 4 +- doxy-config | 2884 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 2887 insertions(+), 1 deletion(-) create mode 100644 doxy-config diff --git a/.gitignore b/.gitignore index a0d6992..8def0e7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ *.qtds.** **/CMakeCache.txt .clangd -build/ \ No newline at end of file +build/ +html/ +latex/ \ No newline at end of file diff --git a/doxy-config b/doxy-config new file mode 100644 index 0000000..b6325cb --- /dev/null +++ b/doxy-config @@ -0,0 +1,2884 @@ +# Doxyfile 1.12.0 + +# This file describes the settings to be used by the documentation system +# Doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use Doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use Doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "BOLT Dash (C++)" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# With the PROJECT_ICON tag one can specify an icon that is included in the tabs +# when the HTML document is shown. Doxygen will copy the logo to the output +# directory. + +PROJECT_ICON = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where Doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this +# option can be useful when feeding Doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + +# If the ALLOW_UNICODE_NAMES tag is set to YES, Doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by Doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, Doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, Doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, Doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, Doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which Doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where Doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, Doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then Doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by Doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# By default Python docstrings are displayed as preformatted text and Doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# Doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as Doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then Doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by Doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make Doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by Doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then Doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by Doxygen, so you can +# mix Doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 6. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 6 + +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0 and GITHUB use the lower case version of title +# with any whitespace replaced by '-' and punctuation characters removed. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + +# When enabled Doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let Doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also makes the inheritance and +# collaboration diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software) sources only. Doxygen will parse +# them like normal C++ but will assume all classes use public instead of private +# inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# Doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then Doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, Doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# Doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run Doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number of threads Doxygen is allowed to use +# during processing. When set to 0 Doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which effectively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, Doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# With the correct setting of option CASE_SENSE_NAMES Doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and macOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. + +CASE_SENSE_NAMES = SYSTEM + +# If the HIDE_SCOPE_NAMES tag is set to NO then Doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then Doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES then Doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then Doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then Doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then Doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then Doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and Doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING Doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# Doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by Doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by Doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents Doxygen's defaults, run Doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run Doxygen from a directory containing a file called +# DoxygenLayout.xml, Doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +# The EXTERNAL_TOOL_PATH tag can be used to extend the search path (PATH +# environment variable) so that external tools such as latex and gs can be +# found. +# Note: Directories specified with EXTERNAL_TOOL_PATH are added in front of the +# path already specified by the PATH variable, and are added in the order +# specified. +# Note: This option is particularly useful for macOS version 14 (Sonoma) and +# higher, when running Doxygen from Doxywizard, because in this case any user- +# defined changes to the PATH are ignored. A typical example on macOS is to set +# EXTERNAL_TOOL_PATH = /Library/TeX/texbin /usr/local/bin +# together with the standard path, the full search path used by doxygen when +# launching external tools will then become +# PATH=/Library/TeX/texbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin + +EXTERNAL_TOOL_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by Doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by Doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then Doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, Doxygen will generate warnings for +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# If WARN_IF_INCOMPLETE_DOC is set to YES, Doxygen will warn about incomplete +# function parameter documentation. If set to NO, Doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, Doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, Doxygen will warn about +# undocumented enumeration values. If set to NO, Doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + +# If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the Doxygen process Doxygen will return with a non-zero status. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then Doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined Doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that Doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of Doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = Bolt_Dash/ + +# This tag can be used to specify the character encoding of the source files +# that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# This tag can be used to specify the character encoding of the source files +# that Doxygen parses The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING) if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). +# See also: INPUT_ENCODING for further information on supported encodings. + +INPUT_FILE_ENCODING = + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by Doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm, +# *.cpp, *.cppm, *.ccm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, +# *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, +# *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to +# be provided as Doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cxxm \ + *.cpp \ + *.cppm \ + *.ccm \ + *.c++ \ + *.c++m \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.ixx \ + *.l \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f18 \ + *.f \ + *.for \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf \ + *.ice + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which Doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# ANamespace::AClass, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that Doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that Doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by Doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by Doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the Doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. + +FORTRAN_COMMENT_AFTER = 72 + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# multi-line macros, enums or list initialized variables directly into the +# documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct Doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of Doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by Doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then Doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, Doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank Doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that Doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that Doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of Doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank Doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that Doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank Doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that Doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by Doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = doxygen-awesome-css/doxygen-awesome.css + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generates light mode output, DARK always +# generates dark mode output, AUTO_LIGHT automatically sets the mode according +# to the user preference, uses light mode if no preference is set (the default), +# AUTO_DARK automatically sets the mode according to the user preference, uses +# dark mode if no preference is set and TOGGLE allows a user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = LIGHT + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a color-wheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use gray-scales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# If the HTML_CODE_FOLDING tag is set to YES then classes and functions can be +# dynamically folded and expanded in the generated HTML source code. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_CODE_FOLDING = YES + +# If the HTML_COPY_CLIPBOARD tag is set to YES then Doxygen will show an icon in +# the top right corner of code and text fragments that allows the user to copy +# its content to the clipboard. Note this only works if supported by the browser +# and the web page is served via a secure context (see: +# https://www.w3.org/TR/secure-contexts/), i.e. using the https: or file: +# protocol. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COPY_CLIPBOARD = YES + +# Doxygen stores a couple of settings persistently in the browser (via e.g. +# cookies). By default these settings apply to all HTML pages generated by +# Doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store +# the settings under a project specific key, such that the user preferences will +# be stored separately. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_PROJECT_COOKIE = + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, Doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then Doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by Doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# Doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty Doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by Doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATE_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# Doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# When the SHOW_ENUM_VALUES tag is set doxygen will show the specified +# enumeration values besides the enumeration mnemonics. +# The default value is: NO. + +SHOW_ENUM_VALUES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, Doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the OBFUSCATE_EMAILS tag is set to YES, Doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + +# If the HTML_FORMULA_FORMAT option is set to svg, Doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# Doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for MathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with JavaScript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled Doxygen will generate a search box for +# the HTML output. The underlying search engine uses JavaScript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the JavaScript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /Node, +# Edge and Graph Attributes specification You need to make sure dot is able +# to find the font, which can be done by putting it in a standard location or by +# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. Default graphviz fontsize is 14. +# The default value is: fontname=Helvetica,fontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" + +# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can +# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. Complete documentation about +# arrows shapes. +# The default value is: labelfontname=Helvetica,labelfontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" + +# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes +# around nodes set 'shape=plain' or 'shape=plaintext' Shapes specification +# The default value is: shape=box,height=0.2,width=0.4. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" + +# You can set the path where dot can find font specified with fontname in +# DOT_COMMON_ATTR and others dot attributes. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES or GRAPH or BUILTIN then Doxygen will +# generate a graph for each documented class showing the direct and indirect +# inheritance relations. In case the CLASS_GRAPH tag is set to YES or GRAPH and +# HAVE_DOT is enabled as well, then dot will be used to draw the graph. In case +# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the +# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used. +# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance +# relations will be shown as texts / links. Explicit enabling an inheritance +# graph or choosing a different representation for an inheritance graph of a +# specific class, can be accomplished by means of the command \inheritancegraph. +# Disabling an inheritance graph can be accomplished by means of the command +# \hideinheritancegraph. +# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN. +# The default value is: YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then Doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. Explicit enabling a collaboration graph, +# when COLLABORATION_GRAPH is set to NO, can be accomplished by means of the +# command \collaborationgraph. Disabling a collaboration graph can be +# accomplished by means of the command \hidecollaborationgraph. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then Doxygen will generate a graph for +# groups, showing the direct groups dependencies. Explicit enabling a group +# dependency graph, when GROUP_GRAPHS is set to NO, can be accomplished by means +# of the command \groupgraph. Disabling a directory graph can be accomplished by +# means of the command \hidegroupgraph. See also the chapter Grouping in the +# manual. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, Doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag UML_LOOK is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the DOT_UML_DETAILS tag is set to NO, Doxygen will show attributes and +# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS +# tag is set to YES, Doxygen will add type and arguments for attributes and +# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, Doxygen +# will not generate fields with class member information in the UML graphs. The +# class diagrams will look similar to the default class diagrams but using UML +# notation for the relationships. +# Possible values are: NO, YES and NONE. +# The default value is: NO. +# This tag requires that the tag UML_LOOK is set to YES. + +DOT_UML_DETAILS = NO + +# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters +# to display on a single line. If the actual line length exceeds this threshold +# significantly it will be wrapped across multiple lines. Some heuristics are +# applied to avoid ugly line breaks. +# Minimum value: 0, maximum value: 1000, default value: 17. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_WRAP_THRESHOLD = 17 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = NO + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then Doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. Explicit enabling an include graph, when INCLUDE_GRAPH is is set to NO, +# can be accomplished by means of the command \includegraph. Disabling an +# include graph can be accomplished by means of the command \hideincludegraph. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then Doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. Explicit enabling an included by graph, when INCLUDED_BY_GRAPH is set +# to NO, can be accomplished by means of the command \includedbygraph. Disabling +# an included by graph can be accomplished by means of the command +# \hideincludedbygraph. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then Doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. Disabling a call graph can be +# accomplished by means of the command \hidecallgraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH tag is set to YES then Doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. Disabling a caller graph can be +# accomplished by means of the command \hidecallergraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY tag is set to YES then Doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then Doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. Explicit enabling a directory graph, when +# DIRECTORY_GRAPH is set to NO, can be accomplished by means of the command +# \directorygraph. Disabling a directory graph can be accomplished by means of +# the command \hidedirectorygraph. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels +# of child directories generated in directory dependency graphs by dot. +# Minimum value: 1, maximum value: 25, default value: 1. +# This tag requires that the tag DIRECTORY_GRAPH is set to YES. + +DIR_GRAPH_MAX_DEPTH = 1 + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. For an explanation of the image formats see the section +# output formats in the documentation of the dot tool (Graphviz (see: +# https://www.graphviz.org/)). +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, +# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# png:gdiplus:gdiplus. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = NO + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# You can include diagrams made with dia in Doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using PlantUML, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file or to the filename of jar file +# to be used. If left blank, it is assumed PlantUML is not used or called during +# a preprocessing step. Doxygen will generate a warning when it encounters a +# \startuml command in this case and will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using PlantUML, the PLANTUML_CFG_FILE tag can be used to specify a +# configuration file for PlantUML. + +PLANTUML_CFG_FILE = + +# When using PlantUML, the specified paths are searched for files specified by +# the !include statement in a PlantUML block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, Doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES Doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# Note: This tag requires that UML_LOOK isn't set, i.e. the Doxygen internal +# graphical representation for inheritance and collaboration diagrams is used. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, Doxygen will remove the intermediate +# files that are used to generate the various graphs. +# +# Note: This setting is not only used for dot files but also for msc temporary +# files. +# The default value is: YES. + +DOT_CLEANUP = YES + +# You can define message sequence charts within Doxygen comments using the \msc +# command. If the MSCGEN_TOOL tag is left empty (the default), then Doxygen will +# use a built-in version of mscgen tool to produce the charts. Alternatively, +# the MSCGEN_TOOL tag can also specify the name an external tool. For instance, +# specifying prog as the value, Doxygen will call the tool as prog -T +# -o . The external tool should support +# output file formats "png", "eps", "svg", and "ismap". + +MSCGEN_TOOL = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = From f97f7d14457eaca3fbc01093004dea1dda70e29d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 12 Sep 2024 13:39:10 -0400 Subject: [PATCH 158/165] Add doxygen documentation to the code --- Bolt_Dash/backend.h | 283 ++++++++++++++++++++++++++++++++++++++++++++ Bolt_Dash/can.h | 68 +++++++++++ 2 files changed, 351 insertions(+) diff --git a/Bolt_Dash/backend.h b/Bolt_Dash/backend.h index 1017628..d1c2133 100644 --- a/Bolt_Dash/backend.h +++ b/Bolt_Dash/backend.h @@ -7,6 +7,11 @@ #include #include +/** + * @brief A class to represent the C++ backend of the dash which can + * be included in QML to give the frontend access. + * + */ class Backend : public QObject { Q_OBJECT QML_ELEMENT @@ -34,51 +39,329 @@ class Backend : public QObject { Q_PROPERTY(double lon READ lon WRITE setLon NOTIFY lonChanged); public: + /** + * @brief Create Backend class which can be included in QML + * + * @param parent the QObject parent above the Backend + */ explicit Backend(QObject *parent = nullptr); + + /** + * @brief Get the motor temperature + * + * @return The temperature in degrees Celsius + */ double motorTemp() const; + + /** + * @brief Get the voltage of the aux pack + * + * @return The voltage in volts + */ double auxVoltage() const; + + /** + * @brief Get the percent charge of the aux pack + * + * @return The percentage as a percent (e.g. 87.3) + */ double auxPercent() const; + + /** + * @brief Get the state of charge of the main battery + * + * @return The percentage as a percent (e.g. 87.3) + */ double packSOC() const; + + /** + * @brief Get the voltage of the main battery + * + * @return The voltage in volts + */ double packVoltage() const; + + /** + * @brief Get the highest cell temperature in the pack + * + * @return The temperature in degrees Celsius + */ double highCellTemp() const; + + /** + * @brief Get the lowest cell temperature in the pack + * + * @return The temperature in degrees Celsius + */ double lowCellTemp() const; + + /** + * @brief Get the temeprature of the BMS + * + * @return The temperature in degrees Celsius + */ double bmsTemp() const; + + /** + * @brief Get the speed of the motor + * + * @return The motor speed in RPM + */ double motorSpeed() const; + + /** + * @brief Get the speed of the bike + * + * @return The speed in mph + */ double bikeSpeed() const; + + /** + * @brief Get the temperature of the motor controller + * + * @return The highest temperature of the three sensors in degrees Celsius + */ double mcTemp() const; + + /** + * @brief Get whether or not there is a BMS fault + * + * @return true if there is a fault + * @return false if all is good + */ bool bmsFault() const; + + /** + * @brief Get whether or not there is a motor controller fault + * + * @return true if there is a fault + * @return false if all is good + */ bool mcFault() const; + + /** + * @brief Get whether or not the motor is currently active + * + * @return true if the motor can be moved with the throttle + * @return false if it cannot be moved electrically + */ bool motorOn() const; + + /** + * @brief Get the current status of the bike. + * 1. Idle + * 2. Precharge + * 3. Ready + * 4. Active + * 5. There is a fault somewhere + * + * @return An integer representing the status as shown above + */ int bikeStatus() const; + + /** + * @brief Get the current flowing from the main pack + * + * @return The current in amps + */ double packCurrent() const; + + /** + * @brief Get whether or not there is a BMS error + * + * @return true if there is any major error + * @return false if there is not + */ bool bmsError() const; + + /** + * @brief Get whether or not there is a BMS warning + * + * @return true if there is a minor error/warning + * @return false if there is not + */ bool bmsWarning() const; + + /** + * @brief Get the BMS error codes as a bitfield + * + * @return A 32-bit integer with each bit representing a different error + */ uint32_t bmsErrorCodes() const; + + /** + * @brief Get the BMS error codes as a vector of strings + * + * @return A Vector of Qt-Strings with each string representing a different error + */ std::vector bmsErrorCodesString() const; + + /** + * @brief Get the latitude of the bike + * + * @return The latitude in degrees + */ double lat() const; + + /** + * @brief Get the longitude of the bike + * + * @return The longitude in degrees + */ double lon() const; + /** + * @brief Set the Motor Temperature parameter, will get overwritten internally + * + * @param temp The temperature to set in degrees Celsius + */ void setMotorTemp(const double temp); + + /** + * @brief Set the Aux Voltage parameter, will get overwritten internally + * + * @param cap The temperature to set in degrees Celsius + */ void setAuxVoltage(const double cap); + + /** + * @brief Set the Aux Percent parameter, will get overwritten internally + * + * @param cap The percent to set + */ void setAuxPercent(const double cap); + + /** + * @brief Set the Pack SOC parameter, will get overwritten internally + * + * @param soc The percent to set + */ void setPackSOC(const double soc); + + /** + * @brief Set the Pack Voltage parameter, will get overwritten internally + * + * @param voltage The voltage to set in volts + */ void setPackVoltage(const double voltage); + + /** + * @brief Set the High Cell Temp parameter, will get overwritten internally + * + * @param temp The temperature to set in degrees Celsius + */ void setHighCellTemp(const double temp); + + /** + * @brief Set the Low Cell Temp parameter, will get overwritten internally + * + * @param temp The temperature to set in degrees Celsius + */ void setLowCellTemp(const double temp); + + /** + * @brief Set the BMS Temp parameter, will get overwritten internally + * + * @param temp The temperature to set in degrees Celsius + */ void setBmsTemp(const double temp); + + /** + * @brief Set the Motor Speed parameter, will get overwritten internally + * + * @param speed The speed to set in RPM + */ void setMotorSpeed(const double speed); + + /** + * @brief Set the Bike Speed parameter, will get overwritten internally + * + * @param speed The speed to set in mph + */ void setBikeSpeed(const double speed); + + /** + * @brief Set the MC Temp parameter, will get overwritten internally + * + * @param temp The temperature to set in degrees Celsius + */ void setMcTemp(const double temp); + + /** + * @brief Set the BMS Fault parameter, will get overwritten internally + * + * @param fault Whether or not there is a fault + */ void setBmsFault(const bool fault); + + /** + * @brief Set the MC Fault parameter, will get overwritten internally + * + * @param fault Whether or not there is a fault + */ void setMcFault(const bool fault); + + /** + * @brief Set the Motor On parameter, will get overwritten internally + * + * @param on Whether or not the motor is on + */ void setMotorOn(const bool on); + + /** + * @brief Set the Bike Status parameter, will get overwritten internally + * + * @param status The status of the bike + */ void setBikeStatus(const int status); + + /** + * @brief Set the Pack Current parameter, will get overwritten internally + * + * @param current The current to set in amps + */ void setPackCurrent(const double current); + + /** + * @brief Set the BMS Error parameter, will get overwritten internally + * + * @param error Whether or not there is an error + */ void setBmsError(const bool error); + + /** + * @brief Set the BMS Warning parameter, will get overwritten internally + * + * @param warning Whether or not there is a warning + */ void setBmsWarning(const bool warning); + + /** + * @brief Set the BMS Error Codes parameter, will get overwritten internally + * + * @param warnings The error codes to set + */ void setBmsErrorCodes(const uint32_t warnings); + + /** + * @brief Set the BMS Error Codes String parameter, will get overwritten internally + * + * @param warnings The error codes to set + */ void setBmsErrorCodesString(const std::vector warnings); + + /** + * @brief Set the Latitude parameter, will get overwritten internally + * + * @param lat The latitude to set in degrees + */ void setLat(const double lat); + + /** + * @brief Set the Longitude parameter, will get overwritten internally + * + * @param lon The longitude to set in degrees + */ void setLon(const double lon); signals: diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index dd6e665..d3a8642 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -13,27 +13,95 @@ #define BMS_FAULT_MASK 0b0010000 +/** + * @brief This is a struct that contains all the data that we get from the CAN bus + * and is used in the dash project. + * + */ struct our_candata { + /** + * @brief The voltage of the aux pack + */ uint8_t aux_voltage{}; + /** + * @brief The battery percentage of the aux pack + */ uint8_t aux_percent{}; + /** + * @brief The state of charge of the main pack as a percentage + */ uint8_t pack_state_of_charge{}; + /** + * @brief The voltage of the main pack + */ uint16_t pack_voltage{}; + /** + * @brief The current of the main pack + */ int16_t pack_current{}; + /** + * @brief The temperature of the hottest cell group in the main pack + */ uint16_t high_cell_temp{}; + /** + * @brief The temperature of the coldest cell group in the main pack + */ uint16_t low_cell_temp{}; + /** + * @brief The temperature of the motor + */ int16_t motor_temperature{}; + /** + * @brief The temperature of the BMS + */ uint16_t bms_temperature{}; + /** + * @brief The temperature of the motor controller + */ uint16_t mc_temperature{}; + /** + * @brief The RPM of the motor + */ int16_t motor_speed{}; + /** + * @brief The speed of the bike in mph + */ int16_t bike_speed{}; + /** + * @brief The fault status of the BMS + */ uint8_t bms_fault{}; + /** + * @brief Whether the BMS has any errors + */ uint8_t bms_error{}; + /** + * @brief Whether the BMS has any warnings + */ uint8_t bms_warning{}; + /** + * @brief The actual error codes of the BMS concatenated together + */ uint32_t bms_error_codes{}; + /** + * @brief Whether or no the MC has a fault + */ uint8_t mc_fault{}; + /** + * @brief Whether or not the motor is active + */ uint8_t motor_on{}; + /** + * @brief The internal state of the bike, not used rn + */ uint8_t bike_status{}; + /** + * @brief The highest cell voltage in the main pack + */ uint16_t highest_cell_voltage{}; + /** + * @brief The lowest cell voltage in the main pack + */ uint16_t lowest_cell_voltage{}; }; From a23071f84531bdcc5c9d703098f02205d90de423 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 12 Sep 2024 13:40:50 -0400 Subject: [PATCH 159/165] Add doxygen html to git repo for gh pages --- docs/annotated.html | 119 + docs/annotated_dup.js | 6 + docs/backend_8h_source.html | 317 ++ docs/bc_s.png | Bin 0 -> 676 bytes docs/bc_sd.png | Bin 0 -> 635 bytes docs/can_8h_source.html | 241 ++ docs/class_backend-members.html | 204 ++ docs/class_backend.html | 1454 +++++++++ docs/class_backend.js | 48 + docs/class_backend.png | Bin 0 -> 387 bytes docs/classes.html | 124 + docs/clipboard.js | 61 + docs/closed.png | Bin 0 -> 132 bytes docs/constants_8h_source.html | 128 + docs/cookie.js | 58 + .../dir_9003ff251f894a0ca67807a78c4dd8f8.html | 129 + docs/dir_9003ff251f894a0ca67807a78c4dd8f8.js | 9 + docs/doc.svg | 12 + docs/docd.svg | 12 + docs/doxygen-awesome.css | 2681 +++++++++++++++++ docs/doxygen.css | 1841 +++++++++++ docs/doxygen.svg | 28 + docs/doxygen_crawl.html | 134 + docs/dynsections.js | 198 ++ docs/files.html | 123 + docs/files_dup.js | 4 + docs/folderclosed.svg | 11 + docs/folderclosedd.svg | 11 + docs/folderopen.svg | 17 + docs/folderopend.svg | 12 + docs/functions.html | 203 ++ docs/functions_func.html | 182 ++ docs/functions_vars.html | 132 + docs/gpsprocessing_8h_source.html | 127 + docs/hierarchy.html | 120 + docs/hierarchy.js | 8 + docs/index.html | 113 + docs/jquery.js | 204 ++ docs/menu.js | 134 + docs/menudata.js | 50 + docs/minus.svg | 8 + docs/minusd.svg | 8 + docs/nav_f.png | Bin 0 -> 153 bytes docs/nav_fd.png | Bin 0 -> 169 bytes docs/nav_g.png | Bin 0 -> 95 bytes docs/nav_h.png | Bin 0 -> 98 bytes docs/nav_hd.png | Bin 0 -> 114 bytes docs/navtree.css | 149 + docs/navtree.js | 483 +++ docs/navtreedata.js | 50 + docs/navtreeindex0.js | 88 + docs/nmea__decoder_8h_source.html | 141 + docs/open.png | Bin 0 -> 123 bytes docs/plus.svg | 9 + docs/plusd.svg | 9 + docs/resize.js | 147 + docs/search/all_0.js | 7 + docs/search/all_1.js | 19 + docs/search/all_2.js | 4 + docs/search/all_3.js | 6 + docs/search/all_4.js | 8 + docs/search/all_5.js | 13 + docs/search/all_6.js | 4 + docs/search/all_7.js | 9 + docs/search/all_8.js | 25 + docs/search/classes_0.js | 4 + docs/search/classes_1.js | 4 + docs/search/classes_2.js | 4 + docs/search/close.svg | 18 + docs/search/functions_0.js | 5 + docs/search/functions_1.js | 12 + docs/search/functions_2.js | 4 + docs/search/functions_3.js | 6 + docs/search/functions_4.js | 8 + docs/search/functions_5.js | 6 + docs/search/functions_6.js | 25 + docs/search/mag.svg | 24 + docs/search/mag_d.svg | 24 + docs/search/mag_sel.svg | 31 + docs/search/mag_seld.svg | 31 + docs/search/search.css | 291 ++ docs/search/search.js | 694 +++++ docs/search/searchdata.js | 24 + docs/search/variables_0.js | 5 + docs/search/variables_1.js | 10 + docs/search/variables_2.js | 5 + docs/search/variables_3.js | 5 + docs/search/variables_4.js | 8 + docs/search/variables_5.js | 6 + docs/splitbar.png | Bin 0 -> 314 bytes docs/splitbard.png | Bin 0 -> 282 bytes docs/struct_g_p_s_data-members.html | 122 + docs/struct_g_p_s_data.html | 144 + docs/structour__candata-members.html | 136 + docs/structour__candata.html | 214 ++ docs/structour__candata.js | 24 + docs/sync_off.png | Bin 0 -> 853 bytes docs/sync_on.png | Bin 0 -> 845 bytes docs/tab_a.png | Bin 0 -> 142 bytes docs/tab_ad.png | Bin 0 -> 135 bytes docs/tab_b.png | Bin 0 -> 169 bytes docs/tab_bd.png | Bin 0 -> 173 bytes docs/tab_h.png | Bin 0 -> 177 bytes docs/tab_hd.png | Bin 0 -> 180 bytes docs/tab_s.png | Bin 0 -> 184 bytes docs/tab_sd.png | Bin 0 -> 188 bytes docs/tabs.css | 1 + docs/web_8h_source.html | 123 + doxy-config | 2 +- 109 files changed, 12461 insertions(+), 1 deletion(-) create mode 100644 docs/annotated.html create mode 100644 docs/annotated_dup.js create mode 100644 docs/backend_8h_source.html create mode 100644 docs/bc_s.png create mode 100644 docs/bc_sd.png create mode 100644 docs/can_8h_source.html create mode 100644 docs/class_backend-members.html create mode 100644 docs/class_backend.html create mode 100644 docs/class_backend.js create mode 100644 docs/class_backend.png create mode 100644 docs/classes.html create mode 100644 docs/clipboard.js create mode 100644 docs/closed.png create mode 100644 docs/constants_8h_source.html create mode 100644 docs/cookie.js create mode 100644 docs/dir_9003ff251f894a0ca67807a78c4dd8f8.html create mode 100644 docs/dir_9003ff251f894a0ca67807a78c4dd8f8.js create mode 100644 docs/doc.svg create mode 100644 docs/docd.svg create mode 100644 docs/doxygen-awesome.css create mode 100644 docs/doxygen.css create mode 100644 docs/doxygen.svg create mode 100644 docs/doxygen_crawl.html create mode 100644 docs/dynsections.js create mode 100644 docs/files.html create mode 100644 docs/files_dup.js create mode 100644 docs/folderclosed.svg create mode 100644 docs/folderclosedd.svg create mode 100644 docs/folderopen.svg create mode 100644 docs/folderopend.svg create mode 100644 docs/functions.html create mode 100644 docs/functions_func.html create mode 100644 docs/functions_vars.html create mode 100644 docs/gpsprocessing_8h_source.html create mode 100644 docs/hierarchy.html create mode 100644 docs/hierarchy.js create mode 100644 docs/index.html create mode 100644 docs/jquery.js create mode 100644 docs/menu.js create mode 100644 docs/menudata.js create mode 100644 docs/minus.svg create mode 100644 docs/minusd.svg create mode 100644 docs/nav_f.png create mode 100644 docs/nav_fd.png create mode 100644 docs/nav_g.png create mode 100644 docs/nav_h.png create mode 100644 docs/nav_hd.png create mode 100644 docs/navtree.css create mode 100644 docs/navtree.js create mode 100644 docs/navtreedata.js create mode 100644 docs/navtreeindex0.js create mode 100644 docs/nmea__decoder_8h_source.html create mode 100644 docs/open.png create mode 100644 docs/plus.svg create mode 100644 docs/plusd.svg create mode 100644 docs/resize.js create mode 100644 docs/search/all_0.js create mode 100644 docs/search/all_1.js create mode 100644 docs/search/all_2.js create mode 100644 docs/search/all_3.js create mode 100644 docs/search/all_4.js create mode 100644 docs/search/all_5.js create mode 100644 docs/search/all_6.js create mode 100644 docs/search/all_7.js create mode 100644 docs/search/all_8.js create mode 100644 docs/search/classes_0.js create mode 100644 docs/search/classes_1.js create mode 100644 docs/search/classes_2.js create mode 100644 docs/search/close.svg create mode 100644 docs/search/functions_0.js create mode 100644 docs/search/functions_1.js create mode 100644 docs/search/functions_2.js create mode 100644 docs/search/functions_3.js create mode 100644 docs/search/functions_4.js create mode 100644 docs/search/functions_5.js create mode 100644 docs/search/functions_6.js create mode 100644 docs/search/mag.svg create mode 100644 docs/search/mag_d.svg create mode 100644 docs/search/mag_sel.svg create mode 100644 docs/search/mag_seld.svg create mode 100644 docs/search/search.css create mode 100644 docs/search/search.js create mode 100644 docs/search/searchdata.js create mode 100644 docs/search/variables_0.js create mode 100644 docs/search/variables_1.js create mode 100644 docs/search/variables_2.js create mode 100644 docs/search/variables_3.js create mode 100644 docs/search/variables_4.js create mode 100644 docs/search/variables_5.js create mode 100644 docs/splitbar.png create mode 100644 docs/splitbard.png create mode 100644 docs/struct_g_p_s_data-members.html create mode 100644 docs/struct_g_p_s_data.html create mode 100644 docs/structour__candata-members.html create mode 100644 docs/structour__candata.html create mode 100644 docs/structour__candata.js create mode 100644 docs/sync_off.png create mode 100644 docs/sync_on.png create mode 100644 docs/tab_a.png create mode 100644 docs/tab_ad.png create mode 100644 docs/tab_b.png create mode 100644 docs/tab_bd.png create mode 100644 docs/tab_h.png create mode 100644 docs/tab_hd.png create mode 100644 docs/tab_s.png create mode 100644 docs/tab_sd.png create mode 100644 docs/tabs.css create mode 100644 docs/web_8h_source.html diff --git a/docs/annotated.html b/docs/annotated.html new file mode 100644 index 0000000..d607f58 --- /dev/null +++ b/docs/annotated.html @@ -0,0 +1,119 @@ + + + + + + + +BOLT Dash (C++): Class List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+ + + + +
 CBackendA class to represent the C++ backend of the dash which can be included in QML to give the frontend access
 CGPSData
 Cour_candataThis is a struct that contains all the data that we get from the CAN bus and is used in the dash project
+
+
+
+ + + + diff --git a/docs/annotated_dup.js b/docs/annotated_dup.js new file mode 100644 index 0000000..430e108 --- /dev/null +++ b/docs/annotated_dup.js @@ -0,0 +1,6 @@ +var annotated_dup = +[ + [ "Backend", "class_backend.html", "class_backend" ], + [ "GPSData", "struct_g_p_s_data.html", null ], + [ "our_candata", "structour__candata.html", "structour__candata" ] +]; \ No newline at end of file diff --git a/docs/backend_8h_source.html b/docs/backend_8h_source.html new file mode 100644 index 0000000..3e19d2b --- /dev/null +++ b/docs/backend_8h_source.html @@ -0,0 +1,317 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash/backend.h Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
backend.h
+
+
+
1#ifndef BACKEND_H
+
2#define BACKEND_H
+
3
+
4#include "qtmetamacros.h"
+
5#include <QObject>
+
6#include <QString>
+
7#include <qqml.h>
+
8#include <vector>
+
9
+
+
15class Backend : public QObject {
+
16 Q_OBJECT
+
17 QML_ELEMENT
+
18 Q_PROPERTY(double motorTemp READ motorTemp WRITE setMotorTemp NOTIFY motorTempChanged);
+
19 Q_PROPERTY(double auxVoltage READ auxVoltage WRITE setAuxVoltage NOTIFY auxVoltageChanged);
+
20 Q_PROPERTY(double auxPercent READ auxPercent WRITE setAuxPercent NOTIFY auxPercentChanged);
+
21 Q_PROPERTY(double packSOC READ packSOC WRITE setPackSOC NOTIFY packSOCChanged);
+
22 Q_PROPERTY(double packVoltage READ packVoltage WRITE setPackVoltage NOTIFY packVoltageChanged);
+
23 Q_PROPERTY(double highCellTemp READ highCellTemp WRITE setHighCellTemp NOTIFY highCellTempChanged);
+
24 Q_PROPERTY(double lowCellTemp READ lowCellTemp WRITE setLowCellTemp NOTIFY lowCellTempChanged);
+
25 Q_PROPERTY(double bmsTemp READ bmsTemp WRITE setBmsTemp NOTIFY bmsTempChanged);
+
26 Q_PROPERTY(double motorSpeed READ motorSpeed WRITE setMotorSpeed NOTIFY motorSpeedChanged);
+
27 Q_PROPERTY(double bikeSpeed READ bikeSpeed WRITE setBikeSpeed NOTIFY bikeSpeedChanged);
+
28 Q_PROPERTY(double mcTemp READ mcTemp WRITE setMcTemp NOTIFY mcTempChanged);
+
29 Q_PROPERTY(bool bmsFault READ bmsFault WRITE setBmsFault NOTIFY bmsFaultChanged);
+
30 Q_PROPERTY(bool mcFault READ mcFault WRITE setMcFault NOTIFY mcFaultChanged);
+
31 Q_PROPERTY(bool motorOn READ motorOn WRITE setMotorOn NOTIFY motorOnChanged);
+
32 Q_PROPERTY(int bikeStatus READ bikeStatus WRITE setBikeStatus NOTIFY bikeStatusChanged);
+
33 Q_PROPERTY(double packCurrent READ packCurrent WRITE setPackCurrent NOTIFY packCurrentChanged);
+
34 Q_PROPERTY(uint32_t bmsErrorCodes READ bmsErrorCodes WRITE setBmsErrorCodes NOTIFY bmsErrorCodesChanged);
+
35 Q_PROPERTY(bool bmsError READ bmsError WRITE setBmsError NOTIFY bmsErrorChanged);
+
36 Q_PROPERTY(bool bmsWarning READ bmsWarning WRITE setBmsWarning NOTIFY bmsWarningChanged);
+
37 Q_PROPERTY(std::vector<QString> bmsErrorCodesString READ bmsErrorCodesString NOTIFY bmsErrorCodesStringChanged);
+
38 Q_PROPERTY(double lat READ lat WRITE setLat NOTIFY latChanged);
+
39 Q_PROPERTY(double lon READ lon WRITE setLon NOTIFY lonChanged);
+
40
+
41public:
+
47 explicit Backend(QObject *parent = nullptr);
+
48
+
54 double motorTemp() const;
+
55
+
61 double auxVoltage() const;
+
62
+
68 double auxPercent() const;
+
69
+
75 double packSOC() const;
+
76
+
82 double packVoltage() const;
+
83
+
89 double highCellTemp() const;
+
90
+
96 double lowCellTemp() const;
+
97
+
103 double bmsTemp() const;
+
104
+
110 double motorSpeed() const;
+
111
+
117 double bikeSpeed() const;
+
118
+
124 double mcTemp() const;
+
125
+
132 bool bmsFault() const;
+
133
+
140 bool mcFault() const;
+
141
+
148 bool motorOn() const;
+
149
+
160 int bikeStatus() const;
+
161
+
167 double packCurrent() const;
+
168
+
175 bool bmsError() const;
+
176
+
183 bool bmsWarning() const;
+
184
+
190 uint32_t bmsErrorCodes() const;
+
191
+
197 std::vector<QString> bmsErrorCodesString() const;
+
198
+
204 double lat() const;
+
205
+
211 double lon() const;
+
212
+
218 void setMotorTemp(const double temp);
+
219
+
225 void setAuxVoltage(const double cap);
+
226
+
232 void setAuxPercent(const double cap);
+
233
+
239 void setPackSOC(const double soc);
+
240
+
246 void setPackVoltage(const double voltage);
+
247
+
253 void setHighCellTemp(const double temp);
+
254
+
260 void setLowCellTemp(const double temp);
+
261
+
267 void setBmsTemp(const double temp);
+
268
+
274 void setMotorSpeed(const double speed);
+
275
+
281 void setBikeSpeed(const double speed);
+
282
+
288 void setMcTemp(const double temp);
+
289
+
295 void setBmsFault(const bool fault);
+
296
+
302 void setMcFault(const bool fault);
+
303
+
309 void setMotorOn(const bool on);
+
310
+
316 void setBikeStatus(const int status);
+
317
+
323 void setPackCurrent(const double current);
+
324
+
330 void setBmsError(const bool error);
+
331
+
337 void setBmsWarning(const bool warning);
+
338
+
344 void setBmsErrorCodes(const uint32_t warnings);
+
345
+
351 void setBmsErrorCodesString(const std::vector<QString> warnings);
+
352
+
358 void setLat(const double lat);
+
359
+
365 void setLon(const double lon);
+
366
+
367signals:
+
368 void motorTempChanged();
+
369 void auxVoltageChanged();
+
370 void auxPercentChanged();
+
371 void packSOCChanged();
+
372 void packVoltageChanged();
+
373 void highCellTempChanged();
+
374 void lowCellTempChanged();
+
375 void bmsTempChanged();
+
376 void motorSpeedChanged();
+
377 void bikeSpeedChanged();
+
378 void mcTempChanged();
+
379 void bmsFaultChanged();
+
380 void mcFaultChanged();
+
381 void motorOnChanged();
+
382 void bikeStatusChanged();
+
383 void packCurrentChanged();
+
384 void bmsErrorChanged();
+
385 void bmsWarningChanged();
+
386 void bmsErrorCodesChanged();
+
387 void bmsErrorCodesStringChanged();
+
388 void latChanged();
+
389 void lonChanged();
+
390
+
391private:
+
392 void updateVars();
+
393 std::vector<QString> getErrorCodeStrings(uint32_t errorCodes);
+
394 double m_motorTemp;
+
395 double m_auxVoltage;
+
396 double m_auxPercent;
+
397 double m_packSOC;
+
398 double m_packVoltage;
+
399 double m_highCellTemp;
+
400 double m_lowCellTemp;
+
401 double m_bmsTemp;
+
402 double m_motorSpeed;
+
403 double m_bikeSpeed;
+
404 double m_mcTemp;
+
405 bool m_bmsFault;
+
406 bool m_mcFault;
+
407 bool m_motorOn;
+
408 int m_bikeStatus;
+
409 double m_packCurrent;
+
410 bool m_bmsError;
+
411 bool m_bmsWarning;
+
412 uint32_t m_bmsErrorCodes;
+
413 std::vector<QString> m_bmsErrorCodesString;
+
414 double m_lat;
+
415 double m_lon;
+
416};
+
+
417
+
418#endif // BACKEND_H
+
A class to represent the C++ backend of the dash which can be included in QML to give the frontend ac...
Definition backend.h:15
+
void setMcTemp(const double temp)
Set the MC Temp parameter, will get overwritten internally.
Definition backend.cpp:312
+
void setAuxPercent(const double cap)
Set the Aux Percent parameter, will get overwritten internally.
Definition backend.cpp:256
+
void setHighCellTemp(const double temp)
Set the High Cell Temp parameter, will get overwritten internally.
Definition backend.cpp:277
+
void setBmsWarning(const bool warning)
Set the BMS Warning parameter, will get overwritten internally.
Definition backend.cpp:361
+
void setLon(const double lon)
Set the Longitude parameter, will get overwritten internally.
Definition backend.cpp:389
+
void setMotorSpeed(const double speed)
Set the Motor Speed parameter, will get overwritten internally.
Definition backend.cpp:298
+
void setBikeSpeed(const double speed)
Set the Bike Speed parameter, will get overwritten internally.
Definition backend.cpp:305
+
void setBmsTemp(const double temp)
Set the BMS Temp parameter, will get overwritten internally.
Definition backend.cpp:291
+
Backend(QObject *parent=nullptr)
Create Backend class which can be included in QML.
Definition backend.cpp:16
+
void setPackCurrent(const double current)
Set the Pack Current parameter, will get overwritten internally.
Definition backend.cpp:347
+
void setBmsError(const bool error)
Set the BMS Error parameter, will get overwritten internally.
Definition backend.cpp:354
+
void setMotorTemp(const double temp)
Set the Motor Temperature parameter, will get overwritten internally.
Definition backend.cpp:242
+
void setBikeStatus(const int status)
Set the Bike Status parameter, will get overwritten internally.
Definition backend.cpp:340
+
void setBmsErrorCodes(const uint32_t warnings)
Set the BMS Error Codes parameter, will get overwritten internally.
Definition backend.cpp:368
+
void setMotorOn(const bool on)
Set the Motor On parameter, will get overwritten internally.
Definition backend.cpp:333
+
void setLowCellTemp(const double temp)
Set the Low Cell Temp parameter, will get overwritten internally.
Definition backend.cpp:284
+
void setMcFault(const bool fault)
Set the MC Fault parameter, will get overwritten internally.
Definition backend.cpp:326
+
void setBmsFault(const bool fault)
Set the BMS Fault parameter, will get overwritten internally.
Definition backend.cpp:319
+
void setLat(const double lat)
Set the Latitude parameter, will get overwritten internally.
Definition backend.cpp:382
+
void setPackVoltage(const double voltage)
Set the Pack Voltage parameter, will get overwritten internally.
Definition backend.cpp:270
+
void setAuxVoltage(const double cap)
Set the Aux Voltage parameter, will get overwritten internally.
Definition backend.cpp:249
+
void setPackSOC(const double soc)
Set the Pack SOC parameter, will get overwritten internally.
Definition backend.cpp:263
+
void setBmsErrorCodesString(const std::vector< QString > warnings)
Set the BMS Error Codes String parameter, will get overwritten internally.
Definition backend.cpp:375
+
+
+ + + + diff --git a/docs/bc_s.png b/docs/bc_s.png new file mode 100644 index 0000000000000000000000000000000000000000..224b29aa9847d5a4b3902efd602b7ddf7d33e6c2 GIT binary patch literal 676 zcmV;V0$crwP)y__>=_9%My z{n931IS})GlGUF8K#6VIbs%684A^L3@%PlP2>_sk`UWPq@f;rU*V%rPy_ekbhXT&s z(GN{DxFv}*vZp`F>S!r||M`I*nOwwKX+BC~3P5N3-)Y{65c;ywYiAh-1*hZcToLHK ztpl1xomJ+Yb}K(cfbJr2=GNOnT!UFA7Vy~fBz8?J>XHsbZoDad^8PxfSa0GDgENZS zuLCEqzb*xWX2CG*b&5IiO#NzrW*;`VC9455M`o1NBh+(k8~`XCEEoC1Ybwf;vr4K3 zg|EB<07?SOqHp9DhLpS&bzgo70I+ghB_#)K7H%AMU3v}xuyQq9&Bm~++VYhF09a+U zl7>n7Jjm$K#b*FONz~fj;I->Bf;ule1prFN9FovcDGBkpg>)O*-}eLnC{6oZHZ$o% zXKW$;0_{8hxHQ>l;_*HATI(`7t#^{$(zLe}h*mqwOc*nRY9=?Sx4OOeVIfI|0V(V2 zBrW#G7Ss9wvzr@>H*`r>zE z+e8bOBgqIgldUJlG(YUDviMB`9+DH8n-s9SXRLyJHO1!=wY^79WYZMTa(wiZ!zP66 zA~!21vmF3H2{ngD;+`6j#~6j;$*f*G_2ZD1E;9(yaw7d-QnSCpK(cR1zU3qU0000< KMNUMnLSTYoA~SLT literal 0 HcmV?d00001 diff --git a/docs/bc_sd.png b/docs/bc_sd.png new file mode 100644 index 0000000000000000000000000000000000000000..31ca888dc71049713b35c351933a8d0f36180bf1 GIT binary patch literal 635 zcmV->0)+jEP)Jwi0r1~gdSq#w{Bu1q z`craw(p2!hu$4C_$Oc3X(sI6e=9QSTwPt{G) z=htT&^~&c~L2~e{r5_5SYe7#Is-$ln>~Kd%$F#tC65?{LvQ}8O`A~RBB0N~`2M+waajO;5>3B&-viHGJeEK2TQOiPRa zfDKyqwMc4wfaEh4jt>H`nW_Zidwk@Bowp`}(VUaj-pSI(-1L>FJVsX}Yl9~JsqgsZ zUD9(rMwf23Gez6KPa|wwInZodP-2}9@fK0Ga_9{8SOjU&4l`pH4@qlQp83>>HT$xW zER^U>)MyV%t(Lu=`d=Y?{k1@}&r7ZGkFQ%z%N+sE9BtYjovzxyxCPxN6&@wLK{soQ zSmkj$aLI}miuE^p@~4}mg9OjDfGEkgY4~^XzLRUBB*O{+&vq<3v(E%+k_i%=`~j%{ Vj14gnt9}3g002ovPDHLkV1n!oC4m3{ literal 0 HcmV?d00001 diff --git a/docs/can_8h_source.html b/docs/can_8h_source.html new file mode 100644 index 0000000..0667fab --- /dev/null +++ b/docs/can_8h_source.html @@ -0,0 +1,241 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash/can.h Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
can.h
+
+
+
1#ifndef CAN_H
+
2#define CAN_H
+
3
+
4#include <mutex>
+
5#include <unistd.h>
+
6
+
7#include <net/if.h>
+
8#include <sys/ioctl.h>
+
9#include <sys/socket.h>
+
10
+
11#include <linux/can.h>
+
12#include <linux/can/raw.h>
+
13
+
14#define BMS_FAULT_MASK 0b0010000
+
15
+
+ +
25 uint8_t aux_voltage{};
+
29 uint8_t aux_percent{};
+ +
37 uint16_t pack_voltage{};
+
41 int16_t pack_current{};
+
45 uint16_t high_cell_temp{};
+
49 uint16_t low_cell_temp{};
+ +
57 uint16_t bms_temperature{};
+
61 uint16_t mc_temperature{};
+
65 int16_t motor_speed{};
+
69 int16_t bike_speed{};
+
73 uint8_t bms_fault{};
+
77 uint8_t bms_error{};
+
81 uint8_t bms_warning{};
+
85 uint32_t bms_error_codes{};
+
89 uint8_t mc_fault{};
+
93 uint8_t motor_on{};
+
97 uint8_t bike_status{};
+ + +
106};
+
+
107
+
108// ID's for each CAN thing
+
109constexpr struct {
+
110 canid_t aux_battery{0x700};
+
111 canid_t info{0x6B0};
+
112 canid_t cell_max_min_voltages{0x6B3};
+
113 canid_t main_pack_temp{0x6B4};
+
114 canid_t bms_error_codes{0x6B6};
+
115 canid_t motor_temp{0xA2};
+
116 canid_t bms_temp{0x6B1};
+
117 canid_t mc_temp{0xA0};
+
118 canid_t rpm{0xA5};
+
119 canid_t speed{0x00};
+
120 canid_t mc_faults{0x0AB};
+
121 canid_t internal_states{0x0AA};
+
122} can_ids;
+
123
+
124constexpr struct {
+
125 uint32_t discharge_limit_enforcement{1 << 0};
+
126 uint32_t charger_safety_relay{1 << 1};
+
127 uint32_t internal_heatsink_thermistor{1 << 3};
+
128 uint32_t cell_balancing_stuck_off{1 << 9};
+
129 uint32_t weak_cell{1 << 10};
+
130 uint32_t open_wiring{1 << 12};
+
131 uint32_t current_sensor{1 << 13};
+
132 uint32_t weak_pack{1 << 16};
+
133 uint32_t fan_monitor{1 << 17};
+
134 uint32_t thermistor_fault{1 << 18};
+
135 uint32_t external_communication{1 << 19};
+
136 uint32_t charge_limit_enforcement{1 << 23};
+
137} bms_warnings;
+
138
+
139constexpr struct {
+
140 uint32_t internal_hardware{1 << 2};
+
141 uint32_t internal_software{1 << 4};
+
142 uint32_t highest_cell_voltage_too_high{1 << 5};
+
143 uint32_t lowest_cell_voltage_too_low{1 << 6};
+
144 uint32_t pack_too_hot{1 << 7};
+
145 uint32_t internal_communication{1 << 8};
+
146 uint32_t low_cell_voltage{1 << 11};
+
147 uint32_t highest_cell_voltage_over_5v{1 << 14};
+
148 uint32_t cell_asic_fault{1 << 15};
+
149 uint32_t redundant_power_supply{1 << 20};
+
150 uint32_t high_voltage_isolation{1 << 21};
+
151 uint32_t input_power_supply{1 << 22};
+
152} bms_errors;
+
153
+
154const uint32_t ALL_BMS_ERRORS = bms_errors.internal_hardware | bms_errors.internal_software |
+
155 bms_errors.highest_cell_voltage_too_high | bms_errors.lowest_cell_voltage_too_low |
+
156 bms_errors.pack_too_hot | bms_errors.internal_communication | bms_errors.low_cell_voltage |
+
157 bms_errors.highest_cell_voltage_over_5v | bms_errors.cell_asic_fault |
+
158 bms_errors.redundant_power_supply | bms_errors.high_voltage_isolation |
+
159 bms_errors.input_power_supply;
+
160const uint32_t ALL_BMS_WARNINGS = bms_warnings.charger_safety_relay | bms_warnings.discharge_limit_enforcement |
+
161 bms_warnings.cell_balancing_stuck_off | bms_warnings.internal_heatsink_thermistor | bms_warnings.weak_cell |
+
162 bms_warnings.current_sensor | bms_warnings.weak_pack | bms_warnings.fan_monitor |
+
163 bms_warnings.thermistor_fault | bms_warnings.external_communication |
+
164 bms_warnings.open_wiring | bms_warnings.charge_limit_enforcement;
+
165extern std::mutex m;
+
166extern our_candata data;
+
167
+
168namespace can {
+
169 int run();
+
170}
+
171
+
172#endif // CAN_H
+
This is a struct that contains all the data that we get from the CAN bus and is used in the dash proj...
Definition can.h:21
+
int16_t motor_speed
The RPM of the motor.
Definition can.h:65
+
uint16_t mc_temperature
The temperature of the motor controller.
Definition can.h:61
+
uint8_t aux_percent
The battery percentage of the aux pack.
Definition can.h:29
+
uint16_t lowest_cell_voltage
The lowest cell voltage in the main pack.
Definition can.h:105
+
uint8_t mc_fault
Whether or no the MC has a fault.
Definition can.h:89
+
uint8_t bms_warning
Whether the BMS has any warnings.
Definition can.h:81
+
uint8_t bms_error
Whether the BMS has any errors.
Definition can.h:77
+
uint16_t pack_voltage
The voltage of the main pack.
Definition can.h:37
+
uint8_t motor_on
Whether or not the motor is active.
Definition can.h:93
+
int16_t bike_speed
The speed of the bike in mph.
Definition can.h:69
+
uint8_t bms_fault
The fault status of the BMS.
Definition can.h:73
+
uint16_t low_cell_temp
The temperature of the coldest cell group in the main pack.
Definition can.h:49
+
uint32_t bms_error_codes
The actual error codes of the BMS concatenated together.
Definition can.h:85
+
uint16_t highest_cell_voltage
The highest cell voltage in the main pack.
Definition can.h:101
+
uint8_t aux_voltage
The voltage of the aux pack.
Definition can.h:25
+
uint8_t pack_state_of_charge
The state of charge of the main pack as a percentage.
Definition can.h:33
+
uint16_t bms_temperature
The temperature of the BMS.
Definition can.h:57
+
int16_t pack_current
The current of the main pack.
Definition can.h:41
+
int16_t motor_temperature
The temperature of the motor.
Definition can.h:53
+
uint8_t bike_status
The internal state of the bike, not used rn.
Definition can.h:97
+
uint16_t high_cell_temp
The temperature of the hottest cell group in the main pack.
Definition can.h:45
+
+
+ + + + diff --git a/docs/class_backend-members.html b/docs/class_backend-members.html new file mode 100644 index 0000000..b6d3732 --- /dev/null +++ b/docs/class_backend-members.html @@ -0,0 +1,204 @@ + + + + + + + +BOLT Dash (C++): Member List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Backend Member List
+
+
+ +

This is the complete list of members for Backend, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
auxPercent (defined in Backend)Backend
auxPercent() constBackend
auxPercentChanged() (defined in Backend)Backendsignal
auxVoltage (defined in Backend)Backend
auxVoltage() constBackend
auxVoltageChanged() (defined in Backend)Backendsignal
Backend(QObject *parent=nullptr)Backendexplicit
bikeSpeed (defined in Backend)Backend
bikeSpeed() constBackend
bikeSpeedChanged() (defined in Backend)Backendsignal
bikeStatus (defined in Backend)Backend
bikeStatus() constBackend
bikeStatusChanged() (defined in Backend)Backendsignal
bmsError (defined in Backend)Backend
bmsError() constBackend
bmsErrorChanged() (defined in Backend)Backendsignal
bmsErrorCodes (defined in Backend)Backend
bmsErrorCodes() constBackend
bmsErrorCodesChanged() (defined in Backend)Backendsignal
bmsErrorCodesString (defined in Backend)Backend
bmsErrorCodesString() constBackend
bmsErrorCodesStringChanged() (defined in Backend)Backendsignal
bmsFault (defined in Backend)Backend
bmsFault() constBackend
bmsFaultChanged() (defined in Backend)Backendsignal
bmsTemp (defined in Backend)Backend
bmsTemp() constBackend
bmsTempChanged() (defined in Backend)Backendsignal
bmsWarning (defined in Backend)Backend
bmsWarning() constBackend
bmsWarningChanged() (defined in Backend)Backendsignal
highCellTemp (defined in Backend)Backend
highCellTemp() constBackend
highCellTempChanged() (defined in Backend)Backendsignal
lat (defined in Backend)Backend
lat() constBackend
latChanged() (defined in Backend)Backendsignal
lon (defined in Backend)Backend
lon() constBackend
lonChanged() (defined in Backend)Backendsignal
lowCellTemp (defined in Backend)Backend
lowCellTemp() constBackend
lowCellTempChanged() (defined in Backend)Backendsignal
mcFault (defined in Backend)Backend
mcFault() constBackend
mcFaultChanged() (defined in Backend)Backendsignal
mcTemp (defined in Backend)Backend
mcTemp() constBackend
mcTempChanged() (defined in Backend)Backendsignal
motorOn (defined in Backend)Backend
motorOn() constBackend
motorOnChanged() (defined in Backend)Backendsignal
motorSpeed (defined in Backend)Backend
motorSpeed() constBackend
motorSpeedChanged() (defined in Backend)Backendsignal
motorTemp (defined in Backend)Backend
motorTemp() constBackend
motorTempChanged() (defined in Backend)Backendsignal
packCurrent (defined in Backend)Backend
packCurrent() constBackend
packCurrentChanged() (defined in Backend)Backendsignal
packSOC (defined in Backend)Backend
packSOC() constBackend
packSOCChanged() (defined in Backend)Backendsignal
packVoltage (defined in Backend)Backend
packVoltage() constBackend
packVoltageChanged() (defined in Backend)Backendsignal
setAuxPercent(const double cap)Backend
setAuxVoltage(const double cap)Backend
setBikeSpeed(const double speed)Backend
setBikeStatus(const int status)Backend
setBmsError(const bool error)Backend
setBmsErrorCodes(const uint32_t warnings)Backend
setBmsErrorCodesString(const std::vector< QString > warnings)Backend
setBmsFault(const bool fault)Backend
setBmsTemp(const double temp)Backend
setBmsWarning(const bool warning)Backend
setHighCellTemp(const double temp)Backend
setLat(const double lat)Backend
setLon(const double lon)Backend
setLowCellTemp(const double temp)Backend
setMcFault(const bool fault)Backend
setMcTemp(const double temp)Backend
setMotorOn(const bool on)Backend
setMotorSpeed(const double speed)Backend
setMotorTemp(const double temp)Backend
setPackCurrent(const double current)Backend
setPackSOC(const double soc)Backend
setPackVoltage(const double voltage)Backend
+
+ + + + diff --git a/docs/class_backend.html b/docs/class_backend.html new file mode 100644 index 0000000..d089da1 --- /dev/null +++ b/docs/class_backend.html @@ -0,0 +1,1454 @@ + + + + + + + +BOLT Dash (C++): Backend Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
Backend Class Reference
+
+
+ +

A class to represent the C++ backend of the dash which can be included in QML to give the frontend access. + More...

+ +

#include <backend.h>

+
+Inheritance diagram for Backend:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Signals

+void motorTempChanged ()
 
+void auxVoltageChanged ()
 
+void auxPercentChanged ()
 
+void packSOCChanged ()
 
+void packVoltageChanged ()
 
+void highCellTempChanged ()
 
+void lowCellTempChanged ()
 
+void bmsTempChanged ()
 
+void motorSpeedChanged ()
 
+void bikeSpeedChanged ()
 
+void mcTempChanged ()
 
+void bmsFaultChanged ()
 
+void mcFaultChanged ()
 
+void motorOnChanged ()
 
+void bikeStatusChanged ()
 
+void packCurrentChanged ()
 
+void bmsErrorChanged ()
 
+void bmsWarningChanged ()
 
+void bmsErrorCodesChanged ()
 
+void bmsErrorCodesStringChanged ()
 
+void latChanged ()
 
+void lonChanged ()
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Backend (QObject *parent=nullptr)
 Create Backend class which can be included in QML.
 
double motorTemp () const
 Get the motor temperature.
 
double auxVoltage () const
 Get the voltage of the aux pack.
 
double auxPercent () const
 Get the percent charge of the aux pack.
 
double packSOC () const
 Get the state of charge of the main battery.
 
double packVoltage () const
 Get the voltage of the main battery.
 
double highCellTemp () const
 Get the highest cell temperature in the pack.
 
double lowCellTemp () const
 Get the lowest cell temperature in the pack.
 
double bmsTemp () const
 Get the temeprature of the BMS.
 
double motorSpeed () const
 Get the speed of the motor.
 
double bikeSpeed () const
 Get the speed of the bike.
 
double mcTemp () const
 Get the temperature of the motor controller.
 
bool bmsFault () const
 Get whether or not there is a BMS fault.
 
bool mcFault () const
 Get whether or not there is a motor controller fault.
 
bool motorOn () const
 Get whether or not the motor is currently active.
 
int bikeStatus () const
 Get the current status of the bike.
 
double packCurrent () const
 Get the current flowing from the main pack.
 
bool bmsError () const
 Get whether or not there is a BMS error.
 
bool bmsWarning () const
 Get whether or not there is a BMS warning.
 
uint32_t bmsErrorCodes () const
 Get the BMS error codes as a bitfield.
 
std::vector< QString > bmsErrorCodesString () const
 Get the BMS error codes as a vector of strings.
 
double lat () const
 Get the latitude of the bike.
 
double lon () const
 Get the longitude of the bike.
 
void setMotorTemp (const double temp)
 Set the Motor Temperature parameter, will get overwritten internally.
 
void setAuxVoltage (const double cap)
 Set the Aux Voltage parameter, will get overwritten internally.
 
void setAuxPercent (const double cap)
 Set the Aux Percent parameter, will get overwritten internally.
 
void setPackSOC (const double soc)
 Set the Pack SOC parameter, will get overwritten internally.
 
void setPackVoltage (const double voltage)
 Set the Pack Voltage parameter, will get overwritten internally.
 
void setHighCellTemp (const double temp)
 Set the High Cell Temp parameter, will get overwritten internally.
 
void setLowCellTemp (const double temp)
 Set the Low Cell Temp parameter, will get overwritten internally.
 
void setBmsTemp (const double temp)
 Set the BMS Temp parameter, will get overwritten internally.
 
void setMotorSpeed (const double speed)
 Set the Motor Speed parameter, will get overwritten internally.
 
void setBikeSpeed (const double speed)
 Set the Bike Speed parameter, will get overwritten internally.
 
void setMcTemp (const double temp)
 Set the MC Temp parameter, will get overwritten internally.
 
void setBmsFault (const bool fault)
 Set the BMS Fault parameter, will get overwritten internally.
 
void setMcFault (const bool fault)
 Set the MC Fault parameter, will get overwritten internally.
 
void setMotorOn (const bool on)
 Set the Motor On parameter, will get overwritten internally.
 
void setBikeStatus (const int status)
 Set the Bike Status parameter, will get overwritten internally.
 
void setPackCurrent (const double current)
 Set the Pack Current parameter, will get overwritten internally.
 
void setBmsError (const bool error)
 Set the BMS Error parameter, will get overwritten internally.
 
void setBmsWarning (const bool warning)
 Set the BMS Warning parameter, will get overwritten internally.
 
void setBmsErrorCodes (const uint32_t warnings)
 Set the BMS Error Codes parameter, will get overwritten internally.
 
void setBmsErrorCodesString (const std::vector< QString > warnings)
 Set the BMS Error Codes String parameter, will get overwritten internally.
 
void setLat (const double lat)
 Set the Latitude parameter, will get overwritten internally.
 
void setLon (const double lon)
 Set the Longitude parameter, will get overwritten internally.
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Properties

+QML_ELEMENTdouble motorTemp
 
+double auxVoltage
 
+double auxPercent
 
+double packSOC
 
+double packVoltage
 
+double highCellTemp
 
+double lowCellTemp
 
+double bmsTemp
 
+double motorSpeed
 
+double bikeSpeed
 
+double mcTemp
 
+bool bmsFault
 
+bool mcFault
 
+bool motorOn
 
+int bikeStatus
 
+double packCurrent
 
+uint32_t bmsErrorCodes
 
+bool bmsError
 
+bool bmsWarning
 
+std::vector< QString > bmsErrorCodesString
 
+double lat
 
+double lon
 
+

Detailed Description

+

A class to represent the C++ backend of the dash which can be included in QML to give the frontend access.

+

Constructor & Destructor Documentation

+ +

◆ Backend()

+ +
+
+ + + + + +
+ + + + + + + +
Backend::Backend (QObject * parent = nullptr)
+
+explicit
+
+ +

Create Backend class which can be included in QML.

+
Parameters
+ + +
parentthe QObject parent above the Backend
+
+
+ +
+
+

Member Function Documentation

+ +

◆ auxPercent()

+ +
+
+ + + + + + + +
double Backend::auxPercent () const
+
+ +

Get the percent charge of the aux pack.

+
Returns
The percentage as a percent (e.g. 87.3)
+ +
+
+ +

◆ auxVoltage()

+ +
+
+ + + + + + + +
double Backend::auxVoltage () const
+
+ +

Get the voltage of the aux pack.

+
Returns
The voltage in volts
+ +
+
+ +

◆ bikeSpeed()

+ +
+
+ + + + + + + +
double Backend::bikeSpeed () const
+
+ +

Get the speed of the bike.

+
Returns
The speed in mph
+ +
+
+ +

◆ bikeStatus()

+ +
+
+ + + + + + + +
int Backend::bikeStatus () const
+
+ +

Get the current status of the bike.

+
    +
  1. Idle
  2. +
  3. Precharge
  4. +
  5. Ready
  6. +
  7. Active
  8. +
  9. There is a fault somewhere
  10. +
+
Returns
An integer representing the status as shown above
+ +
+
+ +

◆ bmsError()

+ +
+
+ + + + + + + +
bool Backend::bmsError () const
+
+ +

Get whether or not there is a BMS error.

+
Returns
true if there is any major error
+
+false if there is not
+ +
+
+ +

◆ bmsErrorCodes()

+ +
+
+ + + + + + + +
uint32_t Backend::bmsErrorCodes () const
+
+ +

Get the BMS error codes as a bitfield.

+
Returns
A 32-bit integer with each bit representing a different error
+ +
+
+ +

◆ bmsErrorCodesString()

+ +
+
+ + + + + + + +
std::vector< QString > Backend::bmsErrorCodesString () const
+
+ +

Get the BMS error codes as a vector of strings.

+
Returns
A Vector of Qt-Strings with each string representing a different error
+ +
+
+ +

◆ bmsFault()

+ +
+
+ + + + + + + +
bool Backend::bmsFault () const
+
+ +

Get whether or not there is a BMS fault.

+
Returns
true if there is a fault
+
+false if all is good
+ +
+
+ +

◆ bmsTemp()

+ +
+
+ + + + + + + +
double Backend::bmsTemp () const
+
+ +

Get the temeprature of the BMS.

+
Returns
The temperature in degrees Celsius
+ +
+
+ +

◆ bmsWarning()

+ +
+
+ + + + + + + +
bool Backend::bmsWarning () const
+
+ +

Get whether or not there is a BMS warning.

+
Returns
true if there is a minor error/warning
+
+false if there is not
+ +
+
+ +

◆ highCellTemp()

+ +
+
+ + + + + + + +
double Backend::highCellTemp () const
+
+ +

Get the highest cell temperature in the pack.

+
Returns
The temperature in degrees Celsius
+ +
+
+ +

◆ lat()

+ +
+
+ + + + + + + +
double Backend::lat () const
+
+ +

Get the latitude of the bike.

+
Returns
The latitude in degrees
+ +
+
+ +

◆ lon()

+ +
+
+ + + + + + + +
double Backend::lon () const
+
+ +

Get the longitude of the bike.

+
Returns
The longitude in degrees
+ +
+
+ +

◆ lowCellTemp()

+ +
+
+ + + + + + + +
double Backend::lowCellTemp () const
+
+ +

Get the lowest cell temperature in the pack.

+
Returns
The temperature in degrees Celsius
+ +
+
+ +

◆ mcFault()

+ +
+
+ + + + + + + +
bool Backend::mcFault () const
+
+ +

Get whether or not there is a motor controller fault.

+
Returns
true if there is a fault
+
+false if all is good
+ +
+
+ +

◆ mcTemp()

+ +
+
+ + + + + + + +
double Backend::mcTemp () const
+
+ +

Get the temperature of the motor controller.

+
Returns
The highest temperature of the three sensors in degrees Celsius
+ +
+
+ +

◆ motorOn()

+ +
+
+ + + + + + + +
bool Backend::motorOn () const
+
+ +

Get whether or not the motor is currently active.

+
Returns
true if the motor can be moved with the throttle
+
+false if it cannot be moved electrically
+ +
+
+ +

◆ motorSpeed()

+ +
+
+ + + + + + + +
double Backend::motorSpeed () const
+
+ +

Get the speed of the motor.

+
Returns
The motor speed in RPM
+ +
+
+ +

◆ motorTemp()

+ +
+
+ + + + + + + +
double Backend::motorTemp () const
+
+ +

Get the motor temperature.

+
Returns
The temperature in degrees Celsius
+ +
+
+ +

◆ packCurrent()

+ +
+
+ + + + + + + +
double Backend::packCurrent () const
+
+ +

Get the current flowing from the main pack.

+
Returns
The current in amps
+ +
+
+ +

◆ packSOC()

+ +
+
+ + + + + + + +
double Backend::packSOC () const
+
+ +

Get the state of charge of the main battery.

+
Returns
The percentage as a percent (e.g. 87.3)
+ +
+
+ +

◆ packVoltage()

+ +
+
+ + + + + + + +
double Backend::packVoltage () const
+
+ +

Get the voltage of the main battery.

+
Returns
The voltage in volts
+ +
+
+ +

◆ setAuxPercent()

+ +
+
+ + + + + + + +
void Backend::setAuxPercent (const double cap)
+
+ +

Set the Aux Percent parameter, will get overwritten internally.

+
Parameters
+ + +
capThe percent to set
+
+
+ +
+
+ +

◆ setAuxVoltage()

+ +
+
+ + + + + + + +
void Backend::setAuxVoltage (const double cap)
+
+ +

Set the Aux Voltage parameter, will get overwritten internally.

+
Parameters
+ + +
capThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setBikeSpeed()

+ +
+
+ + + + + + + +
void Backend::setBikeSpeed (const double speed)
+
+ +

Set the Bike Speed parameter, will get overwritten internally.

+
Parameters
+ + +
speedThe speed to set in mph
+
+
+ +
+
+ +

◆ setBikeStatus()

+ +
+
+ + + + + + + +
void Backend::setBikeStatus (const int status)
+
+ +

Set the Bike Status parameter, will get overwritten internally.

+
Parameters
+ + +
statusThe status of the bike
+
+
+ +
+
+ +

◆ setBmsError()

+ +
+
+ + + + + + + +
void Backend::setBmsError (const bool error)
+
+ +

Set the BMS Error parameter, will get overwritten internally.

+
Parameters
+ + +
errorWhether or not there is an error
+
+
+ +
+
+ +

◆ setBmsErrorCodes()

+ +
+
+ + + + + + + +
void Backend::setBmsErrorCodes (const uint32_t warnings)
+
+ +

Set the BMS Error Codes parameter, will get overwritten internally.

+
Parameters
+ + +
warningsThe error codes to set
+
+
+ +
+
+ +

◆ setBmsErrorCodesString()

+ +
+
+ + + + + + + +
void Backend::setBmsErrorCodesString (const std::vector< QString > warnings)
+
+ +

Set the BMS Error Codes String parameter, will get overwritten internally.

+
Parameters
+ + +
warningsThe error codes to set
+
+
+ +
+
+ +

◆ setBmsFault()

+ +
+
+ + + + + + + +
void Backend::setBmsFault (const bool fault)
+
+ +

Set the BMS Fault parameter, will get overwritten internally.

+
Parameters
+ + +
faultWhether or not there is a fault
+
+
+ +
+
+ +

◆ setBmsTemp()

+ +
+
+ + + + + + + +
void Backend::setBmsTemp (const double temp)
+
+ +

Set the BMS Temp parameter, will get overwritten internally.

+
Parameters
+ + +
tempThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setBmsWarning()

+ +
+
+ + + + + + + +
void Backend::setBmsWarning (const bool warning)
+
+ +

Set the BMS Warning parameter, will get overwritten internally.

+
Parameters
+ + +
warningWhether or not there is a warning
+
+
+ +
+
+ +

◆ setHighCellTemp()

+ +
+
+ + + + + + + +
void Backend::setHighCellTemp (const double temp)
+
+ +

Set the High Cell Temp parameter, will get overwritten internally.

+
Parameters
+ + +
tempThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setLat()

+ +
+
+ + + + + + + +
void Backend::setLat (const double lat)
+
+ +

Set the Latitude parameter, will get overwritten internally.

+
Parameters
+ + +
latThe latitude to set in degrees
+
+
+ +
+
+ +

◆ setLon()

+ +
+
+ + + + + + + +
void Backend::setLon (const double lon)
+
+ +

Set the Longitude parameter, will get overwritten internally.

+
Parameters
+ + +
lonThe longitude to set in degrees
+
+
+ +
+
+ +

◆ setLowCellTemp()

+ +
+
+ + + + + + + +
void Backend::setLowCellTemp (const double temp)
+
+ +

Set the Low Cell Temp parameter, will get overwritten internally.

+
Parameters
+ + +
tempThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setMcFault()

+ +
+
+ + + + + + + +
void Backend::setMcFault (const bool fault)
+
+ +

Set the MC Fault parameter, will get overwritten internally.

+
Parameters
+ + +
faultWhether or not there is a fault
+
+
+ +
+
+ +

◆ setMcTemp()

+ +
+
+ + + + + + + +
void Backend::setMcTemp (const double temp)
+
+ +

Set the MC Temp parameter, will get overwritten internally.

+
Parameters
+ + +
tempThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setMotorOn()

+ +
+
+ + + + + + + +
void Backend::setMotorOn (const bool on)
+
+ +

Set the Motor On parameter, will get overwritten internally.

+
Parameters
+ + +
onWhether or not the motor is on
+
+
+ +
+
+ +

◆ setMotorSpeed()

+ +
+
+ + + + + + + +
void Backend::setMotorSpeed (const double speed)
+
+ +

Set the Motor Speed parameter, will get overwritten internally.

+
Parameters
+ + +
speedThe speed to set in RPM
+
+
+ +
+
+ +

◆ setMotorTemp()

+ +
+
+ + + + + + + +
void Backend::setMotorTemp (const double temp)
+
+ +

Set the Motor Temperature parameter, will get overwritten internally.

+
Parameters
+ + +
tempThe temperature to set in degrees Celsius
+
+
+ +
+
+ +

◆ setPackCurrent()

+ +
+
+ + + + + + + +
void Backend::setPackCurrent (const double current)
+
+ +

Set the Pack Current parameter, will get overwritten internally.

+
Parameters
+ + +
currentThe current to set in amps
+
+
+ +
+
+ +

◆ setPackSOC()

+ +
+
+ + + + + + + +
void Backend::setPackSOC (const double soc)
+
+ +

Set the Pack SOC parameter, will get overwritten internally.

+
Parameters
+ + +
socThe percent to set
+
+
+ +
+
+ +

◆ setPackVoltage()

+ +
+
+ + + + + + + +
void Backend::setPackVoltage (const double voltage)
+
+ +

Set the Pack Voltage parameter, will get overwritten internally.

+
Parameters
+ + +
voltageThe voltage to set in volts
+
+
+ +
+
+
The documentation for this class was generated from the following files:
    +
  • Bolt_Dash/backend.h
  • +
  • Bolt_Dash/backend.cpp
  • +
+
+
+ + + + diff --git a/docs/class_backend.js b/docs/class_backend.js new file mode 100644 index 0000000..5805478 --- /dev/null +++ b/docs/class_backend.js @@ -0,0 +1,48 @@ +var class_backend = +[ + [ "Backend", "class_backend.html#a5bc0e9ea135112c07e021ebde56ec44f", null ], + [ "auxPercent", "class_backend.html#a2b9deb50de11a2fde07ef6589a31b7a0", null ], + [ "auxVoltage", "class_backend.html#a41e2e287304215732af6f9d6273792bb", null ], + [ "bikeSpeed", "class_backend.html#adf1e224769b6c96c359475583e5dc159", null ], + [ "bikeStatus", "class_backend.html#ad7c06e20ccfa73a5bd52187f39b97054", null ], + [ "bmsError", "class_backend.html#a3875076145e97af7fde2a1c37f543293", null ], + [ "bmsErrorCodes", "class_backend.html#a15330410228d1397f3bd0fb01a97f412", null ], + [ "bmsErrorCodesString", "class_backend.html#a177b020eecbfbec86fa331f146420021", null ], + [ "bmsFault", "class_backend.html#a0bc7373b61657730a31b121851d26f99", null ], + [ "bmsTemp", "class_backend.html#a6d30b487c228843a22da6fe82bc96003", null ], + [ "bmsWarning", "class_backend.html#a7150ddb151a1f8c62ef3f2ac762b5fbe", null ], + [ "highCellTemp", "class_backend.html#a338d6ee091433158a4a82ec6c60cbde9", null ], + [ "lat", "class_backend.html#a8f93242ca98779058d3947e318b8944a", null ], + [ "lon", "class_backend.html#a21bc64c24fe21d47fde74754d4772c08", null ], + [ "lowCellTemp", "class_backend.html#a2551568902d423cd2d6e7456fb68f218", null ], + [ "mcFault", "class_backend.html#a1cd3fc891b7d02f4abd62fc117bdca83", null ], + [ "mcTemp", "class_backend.html#a06ee9247c3f51b6e56ae40564100f73a", null ], + [ "motorOn", "class_backend.html#aff3f0f82e71ca4c549fb8c6a61be2310", null ], + [ "motorSpeed", "class_backend.html#af248999c9a205fab70f7263943337b71", null ], + [ "motorTemp", "class_backend.html#a256e55ad5e78b997c6bc217c9decb29d", null ], + [ "packCurrent", "class_backend.html#a96cce8014d840e2e9e565849fd4d6f1c", null ], + [ "packSOC", "class_backend.html#a4c923e3177a05d7a235eef43c64dc3f4", null ], + [ "packVoltage", "class_backend.html#aa114119bb0c61c19789114e85d0f9aec", null ], + [ "setAuxPercent", "class_backend.html#a181d4ef7a800a59f30970aff81935ff9", null ], + [ "setAuxVoltage", "class_backend.html#aea1988760e23d3a71c8e59d3fbd629a3", null ], + [ "setBikeSpeed", "class_backend.html#a41f530c3353b3090ecb5e5be8cc285b6", null ], + [ "setBikeStatus", "class_backend.html#aa4dd42516324c53f45594ebfde561937", null ], + [ "setBmsError", "class_backend.html#a5fb55f0d084b1526cd7722e9536367f3", null ], + [ "setBmsErrorCodes", "class_backend.html#aa9a795644028d3c7e77563034dcbc20a", null ], + [ "setBmsErrorCodesString", "class_backend.html#af2fcdd85b15e60d1ddbc2bc48391a6f9", null ], + [ "setBmsFault", "class_backend.html#abc484080dc62f7f36a96c72586b25799", null ], + [ "setBmsTemp", "class_backend.html#a4d63556bfd846e2f327a766620e8b8df", null ], + [ "setBmsWarning", "class_backend.html#a1ed8e3394afa439f9f16710f7896649c", null ], + [ "setHighCellTemp", "class_backend.html#a1e83e3ce8504f024857446e12b8845b7", null ], + [ "setLat", "class_backend.html#ac6479865cb1424e3db4420da0877e215", null ], + [ "setLon", "class_backend.html#a23d341fe68297b82782e786210022585", null ], + [ "setLowCellTemp", "class_backend.html#aba6f3cfe6aa6137dc7351bb44dfa45a7", null ], + [ "setMcFault", "class_backend.html#abaf8de6f691d2259eb872b72537f7058", null ], + [ "setMcTemp", "class_backend.html#a157a36598b32143e812533cf87dd272f", null ], + [ "setMotorOn", "class_backend.html#ab4699e9d0f3fd20c7bf325e412d02031", null ], + [ "setMotorSpeed", "class_backend.html#a3ae0f65b4936686f6e41154c2ea9b7f8", null ], + [ "setMotorTemp", "class_backend.html#aa2bf5fa75e4d89a37ff1310fb1d88aa2", null ], + [ "setPackCurrent", "class_backend.html#a5ef79b5db160853a21fc658c662f99ce", null ], + [ "setPackSOC", "class_backend.html#af059700e1da309edb7e8e50d76141077", null ], + [ "setPackVoltage", "class_backend.html#adb6236eaa2d963d07cf80154e84f0f59", null ] +]; \ No newline at end of file diff --git a/docs/class_backend.png b/docs/class_backend.png new file mode 100644 index 0000000000000000000000000000000000000000..b3f996084ed32e31f12d0f8b20b1e2075af2cbea GIT binary patch literal 387 zcmV-}0et?6P)vTJr#LVva2S`&=-}Ys|Ns9r%~qrU000SeQchC<|NsC0|NsC0Hv*f~0003F zNkllu-=0trv-|LOls3^?XG&2 zwjxs9$x+Zb{`)hktEF?Ea^-9Aiq)JZ*LY2bUG&xFN$w6ktUO0HbQt6%eKtDI-5$ct z%pdn1PdQCCmC~De@IL*o4MYB(9!Ko&TSUYvN0a2N0N_Fg08DF%K8_W9iFWV;zDB<~ z^GySQS(^p`t2PY)R&5#ptopw+Nlpt?Rh`t&(|&}is+C5sPSBU`2Ak + + + + + + +BOLT Dash (C++): Class Index + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Index
+
+
+
B | G | O
+
+
+
B
+
Backend
+
+
G
+
GPSData
+
+
O
+
our_candata
+
+
+
+ + + + diff --git a/docs/clipboard.js b/docs/clipboard.js new file mode 100644 index 0000000..42c1fb0 --- /dev/null +++ b/docs/clipboard.js @@ -0,0 +1,61 @@ +/** + +The code below is based on the Doxygen Awesome project, see +https://github.com/jothepro/doxygen-awesome-css + +MIT License + +Copyright (c) 2021 - 2022 jothepro + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*/ + +let clipboard_title = "Copy to clipboard" +let clipboard_icon = `` +let clipboard_successIcon = `` +let clipboard_successDuration = 1000 + +$(function() { + if(navigator.clipboard) { + const fragments = document.getElementsByClassName("fragment") + for(const fragment of fragments) { + const clipboard_div = document.createElement("div") + clipboard_div.classList.add("clipboard") + clipboard_div.innerHTML = clipboard_icon + clipboard_div.title = clipboard_title + $(clipboard_div).click(function() { + const content = this.parentNode.cloneNode(true) + // filter out line number and folded fragments from file listings + content.querySelectorAll(".lineno, .ttc, .foldclosed").forEach((node) => { node.remove() }) + let text = content.textContent + // remove trailing newlines and trailing spaces from empty lines + text = text.replace(/^\s*\n/gm,'\n').replace(/\n*$/,'') + navigator.clipboard.writeText(text); + this.classList.add("success") + this.innerHTML = clipboard_successIcon + window.setTimeout(() => { // switch back to normal icon after timeout + this.classList.remove("success") + this.innerHTML = clipboard_icon + }, clipboard_successDuration); + }) + fragment.insertBefore(clipboard_div, fragment.firstChild) + } + } +}) diff --git a/docs/closed.png b/docs/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..98cc2c909da37a6df914fbf67780eebd99c597f5 GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{V-kvUwAr*{o@8{^CZMh(5KoB^r_<4^zF@3)Cp&&t3hdujKf f*?bjBoY!V+E))@{xMcbjXe@)LtDnm{r-UW|*e5JT literal 0 HcmV?d00001 diff --git a/docs/constants_8h_source.html b/docs/constants_8h_source.html new file mode 100644 index 0000000..bf1df0c --- /dev/null +++ b/docs/constants_8h_source.html @@ -0,0 +1,128 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash/constants.h Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
constants.h
+
+
+
1#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056)
+
2
+
3// Scaling for CAN data
+
4#define MOTOR_TEMPERATURE_SCALE (1.0 / 10.0)
+
5#define AUX_VOLTAGE_SCALE (1.0 / 10.0)
+
6#define AUX_PERCENT_SCALE (1.0 / 100.0)
+
7#define PACK_STATE_OF_CHARGE_SCALE (1.0 / 200.0)
+
8#define PACK_VOLTAGE_SCALE (1.0 / 10.0)
+
9#define PACK_CURRENT_SCALE (1.0 / 10.0)
+
10#define HIGH_CELL_TEMP_SCALE (1)
+
11#define LOW_CELL_TEMP_SCALE (1)
+
12#define BMS_TEMPERATURE_SCALE (1)
+
13#define MOTOR_SPEED_SCALE (1)
+
14#define BIKE_SPEED_SCALE (RPM_TO_SPEED)
+
15#define MC_TEMPERATURE_SCALE (1.0 / 10.0)
+
+
+ + + + diff --git a/docs/cookie.js b/docs/cookie.js new file mode 100644 index 0000000..53ad21d --- /dev/null +++ b/docs/cookie.js @@ -0,0 +1,58 @@ +/*! + Cookie helper functions + Copyright (c) 2023 Dimitri van Heesch + Released under MIT license. +*/ +let Cookie = { + cookie_namespace: 'doxygen_', + + readSetting(cookie,defVal) { + if (window.chrome) { + const val = localStorage.getItem(this.cookie_namespace+cookie) || + sessionStorage.getItem(this.cookie_namespace+cookie); + if (val) return val; + } else { + let myCookie = this.cookie_namespace+cookie+"="; + if (document.cookie) { + const index = document.cookie.indexOf(myCookie); + if (index != -1) { + const valStart = index + myCookie.length; + let valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) { + valEnd = document.cookie.length; + } + return document.cookie.substring(valStart, valEnd); + } + } + } + return defVal; + }, + + writeSetting(cookie,val,days=10*365) { // default days='forever', 0=session cookie, -1=delete + if (window.chrome) { + if (days==0) { + sessionStorage.setItem(this.cookie_namespace+cookie,val); + } else { + localStorage.setItem(this.cookie_namespace+cookie,val); + } + } else { + let date = new Date(); + date.setTime(date.getTime()+(days*24*60*60*1000)); + const expiration = days!=0 ? "expires="+date.toGMTString()+";" : ""; + document.cookie = this.cookie_namespace + cookie + "=" + + val + "; SameSite=Lax;" + expiration + "path=/"; + } + }, + + eraseSetting(cookie) { + if (window.chrome) { + if (localStorage.getItem(this.cookie_namespace+cookie)) { + localStorage.removeItem(this.cookie_namespace+cookie); + } else if (sessionStorage.getItem(this.cookie_namespace+cookie)) { + sessionStorage.removeItem(this.cookie_namespace+cookie); + } + } else { + this.writeSetting(cookie,'',-1); + } + }, +} diff --git a/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.html b/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.html new file mode 100644 index 0000000..cc14eff --- /dev/null +++ b/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.html @@ -0,0 +1,129 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash Directory Reference + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Bolt_Dash Directory Reference
+
+
+ + + + + + + + + + + + + + +

+Files

 backend.h
 
 can.h
 
 constants.h
 
 gpsprocessing.h
 
 nmea_decoder.h
 
 web.h
 
+
+
+ + + + diff --git a/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.js b/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.js new file mode 100644 index 0000000..51f1d8b --- /dev/null +++ b/docs/dir_9003ff251f894a0ca67807a78c4dd8f8.js @@ -0,0 +1,9 @@ +var dir_9003ff251f894a0ca67807a78c4dd8f8 = +[ + [ "backend.h", "backend_8h_source.html", null ], + [ "can.h", "can_8h_source.html", null ], + [ "constants.h", "constants_8h_source.html", null ], + [ "gpsprocessing.h", "gpsprocessing_8h_source.html", null ], + [ "nmea_decoder.h", "nmea__decoder_8h_source.html", null ], + [ "web.h", "web_8h_source.html", null ] +]; \ No newline at end of file diff --git a/docs/doc.svg b/docs/doc.svg new file mode 100644 index 0000000..0b928a5 --- /dev/null +++ b/docs/doc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/docs/docd.svg b/docs/docd.svg new file mode 100644 index 0000000..ac18b27 --- /dev/null +++ b/docs/docd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/docs/doxygen-awesome.css b/docs/doxygen-awesome.css new file mode 100644 index 0000000..6244a1e --- /dev/null +++ b/docs/doxygen-awesome.css @@ -0,0 +1,2681 @@ +/** + +Doxygen Awesome +https://github.com/jothepro/doxygen-awesome-css + +MIT License + +Copyright (c) 2021 - 2023 jothepro + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*/ + +html { + /* primary theme color. This will affect the entire websites color scheme: links, arrows, labels, ... */ + --primary-color: #1779c4; + --primary-dark-color: #335c80; + --primary-light-color: #70b1e9; + + /* page base colors */ + --page-background-color: #ffffff; + --page-foreground-color: #2f4153; + --page-secondary-foreground-color: #6f7e8e; + + /* color for all separators on the website: hr, borders, ... */ + --separator-color: #dedede; + + /* border radius for all rounded components. Will affect many components, like dropdowns, memitems, codeblocks, ... */ + --border-radius-large: 8px; + --border-radius-small: 4px; + --border-radius-medium: 6px; + + /* default spacings. Most components reference these values for spacing, to provide uniform spacing on the page. */ + --spacing-small: 5px; + --spacing-medium: 10px; + --spacing-large: 16px; + + /* default box shadow used for raising an element above the normal content. Used in dropdowns, search result, ... */ + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.075); + + --odd-color: rgba(0,0,0,.028); + + /* font-families. will affect all text on the website + * font-family: the normal font for text, headlines, menus + * font-family-monospace: used for preformatted text in memtitle, code, fragments + */ + --font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; + --font-family-monospace: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; + + /* font sizes */ + --page-font-size: 15.6px; + --navigation-font-size: 14.4px; + --toc-font-size: 13.4px; + --code-font-size: 14px; /* affects code, fragment */ + --title-font-size: 22px; + + /* content text properties. These only affect the page content, not the navigation or any other ui elements */ + --content-line-height: 27px; + /* The content is centered and constraint in it's width. To make the content fill the whole page, set the variable to auto.*/ + --content-maxwidth: 1050px; + --table-line-height: 24px; + --toc-sticky-top: var(--spacing-medium); + --toc-width: 200px; + --toc-max-height: calc(100vh - 2 * var(--spacing-medium) - 85px); + + /* colors for various content boxes: @warning, @note, @deprecated @bug */ + --warning-color: #faf3d8; + --warning-color-dark: #f3a600; + --warning-color-darker: #5f4204; + --note-color: #e4f3ff; + --note-color-dark: #1879C4; + --note-color-darker: #274a5c; + --todo-color: #e4dafd; + --todo-color-dark: #5b2bdd; + --todo-color-darker: #2a0d72; + --deprecated-color: #ecf0f3; + --deprecated-color-dark: #5b6269; + --deprecated-color-darker: #43454a; + --bug-color: #f8d1cc; + --bug-color-dark: #b61825; + --bug-color-darker: #75070f; + --invariant-color: #d8f1e3; + --invariant-color-dark: #44b86f; + --invariant-color-darker: #265532; + + /* blockquote colors */ + --blockquote-background: #f8f9fa; + --blockquote-foreground: #636568; + + /* table colors */ + --tablehead-background: #f1f1f1; + --tablehead-foreground: var(--page-foreground-color); + + /* menu-display: block | none + * Visibility of the top navigation on screens >= 768px. On smaller screen the menu is always visible. + * `GENERATE_TREEVIEW` MUST be enabled! + */ + --menu-display: block; + + --menu-focus-foreground: var(--page-background-color); + --menu-focus-background: var(--primary-color); + --menu-selected-background: rgba(0,0,0,.05); + + + --header-background: var(--page-background-color); + --header-foreground: var(--page-foreground-color); + + /* searchbar colors */ + --searchbar-background: var(--side-nav-background); + --searchbar-foreground: var(--page-foreground-color); + + /* searchbar size + * (`searchbar-width` is only applied on screens >= 768px. + * on smaller screens the searchbar will always fill the entire screen width) */ + --searchbar-height: 33px; + --searchbar-width: 210px; + --searchbar-border-radius: var(--searchbar-height); + + /* code block colors */ + --code-background: #f5f5f5; + --code-foreground: var(--page-foreground-color); + + /* fragment colors */ + --fragment-background: #F8F9FA; + --fragment-foreground: #37474F; + --fragment-keyword: #bb6bb2; + --fragment-keywordtype: #8258b3; + --fragment-keywordflow: #d67c3b; + --fragment-token: #438a59; + --fragment-comment: #969696; + --fragment-link: #5383d6; + --fragment-preprocessor: #46aaa5; + --fragment-linenumber-color: #797979; + --fragment-linenumber-background: #f4f4f5; + --fragment-linenumber-border: #e3e5e7; + --fragment-lineheight: 20px; + + /* sidebar navigation (treeview) colors */ + --side-nav-background: #fbfbfb; + --side-nav-foreground: var(--page-foreground-color); + --side-nav-arrow-opacity: 0; + --side-nav-arrow-hover-opacity: 0.9; + + --toc-background: var(--side-nav-background); + --toc-foreground: var(--side-nav-foreground); + + /* height of an item in any tree / collapsible table */ + --tree-item-height: 30px; + + --memname-font-size: var(--code-font-size); + --memtitle-font-size: 18px; + + --webkit-scrollbar-size: 7px; + --webkit-scrollbar-padding: 4px; + --webkit-scrollbar-color: var(--separator-color); + + --animation-duration: .12s +} + +@media screen and (max-width: 767px) { + html { + --page-font-size: 16px; + --navigation-font-size: 16px; + --toc-font-size: 15px; + --code-font-size: 15px; /* affects code, fragment */ + --title-font-size: 22px; + } +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) { + color-scheme: dark; + + --primary-color: #1982d2; + --primary-dark-color: #86a9c4; + --primary-light-color: #4779ac; + + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.35); + + --odd-color: rgba(100,100,100,.06); + + --menu-selected-background: rgba(0,0,0,.4); + + --page-background-color: #1C1D1F; + --page-foreground-color: #d2dbde; + --page-secondary-foreground-color: #859399; + --separator-color: #38393b; + --side-nav-background: #252628; + + --code-background: #2a2c2f; + + --tablehead-background: #2a2c2f; + + --blockquote-background: #222325; + --blockquote-foreground: #7e8c92; + + --warning-color: #3b2e04; + --warning-color-dark: #f1b602; + --warning-color-darker: #ceb670; + --note-color: #163750; + --note-color-dark: #1982D2; + --note-color-darker: #dcf0fa; + --todo-color: #2a2536; + --todo-color-dark: #7661b3; + --todo-color-darker: #ae9ed6; + --deprecated-color: #2e323b; + --deprecated-color-dark: #738396; + --deprecated-color-darker: #abb0bd; + --bug-color: #2e1917; + --bug-color-dark: #ad2617; + --bug-color-darker: #f5b1aa; + --invariant-color: #303a35; + --invariant-color-dark: #76ce96; + --invariant-color-darker: #cceed5; + + --fragment-background: #282c34; + --fragment-foreground: #dbe4eb; + --fragment-keyword: #cc99cd; + --fragment-keywordtype: #ab99cd; + --fragment-keywordflow: #e08000; + --fragment-token: #7ec699; + --fragment-comment: #999999; + --fragment-link: #98c0e3; + --fragment-preprocessor: #65cabe; + --fragment-linenumber-color: #cccccc; + --fragment-linenumber-background: #35393c; + --fragment-linenumber-border: #1f1f1f; + } +} + +/* dark mode variables are defined twice, to support both the dark-mode without and with doxygen-awesome-darkmode-toggle.js */ +html.dark-mode { + color-scheme: dark; + + --primary-color: #1982d2; + --primary-dark-color: #86a9c4; + --primary-light-color: #4779ac; + + --box-shadow: 0 2px 8px 0 rgba(0,0,0,.30); + + --odd-color: rgba(100,100,100,.06); + + --menu-selected-background: rgba(0,0,0,.4); + + --page-background-color: #1C1D1F; + --page-foreground-color: #d2dbde; + --page-secondary-foreground-color: #859399; + --separator-color: #38393b; + --side-nav-background: #252628; + + --code-background: #2a2c2f; + + --tablehead-background: #2a2c2f; + + --blockquote-background: #222325; + --blockquote-foreground: #7e8c92; + + --warning-color: #3b2e04; + --warning-color-dark: #f1b602; + --warning-color-darker: #ceb670; + --note-color: #163750; + --note-color-dark: #1982D2; + --note-color-darker: #dcf0fa; + --todo-color: #2a2536; + --todo-color-dark: #7661b3; + --todo-color-darker: #ae9ed6; + --deprecated-color: #2e323b; + --deprecated-color-dark: #738396; + --deprecated-color-darker: #abb0bd; + --bug-color: #2e1917; + --bug-color-dark: #ad2617; + --bug-color-darker: #f5b1aa; + --invariant-color: #303a35; + --invariant-color-dark: #76ce96; + --invariant-color-darker: #cceed5; + + --fragment-background: #282c34; + --fragment-foreground: #dbe4eb; + --fragment-keyword: #cc99cd; + --fragment-keywordtype: #ab99cd; + --fragment-keywordflow: #e08000; + --fragment-token: #7ec699; + --fragment-comment: #999999; + --fragment-link: #98c0e3; + --fragment-preprocessor: #65cabe; + --fragment-linenumber-color: #cccccc; + --fragment-linenumber-background: #35393c; + --fragment-linenumber-border: #1f1f1f; +} + +body { + color: var(--page-foreground-color); + background-color: var(--page-background-color); + font-size: var(--page-font-size); +} + +body, table, div, p, dl, #nav-tree .label, .title, +.sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname, +.SelectItem, #MSearchField, .navpath li.navelem a, +.navpath li.navelem a:hover, p.reference, p.definition, div.toc li, div.toc h3 { + font-family: var(--font-family); +} + +h1, h2, h3, h4, h5 { + margin-top: 1em; + font-weight: 600; + line-height: initial; +} + +p, div, table, dl, p.reference, p.definition { + font-size: var(--page-font-size); +} + +p.reference, p.definition { + color: var(--page-secondary-foreground-color); +} + +a:link, a:visited, a:hover, a:focus, a:active { + color: var(--primary-color) !important; + font-weight: 500; + background: none; +} + +a.anchor { + scroll-margin-top: var(--spacing-large); + display: block; +} + +/* + Title and top navigation + */ + +#top { + background: var(--header-background); + border-bottom: 1px solid var(--separator-color); +} + +@media screen and (min-width: 768px) { + #top { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + } +} + +#main-nav { + flex-grow: 5; + padding: var(--spacing-small) var(--spacing-medium); +} + +#titlearea { + width: auto; + padding: var(--spacing-medium) var(--spacing-large); + background: none; + color: var(--header-foreground); + border-bottom: none; +} + +@media screen and (max-width: 767px) { + #titlearea { + padding-bottom: var(--spacing-small); + } +} + +#titlearea table tbody tr { + height: auto !important; +} + +#projectname { + font-size: var(--title-font-size); + font-weight: 600; +} + +#projectnumber { + font-family: inherit; + font-size: 60%; +} + +#projectbrief { + font-family: inherit; + font-size: 80%; +} + +#projectlogo { + vertical-align: middle; +} + +#projectlogo img { + max-height: calc(var(--title-font-size) * 2); + margin-right: var(--spacing-small); +} + +.sm-dox, .tabs, .tabs2, .tabs3 { + background: none; + padding: 0; +} + +.tabs, .tabs2, .tabs3 { + border-bottom: 1px solid var(--separator-color); + margin-bottom: -1px; +} + +.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after { + background: var(--page-secondary-foreground-color); +} + +@media screen and (max-width: 767px) { + .sm-dox a span.sub-arrow { + background: var(--code-background); + } + + #main-menu a.has-submenu span.sub-arrow { + color: var(--page-secondary-foreground-color); + border-radius: var(--border-radius-medium); + } + + #main-menu a.has-submenu:hover span.sub-arrow { + color: var(--page-foreground-color); + } +} + +@media screen and (min-width: 768px) { + .sm-dox li, .tablist li { + display: var(--menu-display); + } + + .sm-dox a span.sub-arrow { + border-color: var(--header-foreground) transparent transparent transparent; + } + + .sm-dox a:hover span.sub-arrow { + border-color: var(--menu-focus-foreground) transparent transparent transparent; + } + + .sm-dox ul a span.sub-arrow { + border-color: transparent transparent transparent var(--page-foreground-color); + } + + .sm-dox ul a:hover span.sub-arrow { + border-color: transparent transparent transparent var(--menu-focus-foreground); + } +} + +.sm-dox ul { + background: var(--page-background-color); + box-shadow: var(--box-shadow); + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium) !important; + padding: var(--spacing-small); + animation: ease-out 150ms slideInMenu; +} + +@keyframes slideInMenu { + from { + opacity: 0; + transform: translate(0px, -2px); + } + + to { + opacity: 1; + transform: translate(0px, 0px); + } +} + +.sm-dox ul a { + color: var(--page-foreground-color) !important; + background: var(--page-background-color); + font-size: var(--navigation-font-size); +} + +.sm-dox>li>ul:after { + border-bottom-color: var(--page-background-color) !important; +} + +.sm-dox>li>ul:before { + border-bottom-color: var(--separator-color) !important; +} + +.sm-dox ul a:hover, .sm-dox ul a:active, .sm-dox ul a:focus { + font-size: var(--navigation-font-size) !important; + color: var(--menu-focus-foreground) !important; + text-shadow: none; + background-color: var(--menu-focus-background); + border-radius: var(--border-radius-small) !important; +} + +.sm-dox a, .sm-dox a:focus, .tablist li, .tablist li a, .tablist li.current a { + text-shadow: none; + background: transparent; + background-image: none !important; + color: var(--header-foreground) !important; + font-weight: normal; + font-size: var(--navigation-font-size); + border-radius: var(--border-radius-small) !important; +} + +.sm-dox a:focus { + outline: auto; +} + +.sm-dox a:hover, .sm-dox a:active, .tablist li a:hover { + text-shadow: none; + font-weight: normal; + background: var(--menu-focus-background); + color: var(--menu-focus-foreground) !important; + border-radius: var(--border-radius-small) !important; + font-size: var(--navigation-font-size); +} + +.tablist li.current { + border-radius: var(--border-radius-small); + background: var(--menu-selected-background); +} + +.tablist li { + margin: var(--spacing-small) 0 var(--spacing-small) var(--spacing-small); +} + +.tablist a { + padding: 0 var(--spacing-large); +} + + +/* + Search box + */ + +#MSearchBox { + height: var(--searchbar-height); + background: var(--searchbar-background); + border-radius: var(--searchbar-border-radius); + border: 1px solid var(--separator-color); + overflow: hidden; + width: var(--searchbar-width); + position: relative; + box-shadow: none; + display: block; + margin-top: 0; +} + +/* until Doxygen 1.9.4 */ +.left img#MSearchSelect { + left: 0; + user-select: none; + padding-left: 8px; +} + +/* Doxygen 1.9.5 */ +.left span#MSearchSelect { + left: 0; + user-select: none; + margin-left: 8px; + padding: 0; +} + +.left #MSearchSelect[src$=".png"] { + padding-left: 0 +} + +.SelectionMark { + user-select: none; +} + +.tabs .left #MSearchSelect { + padding-left: 0; +} + +.tabs #MSearchBox { + position: absolute; + right: var(--spacing-medium); +} + +@media screen and (max-width: 767px) { + .tabs #MSearchBox { + position: relative; + right: 0; + margin-left: var(--spacing-medium); + margin-top: 0; + } +} + +#MSearchSelectWindow, #MSearchResultsWindow { + z-index: 9999; +} + +#MSearchBox.MSearchBoxActive { + border-color: var(--primary-color); + box-shadow: inset 0 0 0 1px var(--primary-color); +} + +#main-menu > li:last-child { + margin-right: 0; +} + +@media screen and (max-width: 767px) { + #main-menu > li:last-child { + height: 50px; + } +} + +#MSearchField { + font-size: var(--navigation-font-size); + height: calc(var(--searchbar-height) - 2px); + background: transparent; + width: calc(var(--searchbar-width) - 64px); +} + +.MSearchBoxActive #MSearchField { + color: var(--searchbar-foreground); +} + +#MSearchSelect { + top: calc(calc(var(--searchbar-height) / 2) - 11px); +} + +#MSearchBox span.left, #MSearchBox span.right { + background: none; + background-image: none; +} + +#MSearchBox span.right { + padding-top: calc(calc(var(--searchbar-height) / 2) - 12px); + position: absolute; + right: var(--spacing-small); +} + +.tabs #MSearchBox span.right { + top: calc(calc(var(--searchbar-height) / 2) - 12px); +} + +@keyframes slideInSearchResults { + from { + opacity: 0; + transform: translate(0, 15px); + } + + to { + opacity: 1; + transform: translate(0, 20px); + } +} + +#MSearchResultsWindow { + left: auto !important; + right: var(--spacing-medium); + border-radius: var(--border-radius-large); + border: 1px solid var(--separator-color); + transform: translate(0, 20px); + box-shadow: var(--box-shadow); + animation: ease-out 280ms slideInSearchResults; + background: var(--page-background-color); +} + +iframe#MSearchResults { + margin: 4px; +} + +iframe { + color-scheme: normal; +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) iframe#MSearchResults { + filter: invert() hue-rotate(180deg); + } +} + +html.dark-mode iframe#MSearchResults { + filter: invert() hue-rotate(180deg); +} + +#MSearchResults .SRPage { + background-color: transparent; +} + +#MSearchResults .SRPage .SREntry { + font-size: 10pt; + padding: var(--spacing-small) var(--spacing-medium); +} + +#MSearchSelectWindow { + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + box-shadow: var(--box-shadow); + background: var(--page-background-color); + padding-top: var(--spacing-small); + padding-bottom: var(--spacing-small); +} + +#MSearchSelectWindow a.SelectItem { + font-size: var(--navigation-font-size); + line-height: var(--content-line-height); + margin: 0 var(--spacing-small); + border-radius: var(--border-radius-small); + color: var(--page-foreground-color) !important; + font-weight: normal; +} + +#MSearchSelectWindow a.SelectItem:hover { + background: var(--menu-focus-background); + color: var(--menu-focus-foreground) !important; +} + +@media screen and (max-width: 767px) { + #MSearchBox { + margin-top: var(--spacing-medium); + margin-bottom: var(--spacing-medium); + width: calc(100vw - 30px); + } + + #main-menu > li:last-child { + float: none !important; + } + + #MSearchField { + width: calc(100vw - 110px); + } + + @keyframes slideInSearchResultsMobile { + from { + opacity: 0; + transform: translate(0, 15px); + } + + to { + opacity: 1; + transform: translate(0, 20px); + } + } + + #MSearchResultsWindow { + left: var(--spacing-medium) !important; + right: var(--spacing-medium); + overflow: auto; + transform: translate(0, 20px); + animation: ease-out 280ms slideInSearchResultsMobile; + width: auto !important; + } + + /* + * Overwrites for fixing the searchbox on mobile in doxygen 1.9.2 + */ + label.main-menu-btn ~ #searchBoxPos1 { + top: 3px !important; + right: 6px !important; + left: 45px; + display: flex; + } + + label.main-menu-btn ~ #searchBoxPos1 > #MSearchBox { + margin-top: 0; + margin-bottom: 0; + flex-grow: 2; + float: left; + } +} + +/* + Tree view + */ + +#side-nav { + padding: 0 !important; + background: var(--side-nav-background); + min-width: 8px; + max-width: 50vw; +} + +@media screen and (max-width: 767px) { + #side-nav { + display: none; + } + + #doc-content { + margin-left: 0 !important; + } +} + +#nav-tree { + background: transparent; + margin-right: 1px; +} + +#nav-tree .label { + font-size: var(--navigation-font-size); +} + +#nav-tree .item { + height: var(--tree-item-height); + line-height: var(--tree-item-height); + overflow: hidden; + text-overflow: ellipsis; +} + +#nav-tree .item > a:focus { + outline: none; +} + +#nav-sync { + bottom: 12px; + right: 12px; + top: auto !important; + user-select: none; +} + +#nav-tree .selected { + text-shadow: none; + background-image: none; + background-color: transparent; + position: relative; + color: var(--primary-color) !important; + font-weight: 500; +} + +#nav-tree .selected::after { + content: ""; + position: absolute; + top: 1px; + bottom: 1px; + left: 0; + width: 4px; + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; + background: var(--primary-color); +} + + +#nav-tree a { + color: var(--side-nav-foreground) !important; + font-weight: normal; +} + +#nav-tree a:focus { + outline-style: auto; +} + +#nav-tree .arrow { + opacity: var(--side-nav-arrow-opacity); + background: none; +} + +.arrow { + color: inherit; + cursor: pointer; + font-size: 45%; + vertical-align: middle; + margin-right: 2px; + font-family: serif; + height: auto; + text-align: right; +} + +#nav-tree div.item:hover .arrow, #nav-tree a:focus .arrow { + opacity: var(--side-nav-arrow-hover-opacity); +} + +#nav-tree .selected a { + color: var(--primary-color) !important; + font-weight: bolder; + font-weight: 600; +} + +.ui-resizable-e { + width: 4px; + background: transparent; + box-shadow: inset -1px 0 0 0 var(--separator-color); +} + +/* + Contents + */ + +div.header { + border-bottom: 1px solid var(--separator-color); + background-color: var(--page-background-color); + background-image: none; +} + +@media screen and (min-width: 1000px) { + #doc-content > div > div.contents, + .PageDoc > div.contents { + display: flex; + flex-direction: row-reverse; + flex-wrap: nowrap; + align-items: flex-start; + } + + div.contents .textblock { + min-width: 200px; + flex-grow: 1; + } +} + +div.contents, div.header .title, div.header .summary { + max-width: var(--content-maxwidth); +} + +div.contents, div.header .title { + line-height: initial; + margin: calc(var(--spacing-medium) + .2em) auto var(--spacing-medium) auto; +} + +div.header .summary { + margin: var(--spacing-medium) auto 0 auto; +} + +div.headertitle { + padding: 0; +} + +div.header .title { + font-weight: 600; + font-size: 225%; + padding: var(--spacing-medium) var(--spacing-large); + word-break: break-word; +} + +div.header .summary { + width: auto; + display: block; + float: none; + padding: 0 var(--spacing-large); +} + +td.memSeparator { + border-color: var(--separator-color); +} + +span.mlabel { + background: var(--primary-color); + border: none; + padding: 4px 9px; + border-radius: 12px; + margin-right: var(--spacing-medium); +} + +span.mlabel:last-of-type { + margin-right: 2px; +} + +div.contents { + padding: 0 var(--spacing-large); +} + +div.contents p, div.contents li { + line-height: var(--content-line-height); +} + +div.contents div.dyncontent { + margin: var(--spacing-medium) 0; +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) div.contents div.dyncontent img, + html:not(.light-mode) div.contents center img, + html:not(.light-mode) div.contents > table img, + html:not(.light-mode) div.contents div.dyncontent iframe, + html:not(.light-mode) div.contents center iframe, + html:not(.light-mode) div.contents table iframe, + html:not(.light-mode) div.contents .dotgraph iframe { + filter: brightness(89%) hue-rotate(180deg) invert(); + } +} + +html.dark-mode div.contents div.dyncontent img, +html.dark-mode div.contents center img, +html.dark-mode div.contents > table img, +html.dark-mode div.contents div.dyncontent iframe, +html.dark-mode div.contents center iframe, +html.dark-mode div.contents table iframe, +html.dark-mode div.contents .dotgraph iframe + { + filter: brightness(89%) hue-rotate(180deg) invert(); +} + +h2.groupheader { + border-bottom: 0px; + color: var(--page-foreground-color); + box-shadow: + 100px 0 var(--page-background-color), + -100px 0 var(--page-background-color), + 100px 0.75px var(--separator-color), + -100px 0.75px var(--separator-color), + 500px 0 var(--page-background-color), + -500px 0 var(--page-background-color), + 500px 0.75px var(--separator-color), + -500px 0.75px var(--separator-color), + 900px 0 var(--page-background-color), + -900px 0 var(--page-background-color), + 900px 0.75px var(--separator-color), + -900px 0.75px var(--separator-color), + 1400px 0 var(--page-background-color), + -1400px 0 var(--page-background-color), + 1400px 0.75px var(--separator-color), + -1400px 0.75px var(--separator-color), + 1900px 0 var(--page-background-color), + -1900px 0 var(--page-background-color), + 1900px 0.75px var(--separator-color), + -1900px 0.75px var(--separator-color); +} + +blockquote { + margin: 0 var(--spacing-medium) 0 var(--spacing-medium); + padding: var(--spacing-small) var(--spacing-large); + background: var(--blockquote-background); + color: var(--blockquote-foreground); + border-left: 0; + overflow: visible; + border-radius: var(--border-radius-medium); + overflow: visible; + position: relative; +} + +blockquote::before, blockquote::after { + font-weight: bold; + font-family: serif; + font-size: 360%; + opacity: .15; + position: absolute; +} + +blockquote::before { + content: "“"; + left: -10px; + top: 4px; +} + +blockquote::after { + content: "”"; + right: -8px; + bottom: -25px; +} + +blockquote p { + margin: var(--spacing-small) 0 var(--spacing-medium) 0; +} +.paramname, .paramname em { + font-weight: 600; + color: var(--primary-dark-color); +} + +.paramname > code { + border: 0; +} + +table.params .paramname { + font-weight: 600; + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); + padding-right: var(--spacing-small); + line-height: var(--table-line-height); +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px var(--primary-light-color); +} + +.alphachar a { + color: var(--page-foreground-color); +} + +.dotgraph { + max-width: 100%; + overflow-x: scroll; +} + +.dotgraph .caption { + position: sticky; + left: 0; +} + +/* Wrap Graphviz graphs with the `interactive_dotgraph` class if `INTERACTIVE_SVG = YES` */ +.interactive_dotgraph .dotgraph iframe { + max-width: 100%; +} + +/* + Table of Contents + */ + +div.contents .toc { + max-height: var(--toc-max-height); + min-width: var(--toc-width); + border: 0; + border-left: 1px solid var(--separator-color); + border-radius: 0; + background-color: var(--page-background-color); + box-shadow: none; + position: sticky; + top: var(--toc-sticky-top); + padding: 0 var(--spacing-large); + margin: var(--spacing-small) 0 var(--spacing-large) var(--spacing-large); +} + +div.toc h3 { + color: var(--toc-foreground); + font-size: var(--navigation-font-size); + margin: var(--spacing-large) 0 var(--spacing-medium) 0; +} + +div.toc li { + padding: 0; + background: none; + line-height: var(--toc-font-size); + margin: var(--toc-font-size) 0 0 0; +} + +div.toc li::before { + display: none; +} + +div.toc ul { + margin-top: 0 +} + +div.toc li a { + font-size: var(--toc-font-size); + color: var(--page-foreground-color) !important; + text-decoration: none; +} + +div.toc li a:hover, div.toc li a.active { + color: var(--primary-color) !important; +} + +div.toc li a.aboveActive { + color: var(--page-secondary-foreground-color) !important; +} + + +@media screen and (max-width: 999px) { + div.contents .toc { + max-height: 45vh; + float: none; + width: auto; + margin: 0 0 var(--spacing-medium) 0; + position: relative; + top: 0; + position: relative; + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + background-color: var(--toc-background); + box-shadow: var(--box-shadow); + } + + div.contents .toc.interactive { + max-height: calc(var(--navigation-font-size) + 2 * var(--spacing-large)); + overflow: hidden; + } + + div.contents .toc > h3 { + -webkit-tap-highlight-color: transparent; + cursor: pointer; + position: sticky; + top: 0; + background-color: var(--toc-background); + margin: 0; + padding: var(--spacing-large) 0; + display: block; + } + + div.contents .toc.interactive > h3::before { + content: ""; + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 5px solid var(--primary-color); + display: inline-block; + margin-right: var(--spacing-small); + margin-bottom: calc(var(--navigation-font-size) / 4); + transform: rotate(-90deg); + transition: transform var(--animation-duration) ease-out; + } + + div.contents .toc.interactive.open > h3::before { + transform: rotate(0deg); + } + + div.contents .toc.interactive.open { + max-height: 45vh; + overflow: auto; + transition: max-height 0.2s ease-in-out; + } + + div.contents .toc a, div.contents .toc a.active { + color: var(--primary-color) !important; + } + + div.contents .toc a:hover { + text-decoration: underline; + } +} + +/* + Code & Fragments + */ + +code, div.fragment, pre.fragment { + border-radius: var(--border-radius-small); + border: 1px solid var(--separator-color); + overflow: hidden; +} + +code { + display: inline; + background: var(--code-background); + color: var(--code-foreground); + padding: 2px 6px; +} + +div.fragment, pre.fragment { + margin: var(--spacing-medium) 0; + padding: calc(var(--spacing-large) - (var(--spacing-large) / 6)) var(--spacing-large); + background: var(--fragment-background); + color: var(--fragment-foreground); + overflow-x: auto; +} + +@media screen and (max-width: 767px) { + div.fragment, pre.fragment { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right: 0; + } + + .contents > div.fragment, + .textblock > div.fragment, + .textblock > pre.fragment, + .textblock > .tabbed > ul > li > div.fragment, + .textblock > .tabbed > ul > li > pre.fragment, + .contents > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .doxygen-awesome-fragment-wrapper > pre.fragment, + .textblock > .tabbed > ul > li > .doxygen-awesome-fragment-wrapper > div.fragment, + .textblock > .tabbed > ul > li > .doxygen-awesome-fragment-wrapper > pre.fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-large)); + border-radius: 0; + border-left: 0; + } + + .textblock li > .fragment, + .textblock li > .doxygen-awesome-fragment-wrapper > .fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-large)); + } + + .memdoc li > .fragment, + .memdoc li > .doxygen-awesome-fragment-wrapper > .fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-medium)); + } + + .textblock ul, .memdoc ul { + overflow: initial; + } + + .memdoc > div.fragment, + .memdoc > pre.fragment, + dl dd > div.fragment, + dl dd pre.fragment, + .memdoc > .doxygen-awesome-fragment-wrapper > div.fragment, + .memdoc > .doxygen-awesome-fragment-wrapper > pre.fragment, + dl dd > .doxygen-awesome-fragment-wrapper > div.fragment, + dl dd .doxygen-awesome-fragment-wrapper > pre.fragment { + margin: var(--spacing-medium) calc(0px - var(--spacing-medium)); + border-radius: 0; + border-left: 0; + } +} + +code, code a, pre.fragment, div.fragment, div.fragment .line, div.fragment span, div.fragment .line a, div.fragment .line span { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size) !important; +} + +div.line:after { + margin-right: var(--spacing-medium); +} + +div.fragment .line, pre.fragment { + white-space: pre; + word-wrap: initial; + line-height: var(--fragment-lineheight); +} + +div.fragment span.keyword { + color: var(--fragment-keyword); +} + +div.fragment span.keywordtype { + color: var(--fragment-keywordtype); +} + +div.fragment span.keywordflow { + color: var(--fragment-keywordflow); +} + +div.fragment span.stringliteral { + color: var(--fragment-token) +} + +div.fragment span.comment { + color: var(--fragment-comment); +} + +div.fragment a.code { + color: var(--fragment-link) !important; +} + +div.fragment span.preprocessor { + color: var(--fragment-preprocessor); +} + +div.fragment span.lineno { + display: inline-block; + width: 27px; + border-right: none; + background: var(--fragment-linenumber-background); + color: var(--fragment-linenumber-color); +} + +div.fragment span.lineno a { + background: none; + color: var(--fragment-link) !important; +} + +div.fragment > .line:first-child .lineno { + box-shadow: -999999px 0px 0 999999px var(--fragment-linenumber-background), -999998px 0px 0 999999px var(--fragment-linenumber-border); + background-color: var(--fragment-linenumber-background) !important; +} + +div.line { + border-radius: var(--border-radius-small); +} + +div.line.glow { + background-color: var(--primary-light-color); + box-shadow: none; +} + +/* + dl warning, attention, note, deprecated, bug, ... + */ + +dl.bug dt a, dl.deprecated dt a, dl.todo dt a { + font-weight: bold !important; +} + +dl.warning, dl.attention, dl.note, dl.deprecated, dl.bug, dl.invariant, dl.pre, dl.post, dl.todo, dl.remark { + padding: var(--spacing-medium); + margin: var(--spacing-medium) 0; + color: var(--page-background-color); + overflow: hidden; + margin-left: 0; + border-radius: var(--border-radius-small); +} + +dl.section dd { + margin-bottom: 2px; +} + +dl.warning, dl.attention { + background: var(--warning-color); + border-left: 8px solid var(--warning-color-dark); + color: var(--warning-color-darker); +} + +dl.warning dt, dl.attention dt { + color: var(--warning-color-dark); +} + +dl.note, dl.remark { + background: var(--note-color); + border-left: 8px solid var(--note-color-dark); + color: var(--note-color-darker); +} + +dl.note dt, dl.remark dt { + color: var(--note-color-dark); +} + +dl.todo { + background: var(--todo-color); + border-left: 8px solid var(--todo-color-dark); + color: var(--todo-color-darker); +} + +dl.todo dt a { + color: var(--todo-color-dark) !important; +} + +dl.bug dt a { + color: var(--todo-color-dark) !important; +} + +dl.bug { + background: var(--bug-color); + border-left: 8px solid var(--bug-color-dark); + color: var(--bug-color-darker); +} + +dl.bug dt a { + color: var(--bug-color-dark) !important; +} + +dl.deprecated { + background: var(--deprecated-color); + border-left: 8px solid var(--deprecated-color-dark); + color: var(--deprecated-color-darker); +} + +dl.deprecated dt a { + color: var(--deprecated-color-dark) !important; +} + +dl.section dd, dl.bug dd, dl.deprecated dd, dl.todo dd { + margin-inline-start: 0px; +} + +dl.invariant, dl.pre, dl.post { + background: var(--invariant-color); + border-left: 8px solid var(--invariant-color-dark); + color: var(--invariant-color-darker); +} + +dl.invariant dt, dl.pre dt, dl.post dt { + color: var(--invariant-color-dark); +} + +/* + memitem + */ + +div.memdoc, div.memproto, h2.memtitle { + box-shadow: none; + background-image: none; + border: none; +} + +div.memdoc { + padding: 0 var(--spacing-medium); + background: var(--page-background-color); +} + +h2.memtitle, div.memitem { + border: 1px solid var(--separator-color); + box-shadow: var(--box-shadow); +} + +h2.memtitle { + box-shadow: 0px var(--spacing-medium) 0 -1px var(--fragment-background), var(--box-shadow); +} + +div.memitem { + transition: none; +} + +div.memproto, h2.memtitle { + background: var(--fragment-background); +} + +h2.memtitle { + font-weight: 500; + font-size: var(--memtitle-font-size); + font-family: var(--font-family-monospace); + border-bottom: none; + border-top-left-radius: var(--border-radius-medium); + border-top-right-radius: var(--border-radius-medium); + word-break: break-all; + position: relative; +} + +h2.memtitle:after { + content: ""; + display: block; + background: var(--fragment-background); + height: var(--spacing-medium); + bottom: calc(0px - var(--spacing-medium)); + left: 0; + right: -14px; + position: absolute; + border-top-right-radius: var(--border-radius-medium); +} + +h2.memtitle > span.permalink { + font-size: inherit; +} + +h2.memtitle > span.permalink > a { + text-decoration: none; + padding-left: 3px; + margin-right: -4px; + user-select: none; + display: inline-block; + margin-top: -6px; +} + +h2.memtitle > span.permalink > a:hover { + color: var(--primary-dark-color) !important; +} + +a:target + h2.memtitle, a:target + h2.memtitle + div.memitem { + border-color: var(--primary-light-color); +} + +div.memitem { + border-top-right-radius: var(--border-radius-medium); + border-bottom-right-radius: var(--border-radius-medium); + border-bottom-left-radius: var(--border-radius-medium); + overflow: hidden; + display: block !important; +} + +div.memdoc { + border-radius: 0; +} + +div.memproto { + border-radius: 0 var(--border-radius-small) 0 0; + overflow: auto; + border-bottom: 1px solid var(--separator-color); + padding: var(--spacing-medium); + margin-bottom: -1px; +} + +div.memtitle { + border-top-right-radius: var(--border-radius-medium); + border-top-left-radius: var(--border-radius-medium); +} + +div.memproto table.memname { + font-family: var(--font-family-monospace); + color: var(--page-foreground-color); + font-size: var(--memname-font-size); + text-shadow: none; +} + +div.memproto div.memtemplate { + font-family: var(--font-family-monospace); + color: var(--primary-dark-color); + font-size: var(--memname-font-size); + margin-left: 2px; + text-shadow: none; +} + +table.mlabels, table.mlabels > tbody { + display: block; +} + +td.mlabels-left { + width: auto; +} + +td.mlabels-right { + margin-top: 3px; + position: sticky; + left: 0; +} + +table.mlabels > tbody > tr:first-child { + display: flex; + justify-content: space-between; + flex-wrap: wrap; +} + +.memname, .memitem span.mlabels { + margin: 0 +} + +/* + reflist + */ + +dl.reflist { + box-shadow: var(--box-shadow); + border-radius: var(--border-radius-medium); + border: 1px solid var(--separator-color); + overflow: hidden; + padding: 0; +} + + +dl.reflist dt, dl.reflist dd { + box-shadow: none; + text-shadow: none; + background-image: none; + border: none; + padding: 12px; +} + + +dl.reflist dt { + font-weight: 500; + border-radius: 0; + background: var(--code-background); + border-bottom: 1px solid var(--separator-color); + color: var(--page-foreground-color) +} + + +dl.reflist dd { + background: none; +} + +/* + Table + */ + +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname), +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody { + display: inline-block; + max-width: 100%; +} + +.contents > table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname):not(.classindex) { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + max-width: calc(100% + 2 * var(--spacing-large)); +} + +table.fieldtable, +table.markdownTable tbody, +table.doxtable tbody { + border: none; + margin: var(--spacing-medium) 0; + box-shadow: 0 0 0 1px var(--separator-color); + border-radius: var(--border-radius-small); +} + +table.markdownTable, table.doxtable, table.fieldtable { + padding: 1px; +} + +table.doxtable caption { + display: block; +} + +table.fieldtable { + border-collapse: collapse; + width: 100%; +} + +th.markdownTableHeadLeft, +th.markdownTableHeadRight, +th.markdownTableHeadCenter, +th.markdownTableHeadNone, +table.doxtable th { + background: var(--tablehead-background); + color: var(--tablehead-foreground); + font-weight: 600; + font-size: var(--page-font-size); +} + +th.markdownTableHeadLeft:first-child, +th.markdownTableHeadRight:first-child, +th.markdownTableHeadCenter:first-child, +th.markdownTableHeadNone:first-child, +table.doxtable tr th:first-child { + border-top-left-radius: var(--border-radius-small); +} + +th.markdownTableHeadLeft:last-child, +th.markdownTableHeadRight:last-child, +th.markdownTableHeadCenter:last-child, +th.markdownTableHeadNone:last-child, +table.doxtable tr th:last-child { + border-top-right-radius: var(--border-radius-small); +} + +table.markdownTable td, +table.markdownTable th, +table.fieldtable td, +table.fieldtable th, +table.doxtable td, +table.doxtable th { + border: 1px solid var(--separator-color); + padding: var(--spacing-small) var(--spacing-medium); +} + +table.markdownTable td:last-child, +table.markdownTable th:last-child, +table.fieldtable td:last-child, +table.fieldtable th:last-child, +table.doxtable td:last-child, +table.doxtable th:last-child { + border-right: none; +} + +table.markdownTable td:first-child, +table.markdownTable th:first-child, +table.fieldtable td:first-child, +table.fieldtable th:first-child, +table.doxtable td:first-child, +table.doxtable th:first-child { + border-left: none; +} + +table.markdownTable tr:first-child td, +table.markdownTable tr:first-child th, +table.fieldtable tr:first-child td, +table.fieldtable tr:first-child th, +table.doxtable tr:first-child td, +table.doxtable tr:first-child th { + border-top: none; +} + +table.markdownTable tr:last-child td, +table.markdownTable tr:last-child th, +table.fieldtable tr:last-child td, +table.fieldtable tr:last-child th, +table.doxtable tr:last-child td, +table.doxtable tr:last-child th { + border-bottom: none; +} + +table.markdownTable tr, table.doxtable tr { + border-bottom: 1px solid var(--separator-color); +} + +table.markdownTable tr:last-child, table.doxtable tr:last-child { + border-bottom: none; +} + +.full_width_table table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) { + display: block; +} + +.full_width_table table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody { + display: table; + width: 100%; +} + +table.fieldtable th { + font-size: var(--page-font-size); + font-weight: 600; + background-image: none; + background-color: var(--tablehead-background); + color: var(--tablehead-foreground); +} + +table.fieldtable td.fieldtype, .fieldtable td.fieldname, .fieldtable td.fielddoc, .fieldtable th { + border-bottom: 1px solid var(--separator-color); + border-right: 1px solid var(--separator-color); +} + +table.fieldtable tr:last-child td:first-child { + border-bottom-left-radius: var(--border-radius-small); +} + +table.fieldtable tr:last-child td:last-child { + border-bottom-right-radius: var(--border-radius-small); +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: var(--primary-light-color); + box-shadow: none; +} + +table.memberdecls { + display: block; + -webkit-tap-highlight-color: transparent; +} + +table.memberdecls tr[class^='memitem'] { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); +} + +table.memberdecls tr[class^='memitem'] .memTemplParams { + font-family: var(--font-family-monospace); + font-size: var(--code-font-size); + color: var(--primary-dark-color); + white-space: normal; +} + +table.memberdecls .memItemLeft, +table.memberdecls .memItemRight, +table.memberdecls .memTemplItemLeft, +table.memberdecls .memTemplItemRight, +table.memberdecls .memTemplParams { + transition: none; + padding-top: var(--spacing-small); + padding-bottom: var(--spacing-small); + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + background-color: var(--fragment-background); +} + +table.memberdecls .memTemplItemLeft, +table.memberdecls .memTemplItemRight { + padding-top: 2px; +} + +table.memberdecls .memTemplParams { + border-bottom: 0; + border-left: 1px solid var(--separator-color); + border-right: 1px solid var(--separator-color); + border-radius: var(--border-radius-small) var(--border-radius-small) 0 0; + padding-bottom: var(--spacing-small); +} + +table.memberdecls .memTemplItemLeft { + border-radius: 0 0 0 var(--border-radius-small); + border-left: 1px solid var(--separator-color); + border-top: 0; +} + +table.memberdecls .memTemplItemRight { + border-radius: 0 0 var(--border-radius-small) 0; + border-right: 1px solid var(--separator-color); + padding-left: 0; + border-top: 0; +} + +table.memberdecls .memItemLeft { + border-radius: var(--border-radius-small) 0 0 var(--border-radius-small); + border-left: 1px solid var(--separator-color); + padding-left: var(--spacing-medium); + padding-right: 0; +} + +table.memberdecls .memItemRight { + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; + border-right: 1px solid var(--separator-color); + padding-right: var(--spacing-medium); + padding-left: 0; + +} + +table.memberdecls .mdescLeft, table.memberdecls .mdescRight { + background: none; + color: var(--page-foreground-color); + padding: var(--spacing-small) 0; +} + +table.memberdecls .memItemLeft, +table.memberdecls .memTemplItemLeft { + padding-right: var(--spacing-medium); +} + +table.memberdecls .memSeparator { + background: var(--page-background-color); + height: var(--spacing-large); + border: 0; + transition: none; +} + +table.memberdecls .groupheader { + margin-bottom: var(--spacing-large); +} + +table.memberdecls .inherit_header td { + padding: 0 0 var(--spacing-medium) 0; + text-indent: -12px; + color: var(--page-secondary-foreground-color); +} + +table.memberdecls img[src="closed.png"], +table.memberdecls img[src="open.png"], +div.dynheader img[src="open.png"], +div.dynheader img[src="closed.png"] { + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 5px solid var(--primary-color); + margin-top: 8px; + display: block; + float: left; + margin-left: -10px; + transition: transform var(--animation-duration) ease-out; +} + +table.memberdecls img { + margin-right: 10px; +} + +table.memberdecls img[src="closed.png"], +div.dynheader img[src="closed.png"] { + transform: rotate(-90deg); + +} + +.compoundTemplParams { + font-family: var(--font-family-monospace); + color: var(--primary-dark-color); + font-size: var(--code-font-size); +} + +@media screen and (max-width: 767px) { + + table.memberdecls .memItemLeft, + table.memberdecls .memItemRight, + table.memberdecls .mdescLeft, + table.memberdecls .mdescRight, + table.memberdecls .memTemplItemLeft, + table.memberdecls .memTemplItemRight, + table.memberdecls .memTemplParams { + display: block; + text-align: left; + padding-left: var(--spacing-large); + margin: 0 calc(0px - var(--spacing-large)) 0 calc(0px - var(--spacing-large)); + border-right: none; + border-left: none; + border-radius: 0; + white-space: normal; + } + + table.memberdecls .memItemLeft, + table.memberdecls .mdescLeft, + table.memberdecls .memTemplItemLeft { + border-bottom: 0; + padding-bottom: 0; + } + + table.memberdecls .memTemplItemLeft { + padding-top: 0; + } + + table.memberdecls .mdescLeft { + margin-bottom: calc(0px - var(--page-font-size)); + } + + table.memberdecls .memItemRight, + table.memberdecls .mdescRight, + table.memberdecls .memTemplItemRight { + border-top: 0; + padding-top: 0; + padding-right: var(--spacing-large); + overflow-x: auto; + } + + table.memberdecls tr[class^='memitem']:not(.inherit) { + display: block; + width: calc(100vw - 2 * var(--spacing-large)); + } + + table.memberdecls .mdescRight { + color: var(--page-foreground-color); + } + + table.memberdecls tr.inherit { + visibility: hidden; + } + + table.memberdecls tr[style="display: table-row;"] { + display: block !important; + visibility: visible; + width: calc(100vw - 2 * var(--spacing-large)); + animation: fade .5s; + } + + @keyframes fade { + 0% { + opacity: 0; + max-height: 0; + } + + 100% { + opacity: 1; + max-height: 200px; + } + } +} + + +/* + Horizontal Rule + */ + +hr { + margin-top: var(--spacing-large); + margin-bottom: var(--spacing-large); + height: 1px; + background-color: var(--separator-color); + border: 0; +} + +.contents hr { + box-shadow: 100px 0 var(--separator-color), + -100px 0 var(--separator-color), + 500px 0 var(--separator-color), + -500px 0 var(--separator-color), + 900px 0 var(--separator-color), + -900px 0 var(--separator-color), + 1400px 0 var(--separator-color), + -1400px 0 var(--separator-color), + 1900px 0 var(--separator-color), + -1900px 0 var(--separator-color); +} + +.contents img, .contents .center, .contents center, .contents div.image object { + max-width: 100%; + overflow: auto; +} + +@media screen and (max-width: 767px) { + .contents .dyncontent > .center, .contents > center { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + max-width: calc(100% + 2 * var(--spacing-large)); + } +} + +/* + Directories + */ +div.directory { + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + width: auto; +} + +table.directory { + font-family: var(--font-family); + font-size: var(--page-font-size); + font-weight: normal; + width: 100%; +} + +table.directory td.entry, table.directory td.desc { + padding: calc(var(--spacing-small) / 2) var(--spacing-small); + line-height: var(--table-line-height); +} + +table.directory tr.even td:last-child { + border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0; +} + +table.directory tr.even td:first-child { + border-radius: var(--border-radius-small) 0 0 var(--border-radius-small); +} + +table.directory tr.even:last-child td:last-child { + border-radius: 0 var(--border-radius-small) 0 0; +} + +table.directory tr.even:last-child td:first-child { + border-radius: var(--border-radius-small) 0 0 0; +} + +table.directory td.desc { + min-width: 250px; +} + +table.directory tr.even { + background-color: var(--odd-color); +} + +table.directory tr.odd { + background-color: transparent; +} + +.icona { + width: auto; + height: auto; + margin: 0 var(--spacing-small); +} + +.icon { + background: var(--primary-color); + border-radius: var(--border-radius-small); + font-size: var(--page-font-size); + padding: calc(var(--page-font-size) / 5); + line-height: var(--page-font-size); + transform: scale(0.8); + height: auto; + width: var(--page-font-size); + user-select: none; +} + +.iconfopen, .icondoc, .iconfclosed { + background-position: center; + margin-bottom: 0; + height: var(--table-line-height); +} + +.icondoc { + filter: saturate(0.2); +} + +@media screen and (max-width: 767px) { + div.directory { + margin-left: calc(0px - var(--spacing-large)); + margin-right: calc(0px - var(--spacing-large)); + } +} + +@media (prefers-color-scheme: dark) { + html:not(.light-mode) .iconfopen, html:not(.light-mode) .iconfclosed { + filter: hue-rotate(180deg) invert(); + } +} + +html.dark-mode .iconfopen, html.dark-mode .iconfclosed { + filter: hue-rotate(180deg) invert(); +} + +/* + Class list + */ + +.classindex dl.odd { + background: var(--odd-color); + border-radius: var(--border-radius-small); +} + +.classindex dl.even { + background-color: transparent; +} + +/* + Class Index Doxygen 1.8 +*/ + +table.classindex { + margin-left: 0; + margin-right: 0; + width: 100%; +} + +table.classindex table div.ah { + background-image: none; + background-color: initial; + border-color: var(--separator-color); + color: var(--page-foreground-color); + box-shadow: var(--box-shadow); + border-radius: var(--border-radius-large); + padding: var(--spacing-small); +} + +div.qindex { + background-color: var(--odd-color); + border-radius: var(--border-radius-small); + border: 1px solid var(--separator-color); + padding: var(--spacing-small) 0; +} + +/* + Footer and nav-path + */ + +#nav-path { + width: 100%; +} + +#nav-path ul { + background-image: none; + background: var(--page-background-color); + border: none; + border-top: 1px solid var(--separator-color); + border-bottom: 1px solid var(--separator-color); + border-bottom: 0; + box-shadow: 0 0.75px 0 var(--separator-color); + font-size: var(--navigation-font-size); +} + +img.footer { + width: 60px; +} + +.navpath li.footer { + color: var(--page-secondary-foreground-color); +} + +address.footer { + color: var(--page-secondary-foreground-color); + margin-bottom: var(--spacing-large); +} + +#nav-path li.navelem { + background-image: none; + display: flex; + align-items: center; +} + +.navpath li.navelem a { + text-shadow: none; + display: inline-block; + color: var(--primary-color) !important; +} + +.navpath li.navelem b { + color: var(--primary-dark-color); + font-weight: 500; +} + +li.navelem { + padding: 0; + margin-left: -8px; +} + +li.navelem:first-child { + margin-left: var(--spacing-large); +} + +li.navelem:first-child:before { + display: none; +} + +#nav-path li.navelem:after { + content: ''; + border: 5px solid var(--page-background-color); + border-bottom-color: transparent; + border-right-color: transparent; + border-top-color: transparent; + transform: translateY(-1px) scaleY(4.2); + z-index: 10; + margin-left: 6px; +} + +#nav-path li.navelem:before { + content: ''; + border: 5px solid var(--separator-color); + border-bottom-color: transparent; + border-right-color: transparent; + border-top-color: transparent; + transform: translateY(-1px) scaleY(3.2); + margin-right: var(--spacing-small); +} + +.navpath li.navelem a:hover { + color: var(--primary-color); +} + +/* + Scrollbars for Webkit +*/ + +#nav-tree::-webkit-scrollbar, +div.fragment::-webkit-scrollbar, +pre.fragment::-webkit-scrollbar, +div.memproto::-webkit-scrollbar, +.contents center::-webkit-scrollbar, +.contents .center::-webkit-scrollbar, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar, +div.contents .toc::-webkit-scrollbar, +.contents .dotgraph::-webkit-scrollbar, +.contents .tabs-overview-container::-webkit-scrollbar { + background: transparent; + width: calc(var(--webkit-scrollbar-size) + var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); + height: calc(var(--webkit-scrollbar-size) + var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); +} + +#nav-tree::-webkit-scrollbar-thumb, +div.fragment::-webkit-scrollbar-thumb, +pre.fragment::-webkit-scrollbar-thumb, +div.memproto::-webkit-scrollbar-thumb, +.contents center::-webkit-scrollbar-thumb, +.contents .center::-webkit-scrollbar-thumb, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar-thumb, +div.contents .toc::-webkit-scrollbar-thumb, +.contents .dotgraph::-webkit-scrollbar-thumb, +.contents .tabs-overview-container::-webkit-scrollbar-thumb { + background-color: transparent; + border: var(--webkit-scrollbar-padding) solid transparent; + border-radius: calc(var(--webkit-scrollbar-padding) + var(--webkit-scrollbar-padding)); + background-clip: padding-box; +} + +#nav-tree:hover::-webkit-scrollbar-thumb, +div.fragment:hover::-webkit-scrollbar-thumb, +pre.fragment:hover::-webkit-scrollbar-thumb, +div.memproto:hover::-webkit-scrollbar-thumb, +.contents center:hover::-webkit-scrollbar-thumb, +.contents .center:hover::-webkit-scrollbar-thumb, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody:hover::-webkit-scrollbar-thumb, +div.contents .toc:hover::-webkit-scrollbar-thumb, +.contents .dotgraph:hover::-webkit-scrollbar-thumb, +.contents .tabs-overview-container:hover::-webkit-scrollbar-thumb { + background-color: var(--webkit-scrollbar-color); +} + +#nav-tree::-webkit-scrollbar-track, +div.fragment::-webkit-scrollbar-track, +pre.fragment::-webkit-scrollbar-track, +div.memproto::-webkit-scrollbar-track, +.contents center::-webkit-scrollbar-track, +.contents .center::-webkit-scrollbar-track, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody::-webkit-scrollbar-track, +div.contents .toc::-webkit-scrollbar-track, +.contents .dotgraph::-webkit-scrollbar-track, +.contents .tabs-overview-container::-webkit-scrollbar-track { + background: transparent; +} + +#nav-tree::-webkit-scrollbar-corner { + background-color: var(--side-nav-background); +} + +#nav-tree, +div.fragment, +pre.fragment, +div.memproto, +.contents center, +.contents .center, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody, +div.contents .toc { + overflow-x: auto; + overflow-x: overlay; +} + +#nav-tree { + overflow-x: auto; + overflow-y: auto; + overflow-y: overlay; +} + +/* + Scrollbars for Firefox +*/ + +#nav-tree, +div.fragment, +pre.fragment, +div.memproto, +.contents center, +.contents .center, +.contents table:not(.memberdecls):not(.mlabels):not(.fieldtable):not(.memname) tbody, +div.contents .toc, +.contents .dotgraph, +.contents .tabs-overview-container { + scrollbar-width: thin; +} + +/* + Optional Dark mode toggle button +*/ + +doxygen-awesome-dark-mode-toggle { + display: inline-block; + margin: 0 0 0 var(--spacing-small); + padding: 0; + width: var(--searchbar-height); + height: var(--searchbar-height); + background: none; + border: none; + border-radius: var(--searchbar-height); + vertical-align: middle; + text-align: center; + line-height: var(--searchbar-height); + font-size: 22px; + display: flex; + align-items: center; + justify-content: center; + user-select: none; + cursor: pointer; +} + +doxygen-awesome-dark-mode-toggle > svg { + transition: transform var(--animation-duration) ease-in-out; +} + +doxygen-awesome-dark-mode-toggle:active > svg { + transform: scale(.5); +} + +doxygen-awesome-dark-mode-toggle:hover { + background-color: rgba(0,0,0,.03); +} + +html.dark-mode doxygen-awesome-dark-mode-toggle:hover { + background-color: rgba(0,0,0,.18); +} + +/* + Optional fragment copy button +*/ +.doxygen-awesome-fragment-wrapper { + position: relative; +} + +doxygen-awesome-fragment-copy-button { + opacity: 0; + background: var(--fragment-background); + width: 28px; + height: 28px; + position: absolute; + right: calc(var(--spacing-large) - (var(--spacing-large) / 2.5)); + top: calc(var(--spacing-large) - (var(--spacing-large) / 2.5)); + border: 1px solid var(--fragment-foreground); + cursor: pointer; + border-radius: var(--border-radius-small); + display: flex; + justify-content: center; + align-items: center; +} + +.doxygen-awesome-fragment-wrapper:hover doxygen-awesome-fragment-copy-button, doxygen-awesome-fragment-copy-button.success { + opacity: .28; +} + +doxygen-awesome-fragment-copy-button:hover, doxygen-awesome-fragment-copy-button.success { + opacity: 1 !important; +} + +doxygen-awesome-fragment-copy-button:active:not([class~=success]) svg { + transform: scale(.91); +} + +doxygen-awesome-fragment-copy-button svg { + fill: var(--fragment-foreground); + width: 18px; + height: 18px; +} + +doxygen-awesome-fragment-copy-button.success svg { + fill: rgb(14, 168, 14); +} + +doxygen-awesome-fragment-copy-button.success { + border-color: rgb(14, 168, 14); +} + +@media screen and (max-width: 767px) { + .textblock > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .textblock li > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .memdoc li > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + .memdoc > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button, + dl dd > .doxygen-awesome-fragment-wrapper > doxygen-awesome-fragment-copy-button { + right: 0; + } +} + +/* + Optional paragraph link button +*/ + +a.anchorlink { + font-size: 90%; + margin-left: var(--spacing-small); + color: var(--page-foreground-color) !important; + text-decoration: none; + opacity: .15; + display: none; + transition: opacity var(--animation-duration) ease-in-out, color var(--animation-duration) ease-in-out; +} + +a.anchorlink svg { + fill: var(--page-foreground-color); +} + +h3 a.anchorlink svg, h4 a.anchorlink svg { + margin-bottom: -3px; + margin-top: -4px; +} + +a.anchorlink:hover { + opacity: .45; +} + +h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.anchorlink { + display: inline-block; +} + +/* + Optional tab feature +*/ + +.tabbed > ul { + padding-inline-start: 0px; + margin: 0; + padding: var(--spacing-small) 0; +} + +.tabbed > ul > li { + display: none; +} + +.tabbed > ul > li.selected { + display: block; +} + +.tabs-overview-container { + overflow-x: auto; + display: block; + overflow-y: visible; +} + +.tabs-overview { + border-bottom: 1px solid var(--separator-color); + display: flex; + flex-direction: row; +} + +@media screen and (max-width: 767px) { + .tabs-overview-container { + margin: 0 calc(0px - var(--spacing-large)); + } + .tabs-overview { + padding: 0 var(--spacing-large) + } +} + +.tabs-overview button.tab-button { + color: var(--page-foreground-color); + margin: 0; + border: none; + background: transparent; + padding: calc(var(--spacing-large) / 2) 0; + display: inline-block; + font-size: var(--page-font-size); + cursor: pointer; + box-shadow: 0 1px 0 0 var(--separator-color); + position: relative; + + -webkit-tap-highlight-color: transparent; +} + +.tabs-overview button.tab-button .tab-title::before { + display: block; + content: attr(title); + font-weight: 600; + height: 0; + overflow: hidden; + visibility: hidden; +} + +.tabs-overview button.tab-button .tab-title { + float: left; + white-space: nowrap; + font-weight: normal; + padding: calc(var(--spacing-large) / 2) var(--spacing-large); + border-radius: var(--border-radius-medium); + transition: background-color var(--animation-duration) ease-in-out, font-weight var(--animation-duration) ease-in-out; +} + +.tabs-overview button.tab-button:not(:last-child) .tab-title { + box-shadow: 8px 0 0 -7px var(--separator-color); +} + +.tabs-overview button.tab-button:hover .tab-title { + background: var(--separator-color); + box-shadow: none; +} + +.tabs-overview button.tab-button.active .tab-title { + font-weight: 600; +} + +.tabs-overview button.tab-button::after { + content: ''; + display: block; + position: absolute; + left: 0; + bottom: 0; + right: 0; + height: 0; + width: 0%; + margin: 0 auto; + border-radius: var(--border-radius-small) var(--border-radius-small) 0 0; + background-color: var(--primary-color); + transition: width var(--animation-duration) ease-in-out, height var(--animation-duration) ease-in-out; +} + +.tabs-overview button.tab-button.active::after { + width: 100%; + box-sizing: border-box; + height: 3px; +} + + +/* + Navigation Buttons +*/ + +.section_buttons:not(:empty) { + margin-top: calc(var(--spacing-large) * 3); +} + +.section_buttons table.markdownTable { + display: block; + width: 100%; +} + +.section_buttons table.markdownTable tbody { + display: table !important; + width: 100%; + box-shadow: none; + border-spacing: 10px; +} + +.section_buttons table.markdownTable td { + padding: 0; +} + +.section_buttons table.markdownTable th { + display: none; +} + +.section_buttons table.markdownTable tr.markdownTableHead { + border: none; +} + +.section_buttons tr th, .section_buttons tr td { + background: none; + border: none; + padding: var(--spacing-large) 0 var(--spacing-small); +} + +.section_buttons a { + display: inline-block; + border: 1px solid var(--separator-color); + border-radius: var(--border-radius-medium); + color: var(--page-secondary-foreground-color) !important; + text-decoration: none; + transition: color var(--animation-duration) ease-in-out, background-color var(--animation-duration) ease-in-out; +} + +.section_buttons a:hover { + color: var(--page-foreground-color) !important; + background-color: var(--odd-color); +} + +.section_buttons tr td.markdownTableBodyLeft a { + padding: var(--spacing-medium) var(--spacing-large) var(--spacing-medium) calc(var(--spacing-large) / 2); +} + +.section_buttons tr td.markdownTableBodyRight a { + padding: var(--spacing-medium) calc(var(--spacing-large) / 2) var(--spacing-medium) var(--spacing-large); +} + +.section_buttons tr td.markdownTableBodyLeft a::before, +.section_buttons tr td.markdownTableBodyRight a::after { + color: var(--page-secondary-foreground-color) !important; + display: inline-block; + transition: color .08s ease-in-out, transform .09s ease-in-out; +} + +.section_buttons tr td.markdownTableBodyLeft a::before { + content: '〈'; + padding-right: var(--spacing-large); +} + + +.section_buttons tr td.markdownTableBodyRight a::after { + content: '〉'; + padding-left: var(--spacing-large); +} + + +.section_buttons tr td.markdownTableBodyLeft a:hover::before { + color: var(--page-foreground-color) !important; + transform: translateX(-3px); +} + +.section_buttons tr td.markdownTableBodyRight a:hover::after { + color: var(--page-foreground-color) !important; + transform: translateX(3px); +} + +@media screen and (max-width: 450px) { + .section_buttons a { + width: 100%; + box-sizing: border-box; + } + + .section_buttons tr td:nth-of-type(1).markdownTableBodyLeft a { + border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium); + border-right: none; + } + + .section_buttons tr td:nth-of-type(2).markdownTableBodyRight a { + border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0; + } +} diff --git a/docs/doxygen.css b/docs/doxygen.css new file mode 100644 index 0000000..3653ad2 --- /dev/null +++ b/docs/doxygen.css @@ -0,0 +1,1841 @@ +/* The standard CSS for doxygen 1.12.0*/ + +body { + background-color: white; + color: black; +} + +body, table, div, p, dl { + font-weight: 400; + font-size: 14px; + font-family: Roboto,sans-serif; + line-height: 22px; +} + +/* @group Heading Levels */ + +.title { + font-family: Roboto,sans-serif; + line-height: 28px; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h1.groupheader { + font-size: 150%; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.navtab { + padding-right: 15px; + text-align: right; + line-height: 110%; +} + +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: white; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +#main-menu a:focus { + outline: auto; + z-index: 10; + position: relative; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.even { + background-color: white; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: none; + background: linear-gradient(to bottom, transparent 0,transparent calc(100% - 1px), currentColor 100%); +} + +a:hover > span.arrow { + text-decoration: none; + background : #F9FAFC; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +a.code.hl_class { /* style for links to class names in code snippets */ } +a.code.hl_struct { /* style for links to struct names in code snippets */ } +a.code.hl_union { /* style for links to union names in code snippets */ } +a.code.hl_interface { /* style for links to interface names in code snippets */ } +a.code.hl_protocol { /* style for links to protocol names in code snippets */ } +a.code.hl_category { /* style for links to category names in code snippets */ } +a.code.hl_exception { /* style for links to exception names in code snippets */ } +a.code.hl_service { /* style for links to service names in code snippets */ } +a.code.hl_singleton { /* style for links to singleton names in code snippets */ } +a.code.hl_concept { /* style for links to concept names in code snippets */ } +a.code.hl_namespace { /* style for links to namespace names in code snippets */ } +a.code.hl_package { /* style for links to package names in code snippets */ } +a.code.hl_define { /* style for links to macro names in code snippets */ } +a.code.hl_function { /* style for links to function names in code snippets */ } +a.code.hl_variable { /* style for links to variable names in code snippets */ } +a.code.hl_typedef { /* style for links to typedef names in code snippets */ } +a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ } +a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ } +a.code.hl_signal { /* style for links to Qt signal names in code snippets */ } +a.code.hl_slot { /* style for links to Qt slot names in code snippets */ } +a.code.hl_friend { /* style for links to friend names in code snippets */ } +a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ } +a.code.hl_property { /* style for links to property names in code snippets */ } +a.code.hl_event { /* style for links to event names in code snippets */ } +a.code.hl_sequence { /* style for links to sequence names in code snippets */ } +a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ } + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul.check { + list-style:none; + text-indent: -16px; + padding-left: 38px; +} +li.unchecked:before { + content: "\2610\A0"; +} +li.checked:before { + content: "\2611\A0"; +} + +ol { + text-indent: 0px; +} + +ul { + text-indent: 0px; + overflow: visible; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; + list-style-type: none; +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; + overflow-y: hidden; + position: relative; + min-height: 12px; + margin: 10px 0px; + padding: 10px 10px; + border: 1px solid #C4CFE5; + border-radius: 4px; + background-color: #FBFCFD; + color: black; +} + +pre.fragment { + word-wrap: break-word; + font-size: 10pt; + line-height: 125%; + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +} + +.clipboard { + width: 24px; + height: 24px; + right: 5px; + top: 5px; + opacity: 0; + position: absolute; + display: inline; + overflow: auto; + fill: black; + justify-content: center; + align-items: center; + cursor: pointer; +} + +.clipboard.success { + border: 1px solid black; + border-radius: 4px; +} + +.fragment:hover .clipboard, .clipboard.success { + opacity: .28; +} + +.clipboard:hover, .clipboard.success { + opacity: 1 !important; +} + +.clipboard:active:not([class~=success]) svg { + transform: scale(.91); +} + +.clipboard.success svg { + fill: #2EC82E; +} + +.clipboard.success { + border-color: #2EC82E; +} + +div.line { + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.2; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + +span.fold { + margin-left: 5px; + margin-right: 1px; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; + display: inline-block; + width: 12px; + height: 12px; + background-repeat:no-repeat; + background-position:center; +} + +span.lineno { + padding-right: 4px; + margin-right: 9px; + text-align: right; + border-right: 2px solid #00FF00; + color: black; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a, span.lineno a:visited { + color: #4665A2; + background-color: #D8D8D8; +} + +span.lineno a:hover { + color: #4665A2; + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +p.formulaDsp { + text-align: center; +} + +img.dark-mode-visible { + display: none; +} +img.light-mode-visible { + display: none; +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; + width: 104px; +} + +.compoundTemplParams { + color: #4665A2; + font-size: 80%; + line-height: 120%; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000; +} + +span.keywordtype { + color: #604020; +} + +span.keywordflow { + color: #E08000; +} + +span.comment { + color: #800000; +} + +span.preprocessor { + color: #806020; +} + +span.stringliteral { + color: #002080; +} + +span.charliteral { + color: #008080; +} + +span.xmlcdata { + color: black; +} + +span.vhdldigit { + color: #FF00FF; +} + +span.vhdlchar { + color: #000000; +} + +span.vhdlkeyword { + color: #700070; +} + +span.vhdllogic { + color: #FF0000; +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #2D4068; +} + +th.dirtab { + background-color: #374F7F; + color: #FFFFFF; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; +} + +.overload { + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: white; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; + padding: 0px; + padding-bottom: 1px; +} + +.paramname { + white-space: nowrap; + padding: 0px; + padding-bottom: 1px; + margin-left: 2px; +} + +.paramname em { + color: #602020; + font-style: normal; + margin-right: 1px; +} + +.paramname .paramdefval { + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.odd { + padding-left: 6px; + background-color: #F8F9FC; +} + +.directory tr.even { + padding-left: 6px; + background-color: white; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial,Helvetica; + line-height: normal; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.svg'); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.svg'); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.svg'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + border-radius: 4px; + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname, .fieldtable td.fieldinit { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fieldinit { + padding-top: 3px; + text-align: right; +} + + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image: url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image: url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#283A5D; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color: #364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color: white; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color: #2A3D61; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image: url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* + +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention, dl.important { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +*/ + +dl.bug dt a, dl.deprecated dt a, dl.todo dt a, dl.test a { + font-weight: bold !important; +} + +dl.warning, dl.attention, dl.important, dl.note, dl.deprecated, dl.bug, +dl.invariant, dl.pre, dl.post, dl.todo, dl.test, dl.remark { + padding: 10px; + margin: 10px 0px; + overflow: hidden; + margin-left: 0; + border-radius: 4px; +} + +dl.section dd { + margin-bottom: 2px; +} + +dl.warning, dl.attention, dl.important { + background: #f8d1cc; + border-left: 8px solid #b61825; + color: #75070f; +} + +dl.warning dt, dl.attention dt, dl.important dt { + color: #b61825; +} + +dl.note, dl.remark { + background: #faf3d8; + border-left: 8px solid #f3a600; + color: #5f4204; +} + +dl.note dt, dl.remark dt { + color: #f3a600; +} + +dl.todo { + background: #e4f3ff; + border-left: 8px solid #1879C4; + color: #274a5c; +} + +dl.todo dt { + color: #1879C4; +} + +dl.test { + background: #e8e8ff; + border-left: 8px solid #3939C4; + color: #1a1a5c; +} + +dl.test dt { + color: #3939C4; +} + +dl.bug dt a { + color: #5b2bdd !important; +} + +dl.bug { + background: #e4dafd; + border-left: 8px solid #5b2bdd; + color: #2a0d72; +} + +dl.bug dt a { + color: #5b2bdd !important; +} + +dl.deprecated { + background: #ecf0f3; + border-left: 8px solid #5b6269; + color: #43454a; +} + +dl.deprecated dt a { + color: #5b6269 !important; +} + +dl.note dd, dl.warning dd, dl.pre dd, dl.post dd, +dl.remark dd, dl.attention dd, dl.important dd, dl.invariant dd, +dl.bug dd, dl.deprecated dd, dl.todo dd, dl.test dd { + margin-inline-start: 0px; +} + +dl.invariant, dl.pre, dl.post { + background: #d8f1e3; + border-left: 8px solid #44b86f; + color: #265532; +} + +dl.invariant dt, dl.pre dt, dl.post dt { + color: #44b86f; +} + + +#projectrow +{ + height: 56px; +} + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; + padding-left: 0.5em; +} + +#projectname +{ + font-size: 200%; + font-family: Tahoma,Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font-size: 90%; + font-family: Tahoma,Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font-size: 50%; + font-family: 50% Tahoma,Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; + background-color: white; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("data:image/svg+xml;utf8,&%238595;") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,'DejaVu Sans',Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Verdana,'DejaVu Sans',Geneva,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li[class^='level'] { + margin-left: 15px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.empty { + background-image: none; + margin-top: 0px; +} + +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +span.obfuscator { + display: none; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + /*white-space: nowrap;*/ + color: black; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip a { + color: #4665A2; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font-size: 12px; + font-family: Roboto,sans-serif; + line-height: 16px; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: white; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before, #powerTip.ne:before, #powerTip.nw:before { + border-top-color: gray; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: white; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: gray; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: gray; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: gray; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: gray; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: gray; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +tt, code, kbd, samp +{ + display: inline-block; +} +/* @end */ + +u { + text-decoration: underline; +} + +details>summary { + list-style-type: none; +} + +details > summary::-webkit-details-marker { + display: none; +} + +details>summary::before { + content: "\25ba"; + padding-right:4px; + font-size: 80%; +} + +details[open]>summary::before { + content: "\25bc"; + padding-right:4px; + font-size: 80%; +} + diff --git a/docs/doxygen.svg b/docs/doxygen.svg new file mode 100644 index 0000000..79a7635 --- /dev/null +++ b/docs/doxygen.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/doxygen_crawl.html b/docs/doxygen_crawl.html new file mode 100644 index 0000000..f8254dc --- /dev/null +++ b/docs/doxygen_crawl.html @@ -0,0 +1,134 @@ + + + +Validator / crawler helper + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/dynsections.js b/docs/dynsections.js new file mode 100644 index 0000000..3cc426a --- /dev/null +++ b/docs/dynsections.js @@ -0,0 +1,198 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +function toggleVisibility(linkObj) { + return dynsection.toggleVisibility(linkObj); +} + +let dynsection = { + + // helper function + updateStripes : function() { + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); + $('table.directory tr'). + removeClass('odd').filter(':visible:odd').addClass('odd'); + }, + + toggleVisibility : function(linkObj) { + const base = $(linkObj).attr('id'); + const summary = $('#'+base+'-summary'); + const content = $('#'+base+'-content'); + const trigger = $('#'+base+'-trigger'); + const src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; + }, + + toggleLevel : function(level) { + $('table.directory tr').each(function() { + const l = this.id.split('_').length-1; + const i = $('#img'+this.id.substring(3)); + const a = $('#arr'+this.id.substring(3)); + if (l'); + // add vertical lines to other rows + $('span[class=lineno]').not(':eq(0)').append(''); + // add toggle controls to lines with fold divs + $('div[class=foldopen]').each(function() { + // extract specific id to use + const id = $(this).attr('id').replace('foldopen',''); + // extract start and end foldable fragment attributes + const start = $(this).attr('data-start'); + const end = $(this).attr('data-end'); + // replace normal fold span with controls for the first line of a foldable fragment + $(this).find('span[class=fold]:first').replaceWith(''); + // append div for folded (closed) representation + $(this).after(''); + // extract the first line from the "open" section to represent closed content + const line = $(this).children().first().clone(); + // remove any glow that might still be active on the original line + $(line).removeClass('glow'); + if (start) { + // if line already ends with a start marker (e.g. trailing {), remove it + $(line).html($(line).html().replace(new RegExp('\\s*'+start+'\\s*$','g'),'')); + } + // replace minus with plus symbol + $(line).find('span[class=fold]').css('background-image',codefold.plusImg[relPath]); + // append ellipsis + $(line).append(' '+start+''+end); + // insert constructed line into closed div + $('#foldclosed'+id).html(line); + }); + }, +}; +/* @license-end */ diff --git a/docs/files.html b/docs/files.html new file mode 100644 index 0000000..31cde19 --- /dev/null +++ b/docs/files.html @@ -0,0 +1,123 @@ + + + + + + + +BOLT Dash (C++): File List + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+
[detail level 12]
+ + + + + + + +
  Bolt_Dash
 backend.h
 can.h
 constants.h
 gpsprocessing.h
 nmea_decoder.h
 web.h
+
+
+
+ + + + diff --git a/docs/files_dup.js b/docs/files_dup.js new file mode 100644 index 0000000..e4fd016 --- /dev/null +++ b/docs/files_dup.js @@ -0,0 +1,4 @@ +var files_dup = +[ + [ "Bolt_Dash", "dir_9003ff251f894a0ca67807a78c4dd8f8.html", "dir_9003ff251f894a0ca67807a78c4dd8f8" ] +]; \ No newline at end of file diff --git a/docs/folderclosed.svg b/docs/folderclosed.svg new file mode 100644 index 0000000..b04bed2 --- /dev/null +++ b/docs/folderclosed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/docs/folderclosedd.svg b/docs/folderclosedd.svg new file mode 100644 index 0000000..52f0166 --- /dev/null +++ b/docs/folderclosedd.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/docs/folderopen.svg b/docs/folderopen.svg new file mode 100644 index 0000000..f6896dd --- /dev/null +++ b/docs/folderopen.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/docs/folderopend.svg b/docs/folderopend.svg new file mode 100644 index 0000000..2d1f06e --- /dev/null +++ b/docs/folderopend.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/docs/functions.html b/docs/functions.html new file mode 100644 index 0000000..710ad3b --- /dev/null +++ b/docs/functions.html @@ -0,0 +1,203 @@ + + + + + + + +BOLT Dash (C++): Class Members + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- a -

+ + +

- b -

+ + +

- h -

+ + +

- l -

+ + +

- m -

+ + +

- p -

+ + +

- s -

+
+
+ + + + diff --git a/docs/functions_func.html b/docs/functions_func.html new file mode 100644 index 0000000..79aacbc --- /dev/null +++ b/docs/functions_func.html @@ -0,0 +1,182 @@ + + + + + + + +BOLT Dash (C++): Class Members - Functions + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the class documentation for each member:
+ +

- a -

+ + +

- b -

+ + +

- h -

+ + +

- l -

+ + +

- m -

+ + +

- p -

+ + +

- s -

+
+
+ + + + diff --git a/docs/functions_vars.html b/docs/functions_vars.html new file mode 100644 index 0000000..d0cbf4b --- /dev/null +++ b/docs/functions_vars.html @@ -0,0 +1,132 @@ + + + + + + + +BOLT Dash (C++): Class Members - Variables + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented variables with links to the class documentation for each member:
+
+
+ + + + diff --git a/docs/gpsprocessing_8h_source.html b/docs/gpsprocessing_8h_source.html new file mode 100644 index 0000000..b6ceb93 --- /dev/null +++ b/docs/gpsprocessing_8h_source.html @@ -0,0 +1,127 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash/gpsprocessing.h Source File + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
gpsprocessing.h
+
+
+
1#pragma once
+
2
+
3#include <cmath>
+
4#include <iomanip>
+
5#include <iostream>
+
6#include <libgpsmm.h>
+
7#include <mutex>
+
8#include <unistd.h>
+
9
+
10extern std::mutex gps_m;
+
11extern double gps_lat;
+
12extern double gps_lon;
+
13
+
14int gpsMain();
+
+
+ + + + diff --git a/docs/hierarchy.html b/docs/hierarchy.html new file mode 100644 index 0000000..d1e4066 --- /dev/null +++ b/docs/hierarchy.html @@ -0,0 +1,120 @@ + + + + + + + +BOLT Dash (C++): Class Hierarchy + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Hierarchy
+
+
+
This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 12]
+ + + + +
 CGPSData
 Cour_candataThis is a struct that contains all the data that we get from the CAN bus and is used in the dash project
 CQObject
 CBackendA class to represent the C++ backend of the dash which can be included in QML to give the frontend access
+
+
+
+ + + + diff --git a/docs/hierarchy.js b/docs/hierarchy.js new file mode 100644 index 0000000..9c95b81 --- /dev/null +++ b/docs/hierarchy.js @@ -0,0 +1,8 @@ +var hierarchy = +[ + [ "GPSData", "struct_g_p_s_data.html", null ], + [ "our_candata", "structour__candata.html", null ], + [ "QObject", null, [ + [ "Backend", "class_backend.html", null ] + ] ] +]; \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..aab4af6 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,113 @@ + + + + + + + +BOLT Dash (C++): Main Page + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
BOLT Dash (C++) +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
BOLT Dash (C++) Documentation
+
+
+ +
+
+ + + + diff --git a/docs/jquery.js b/docs/jquery.js new file mode 100644 index 0000000..875ada7 --- /dev/null +++ b/docs/jquery.js @@ -0,0 +1,204 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e} +var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp( +"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType +}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c +)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){ +return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll( +":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id") +)&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push( +"\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test( +a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null, +null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne +).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for( +var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n; +return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0, +r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r] +,C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each( +function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r, +"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})} +),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each( +"blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=y(e||this.defaultElement||this)[0],this.element=y(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=y(),this.hoverable=y(),this.focusable=y(),this.classesElementLookup={},e!==this&&(y.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t +){t.target===e&&this.destroy()}}),this.document=y(e.style?e.ownerDocument:e.document||e),this.window=y(this.document[0].defaultView||this.document[0].parentWindow)),this.options=y.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:y.noop,_create:y.noop,_init:y.noop,destroy:function(){var i=this;this._destroy(),y.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:y.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return y.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t +]=y.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return y("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i}, +getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthx(D(s),D(n))?o.important="horizontal":o.important="vertical",p.using.call(this,t,o)}),h.offset(y.extend(l,{using:t}))})},y.ui.position={fit:{left:function(t,e){var i=e.within, +s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,h=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),y.ui.plugin={add:function(t,e,i){var s,n=y.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})), +this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&y(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){y(t +).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,h=this;if(this.handles=o.handles||(y(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=y(),this._addedHandles=y(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split( +","),this.handles={},e=0;e"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=y(this.handles[e]),this._on(this.handles[e],{mousedown:h._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=y(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add( +this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){h.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),h.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=y(this.handles[e])[0])!==t.target&&!y.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=y(s.containment).scrollLeft()||0,i+=y(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{ +width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=y(".ui-resizable-"+this.axis).css("cursor"),y("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(), +!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),y.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(y.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),y("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){ +this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),st.width,h=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,a=this.originalPosition.left+this.originalSize.width,r=this.originalPosition.top+this.originalSize.height +,l=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),h&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=a-e.minWidth),s&&l&&(t.left=a-e.maxWidth),h&&i&&(t.top=r-e.minHeight),n&&i&&(t.top=r-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e, +i){return y.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){y.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),y.ui.plugin.add("resizable","animate",{stop:function(e){var i=y(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,h=n?0:i.sizeDiff.width,n={width:i.size.width-h,height:i.size.height-o},h=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left +)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(y.extend(n,o&&h?{top:o,left:h}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&y(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),y.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=y(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,h=o instanceof y?o.get(0):/parent/.test(o)?e.parent().get(0):o;h&&(n.containerElement=y(h),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:y(document),left:0,top:0,width:y(document).width(),height:y(document).height()||document.body.parentNode.scrollHeight}):(i=y(h),s=[],y(["Top","Right","Left","Bottom"]).each(function(t,e +){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(h,"left")?h.scrollWidth:o,e=n._hasScroll(h)?h.scrollHeight:e,n.parentData={element:h,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=y(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,h={top:0,left:0},a=e.containerElement,t=!0;a[0]!==document&&/static/.test(a.css("position"))&&(h=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-h.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0), +i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-h.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-h.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=y(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=y(t.helper),h=o.offset(),a=o.outerWidth( +)-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o})}}),y.ui.plugin.add("resizable","alsoResize",{start:function(){var t=y(this).resizable("instance").options;y(t.alsoResize).each(function(){var t=y(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=y(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,h={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};y(s.alsoResize).each(function(){var t=y(this),s=y(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];y.each(e, +function(t,e){var i=(s[e]||0)+(h[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){y(this).removeData("ui-resizable-alsoresize")}}),y.ui.plugin.add("resizable","ghost",{start:function(){var t=y(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==y.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=y(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=y(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),y.ui.plugin.add("resizable","grid",{resize:function(){var t,e=y(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,h=e.axis,a="number"==typeof i.grid?[i.grid,i.grid]:i.grid,r=a[0 +]||1,l=a[1]||1,u=Math.round((s.width-n.width)/r)*r,p=Math.round((s.height-n.height)/l)*l,d=n.width+u,c=n.height+p,f=i.maxWidth&&i.maxWidthd,s=i.minHeight&&i.minHeight>c;i.grid=a,m&&(d+=r),s&&(c+=l),f&&(d-=r),g&&(c-=l),/^(se|s|e)$/.test(h)?(e.size.width=d,e.size.height=c):/^(ne)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.top=o.top-p):/^(sw)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.left=o.left-u):((c-l<=0||d-r<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0=f[g]?0:Math.min(f[g],n));!a&&1-1){ +targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se", +"n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if( +session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)} +closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if( +session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE, +function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset); +tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList, +finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight())); +return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")} +function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(), +elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight, +viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b, +"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery); +/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)), +mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend( +$.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy( +this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData( +"smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id" +).indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?( +this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for( +var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){ +return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if(( +!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&( +this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0 +]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass( +"highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){ +t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]" +)||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){ +t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"), +a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i, +downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2) +)&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t +)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0), +canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}}, +rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})} +return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1, +bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); diff --git a/docs/menu.js b/docs/menu.js new file mode 100644 index 0000000..0fd1e99 --- /dev/null +++ b/docs/menu.js @@ -0,0 +1,134 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search,treeview) { + function makeTree(data,relPath) { + let result=''; + if ('children' in data) { + result+='
    '; + for (let i in data.children) { + let url; + const link = data.children[i].url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + } else { + url = relPath+link; + } + result+='
  • '+ + data.children[i].text+''+ + makeTree(data.children[i],relPath)+'
  • '; + } + result+='
'; + } + return result; + } + let searchBoxHtml; + if (searchEnabled) { + if (serverSide) { + searchBoxHtml='
'+ + '
'+ + '
 '+ + ''+ + '
'+ + '
'+ + '
'+ + '
'; + } else { + searchBoxHtml='
'+ + ''+ + ' '+ + ''+ + ''+ + ''+ + ''+ + ''+ + '
'; + } + } + + $('#main-nav').before('
'+ + ''+ + ''+ + '
'); + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchBoxHtml) { + $('#main-menu').append('
  • '); + } + const $mainMenuState = $('#main-menu-state'); + let prevWidth = 0; + if ($mainMenuState.length) { + const initResizableIfExists = function() { + if (typeof initResizable==='function') initResizable(treeview); + } + // animate mobile menu + $mainMenuState.change(function() { + const $menu = $('#main-menu'); + let options = { duration: 250, step: initResizableIfExists }; + if (this.checked) { + options['complete'] = () => $menu.css('display', 'block'); + $menu.hide().slideDown(options); + } else { + options['complete'] = () => $menu.css('display', 'none'); + $menu.show().slideUp(options); + } + }); + // set default menu visibility + const resetState = function() { + const $menu = $('#main-menu'); + const newWidth = $(window).outerWidth(); + if (newWidth!=prevWidth) { + if ($(window).outerWidth()<768) { + $mainMenuState.prop('checked',false); $menu.hide(); + $('#searchBoxPos1').html(searchBoxHtml); + $('#searchBoxPos2').hide(); + } else { + $menu.show(); + $('#searchBoxPos1').empty(); + $('#searchBoxPos2').html(searchBoxHtml); + $('#searchBoxPos2').show(); + } + if (typeof searchBox!=='undefined') { + searchBox.CloseResultsWindow(); + } + prevWidth = newWidth; + } + } + $(window).ready(function() { resetState(); initResizableIfExists(); }); + $(window).resize(resetState); + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/docs/menudata.js b/docs/menudata.js new file mode 100644 index 0000000..d1a7a09 --- /dev/null +++ b/docs/menudata.js @@ -0,0 +1,50 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Index",url:"classes.html"}, +{text:"Class Hierarchy",url:"hierarchy.html"}, +{text:"Class Members",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"a",url:"functions.html#index_a"}, +{text:"b",url:"functions.html#index_b"}, +{text:"h",url:"functions.html#index_h"}, +{text:"l",url:"functions.html#index_l"}, +{text:"m",url:"functions.html#index_m"}, +{text:"p",url:"functions.html#index_p"}, +{text:"s",url:"functions.html#index_s"}]}, +{text:"Functions",url:"functions_func.html",children:[ +{text:"a",url:"functions_func.html#index_a"}, +{text:"b",url:"functions_func.html#index_b"}, +{text:"h",url:"functions_func.html#index_h"}, +{text:"l",url:"functions_func.html#index_l"}, +{text:"m",url:"functions_func.html#index_m"}, +{text:"p",url:"functions_func.html#index_p"}, +{text:"s",url:"functions_func.html#index_s"}]}, +{text:"Variables",url:"functions_vars.html"}]}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}]}]} diff --git a/docs/minus.svg b/docs/minus.svg new file mode 100644 index 0000000..f70d0c1 --- /dev/null +++ b/docs/minus.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docs/minusd.svg b/docs/minusd.svg new file mode 100644 index 0000000..5f8e879 --- /dev/null +++ b/docs/minusd.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docs/nav_f.png b/docs/nav_f.png new file mode 100644 index 0000000000000000000000000000000000000000..72a58a529ed3a9ed6aa0c51a79cf207e026deee2 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^j6iI`!2~2XGqLUlQVE_ejv*C{Z|{2ZH7M}7UYxc) zn!W8uqtnIQ>_z8U literal 0 HcmV?d00001 diff --git a/docs/nav_fd.png b/docs/nav_fd.png new file mode 100644 index 0000000000000000000000000000000000000000..032fbdd4c54f54fa9a2e6423b94ef4b2ebdfaceb GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^j6iI`!2~2XGqLUlQU#tajv*C{Z|C~*H7f|XvG1G8 zt7aS*L7xwMeS}!z6R#{C5tIw-s~AJ==F^i}x3XyJseHR@yF& zerFf(Zf;Dd{+(0lDIROL@Sj-Ju2JQ8&-n%4%q?>|^bShc&lR?}7HeMo@BDl5N(aHY Uj$gdr1MOz;boFyt=akR{0D!zeaR2}S literal 0 HcmV?d00001 diff --git a/docs/nav_g.png b/docs/nav_g.png new file mode 100644 index 0000000000000000000000000000000000000000..2093a237a94f6c83e19ec6e5fd42f7ddabdafa81 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^j6lrB!3HFm1ilyoDK$?Q$B+ufw|5PB85lU25BhtE tr?otc=hd~V+ws&_A@j8Fiv!KF$B+ufw|5=67#uj90@pIL wZ=Q8~_Ju`#59=RjDrmm`tMD@M=!-l18IR?&vFVdQ&MBb@0HFXL6W-eg#Jd_@e6*DPn)w;=|1H}Zvm9l6xXXB%>yL=NQU;mg M>FVdQ&MBb@0Bdt1Qvd(} literal 0 HcmV?d00001 diff --git a/docs/navtree.css b/docs/navtree.css new file mode 100644 index 0000000..6b1e5e4 --- /dev/null +++ b/docs/navtree.css @@ -0,0 +1,149 @@ +#nav-tree .children_ul { + margin:0; + padding:4px; +} + +#nav-tree ul { + list-style:none outside none; + margin:0px; + padding:0px; +} + +#nav-tree li { + white-space:nowrap; + margin:0px; + padding:0px; +} + +#nav-tree .plus { + margin:0px; +} + +#nav-tree .selected { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: white; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +#nav-tree .selected .arrow { + color: #9CAFD4; + text-shadow: none; +} + +#nav-tree img { + margin:0px; + padding:0px; + border:0px; + vertical-align: middle; +} + +#nav-tree a { + text-decoration:none; + padding:0px; + margin:0px; +} + +#nav-tree .label { + margin:0px; + padding:0px; + font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +#nav-tree .label a { + padding:2px; +} + +#nav-tree .selected a { + text-decoration:none; + color:white; +} + +#nav-tree .children_ul { + margin:0px; + padding:0px; +} + +#nav-tree .item { + margin:0px; + padding:0px; +} + +#nav-tree { + padding: 0px 0px; + font-size:14px; + overflow:auto; +} + +#doc-content { + overflow:auto; + display:block; + padding:0px; + margin:0px; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#side-nav { + padding:0 6px 0 0; + margin: 0px; + display:block; + position: absolute; + left: 0px; + width: $width; + overflow : hidden; +} + +.ui-resizable .ui-resizable-handle { + display:block; +} + +.ui-resizable-e { + background-image:url('splitbar.png'); + background-size:100%; + background-repeat:repeat-y; + background-attachment: scroll; + cursor:ew-resize; + height:100%; + right:0; + top:0; + width:6px; +} + +.ui-resizable-handle { + display:none; + font-size:0.1px; + position:absolute; + z-index:1; +} + +#nav-tree-contents { + margin: 6px 0px 0px 0px; +} + +#nav-tree { + background-repeat:repeat-x; + background-color: #F9FAFC; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#nav-sync { + position:absolute; + top:5px; + right:24px; + z-index:0; +} + +#nav-sync img { + opacity:0.3; +} + +#nav-sync img:hover { + opacity:0.9; +} + +@media print +{ + #nav-tree { display: none; } + div.ui-resizable-handle { display: none; position: relative; } +} + diff --git a/docs/navtree.js b/docs/navtree.js new file mode 100644 index 0000000..9027ce6 --- /dev/null +++ b/docs/navtree.js @@ -0,0 +1,483 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +function initNavTree(toroot,relpath) { + let navTreeSubIndices = []; + const ARROW_DOWN = '▼'; + const ARROW_RIGHT = '►'; + const NAVPATH_COOKIE_NAME = ''+'navpath'; + + const getData = function(varName) { + const i = varName.lastIndexOf('/'); + const n = i>=0 ? varName.substring(i+1) : varName; + return eval(n.replace(/-/g,'_')); + } + + const stripPath = function(uri) { + return uri.substring(uri.lastIndexOf('/')+1); + } + + const stripPath2 = function(uri) { + const i = uri.lastIndexOf('/'); + const s = uri.substring(i+1); + const m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); + return m ? uri.substring(i-6) : s; + } + + const hashValue = function() { + return $(location).attr('hash').substring(1).replace(/[^\w-]/g,''); + } + + const hashUrl = function() { + return '#'+hashValue(); + } + + const pathName = function() { + return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;()]/g, ''); + } + + const storeLink = function(link) { + if (!$("#nav-sync").hasClass('sync')) { + Cookie.writeSetting(NAVPATH_COOKIE_NAME,link,0); + } + } + + const deleteLink = function() { + Cookie.eraseSetting(NAVPATH_COOKIE_NAME); + } + + const cachedLink = function() { + return Cookie.readSetting(NAVPATH_COOKIE_NAME,''); + } + + const getScript = function(scriptName,func) { + const head = document.getElementsByTagName("head")[0]; + const script = document.createElement('script'); + script.id = scriptName; + script.type = 'text/javascript'; + script.onload = func; + script.src = scriptName+'.js'; + head.appendChild(script); + } + + const createIndent = function(o,domNode,node) { + let level=-1; + let n = node; + while (n.parentNode) { level++; n=n.parentNode; } + if (node.childrenData) { + const imgNode = document.createElement("span"); + imgNode.className = 'arrow'; + imgNode.style.paddingLeft=(16*level).toString()+'px'; + imgNode.innerHTML=ARROW_RIGHT; + node.plus_img = imgNode; + node.expandToggle = document.createElement("a"); + node.expandToggle.href = "javascript:void(0)"; + node.expandToggle.onclick = function() { + if (node.expanded) { + $(node.getChildrenUL()).slideUp("fast"); + node.plus_img.innerHTML=ARROW_RIGHT; + node.expanded = false; + } else { + expandNode(o, node, false, true); + } + } + node.expandToggle.appendChild(imgNode); + domNode.appendChild(node.expandToggle); + } else { + let span = document.createElement("span"); + span.className = 'arrow'; + span.style.width = 16*(level+1)+'px'; + span.innerHTML = ' '; + domNode.appendChild(span); + } + } + + let animationInProgress = false; + + const gotoAnchor = function(anchor,aname) { + let pos, docContent = $('#doc-content'); + let ancParent = $(anchor.parent()); + if (ancParent.hasClass('memItemLeft') || ancParent.hasClass('memtitle') || + ancParent.hasClass('fieldname') || ancParent.hasClass('fieldtype') || + ancParent.is(':header')) { + pos = ancParent.position().top; + } else if (anchor.position()) { + pos = anchor.position().top; + } + if (pos) { + const dcOffset = docContent.offset().top; + const dcHeight = docContent.height(); + const dcScrHeight = docContent[0].scrollHeight + const dcScrTop = docContent.scrollTop(); + let dist = Math.abs(Math.min(pos-dcOffset,dcScrHeight-dcHeight-dcScrTop)); + animationInProgress = true; + docContent.animate({ + scrollTop: pos + dcScrTop - dcOffset + },Math.max(50,Math.min(500,dist)),function() { + animationInProgress=false; + if (anchor.parent().attr('class')=='memItemLeft') { + let rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); + glowEffect(rows.children(),300); // member without details + } else if (anchor.parent().attr('class')=='fieldname') { + glowEffect(anchor.parent().parent(),1000); // enum value + } else if (anchor.parent().attr('class')=='fieldtype') { + glowEffect(anchor.parent().parent(),1000); // struct field + } else if (anchor.parent().is(":header")) { + glowEffect(anchor.parent(),1000); // section header + } else { + glowEffect(anchor.next(),1000); // normal member + } + }); + } + } + + const newNode = function(o, po, text, link, childrenData, lastNode) { + const node = { + children : [], + childrenData : childrenData, + depth : po.depth + 1, + relpath : po.relpath, + isLast : lastNode, + li : document.createElement("li"), + parentNode : po, + itemDiv : document.createElement("div"), + labelSpan : document.createElement("span"), + label : document.createTextNode(text), + expanded : false, + childrenUL : null, + getChildrenUL : function() { + if (!this.childrenUL) { + this.childrenUL = document.createElement("ul"); + this.childrenUL.className = "children_ul"; + this.childrenUL.style.display = "none"; + this.li.appendChild(node.childrenUL); + } + return node.childrenUL; + }, + }; + + node.itemDiv.className = "item"; + node.labelSpan.className = "label"; + createIndent(o,node.itemDiv,node); + node.itemDiv.appendChild(node.labelSpan); + node.li.appendChild(node.itemDiv); + + const a = document.createElement("a"); + node.labelSpan.appendChild(a); + po.getChildrenUL().appendChild(node.li); + a.appendChild(node.label); + if (link) { + let url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + link = url; + } else { + url = node.relpath+link; + } + a.className = stripPath(link.replace('#',':')); + if (link.indexOf('#')!=-1) { + const aname = '#'+link.split('#')[1]; + const srcPage = stripPath(pathName()); + const targetPage = stripPath(link.split('#')[0]); + a.href = srcPage!=targetPage ? url : aname; + a.onclick = function() { + storeLink(link); + aPPar = $(a).parent().parent(); + if (!aPPar.hasClass('selected')) { + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + aPPar.addClass('selected'); + aPPar.attr('id','selected'); + } + const anchor = $(aname); + gotoAnchor(anchor,aname); + }; + } else { + a.href = url; + a.onclick = () => storeLink(link); + } + } else if (childrenData != null) { + a.className = "nolink"; + a.href = "javascript:void(0)"; + a.onclick = node.expandToggle.onclick; + } + return node; + } + + const showRoot = function() { + const headerHeight = $("#top").height(); + const footerHeight = $("#nav-path").height(); + const windowHeight = $(window).height() - headerHeight - footerHeight; + (function() { // retry until we can scroll to the selected item + try { + const navtree=$('#nav-tree'); + navtree.scrollTo('#selected',100,{offset:-windowHeight/2}); + } catch (err) { + setTimeout(arguments.callee, 0); + } + })(); + } + + const expandNode = function(o, node, imm, setFocus) { + if (node.childrenData && !node.expanded) { + if (typeof(node.childrenData)==='string') { + const varName = node.childrenData; + getScript(node.relpath+varName,function() { + node.childrenData = getData(varName); + expandNode(o, node, imm, setFocus); + }); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).slideDown("fast"); + node.plus_img.innerHTML = ARROW_DOWN; + node.expanded = true; + if (setFocus) { + $(node.expandToggle).focus(); + } + } + } + } + + const glowEffect = function(n,duration) { + n.addClass('glow').delay(duration).queue(function(next) { + $(this).removeClass('glow');next(); + }); + } + + const highlightAnchor = function() { + const aname = hashUrl(); + const anchor = $(aname); + gotoAnchor(anchor,aname); + } + + const selectAndHighlight = function(hash,n) { + let a; + if (hash) { + const link=stripPath(pathName())+':'+hash.substring(1); + a=$('.item a[class$="'+link+'"]'); + } + if (a && a.length) { + a.parent().parent().addClass('selected'); + a.parent().parent().attr('id','selected'); + highlightAnchor(); + } else if (n) { + $(n.itemDiv).addClass('selected'); + $(n.itemDiv).attr('id','selected'); + } + let topOffset=5; + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + topOffset+=25; + } + $('#nav-sync').css('top',topOffset+'px'); + showRoot(); + } + + const showNode = function(o, node, index, hash) { + if (node && node.childrenData) { + if (typeof(node.childrenData)==='string') { + const varName = node.childrenData; + getScript(node.relpath+varName,function() { + node.childrenData = getData(varName); + showNode(o,node,index,hash); + }); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).css({'display':'block'}); + node.plus_img.innerHTML = ARROW_DOWN; + node.expanded = true; + const n = node.children[o.breadcrumbs[index]]; + if (index+11 ? '#'+parts[1].replace(/[^\w-]/g,'') : ''; + } + if (hash.match(/^#l\d+$/)) { + const anchor=$('a[name='+hash.substring(1)+']'); + glowEffect(anchor.parent(),1000); // line number + hash=''; // strip line number anchors + } + const url=root+hash; + let i=-1; + while (NAVTREEINDEX[i+1]<=url) i++; + if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath) + } else { + getScript(relpath+'navtreeindex'+i,function() { + navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath); + } + }); + } + } + + const showSyncOff = function(n,relpath) { + n.html(''); + } + + const showSyncOn = function(n,relpath) { + n.html(''); + } + + const o = { + toroot : toroot, + node : { + childrenData : NAVTREE, + children : [], + childrenUL : document.createElement("ul"), + getChildrenUL : function() { return this.childrenUL }, + li : document.getElementById("nav-tree-contents"), + depth : 0, + relpath : relpath, + expanded : false, + isLast : true, + plus_img : document.createElement("span"), + }, + }; + o.node.li.appendChild(o.node.childrenUL); + o.node.plus_img.className = 'arrow'; + o.node.plus_img.innerHTML = ARROW_RIGHT; + + const navSync = $('#nav-sync'); + if (cachedLink()) { + showSyncOff(navSync,relpath); + navSync.removeClass('sync'); + } else { + showSyncOn(navSync,relpath); + } + + navSync.click(() => { + const navSync = $('#nav-sync'); + if (navSync.hasClass('sync')) { + navSync.removeClass('sync'); + showSyncOff(navSync,relpath); + storeLink(stripPath2(pathName())+hashUrl()); + } else { + navSync.addClass('sync'); + showSyncOn(navSync,relpath); + deleteLink(); + } + }); + + navTo(o,toroot,hashUrl(),relpath); + showRoot(); + + $(window).bind('hashchange', () => { + if (!animationInProgress) { + if (window.location.hash && window.location.hash.length>1) { + let a; + if ($(location).attr('hash')) { + const clslink=stripPath(pathName())+':'+hashValue(); + a=$('.item a[class$="'+clslink.replace(/ + + + + + + +BOLT Dash (C++): Bolt_Dash/nmea_decoder.h Source File + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    nmea_decoder.h
    +
    +
    +
    1#include <cmath>
    +
    2#include <iostream>
    +
    3#include <sstream>
    +
    4#include <string>
    +
    5#include <vector>
    +
    6
    +
    +
    7struct GPSData {
    +
    8 double latitude = 0.0;
    +
    9 double longitude = 0.0;
    +
    10 std::string time = "";
    +
    11 std::string date = "";
    +
    12 double altitude = 0.0;
    +
    13 int satellites = 0;
    +
    14 std::string fix = "Invalid";
    +
    15};
    +
    +
    16
    +
    17std::vector<std::string> split(const std::string &s, char delimiter);
    +
    18
    +
    19double convertToDecimalDegrees(const std::string &value, const std::string &direction);
    +
    20
    +
    21GPSData decodeNMEA(const std::string &nmea);
    +
    22
    +
    23void printGPSData(const GPSData &data);
    +
    24
    +
    25int nmmeaMain();
    +
    Definition nmea_decoder.h:7
    +
    +
    + + + + diff --git a/docs/open.png b/docs/open.png new file mode 100644 index 0000000000000000000000000000000000000000..30f75c7efe2dd0c9e956e35b69777a02751f048b GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{VPM$7~Ar*{o?;hlAFyLXmaDC0y znK1_#cQqJWPES%4Uujug^TE?jMft$}Eq^WaR~)%f)vSNs&gek&x%A9X9sM + + + + + + + + diff --git a/docs/plusd.svg b/docs/plusd.svg new file mode 100644 index 0000000..0c65bfe --- /dev/null +++ b/docs/plusd.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/resize.js b/docs/resize.js new file mode 100644 index 0000000..178d03b --- /dev/null +++ b/docs/resize.js @@ -0,0 +1,147 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ + +function initResizable(treeview) { + let sidenav,navtree,content,header,footer,barWidth=6; + const RESIZE_COOKIE_NAME = ''+'width'; + + function resizeWidth() { + const sidenavWidth = $(sidenav).outerWidth(); + content.css({marginLeft:parseInt(sidenavWidth)+"px"}); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(sidenavWidth)+"px"}); + } + Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth); + } + + function restoreWidth(navWidth) { + content.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + } + sidenav.css({width:navWidth + "px"}); + } + + function resizeHeight(treeview) { + const headerHeight = header.outerHeight(); + const windowHeight = $(window).height(); + let contentHeight; + if (treeview) + { + const footerHeight = footer.outerHeight(); + let navtreeHeight,sideNavHeight; + if (typeof page_layout==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */ + contentHeight = windowHeight - headerHeight - footerHeight; + navtreeHeight = contentHeight; + sideNavHeight = contentHeight; + } else if (page_layout==1) { /* DISABLE_INDEX=YES */ + contentHeight = windowHeight - footerHeight; + navtreeHeight = windowHeight - headerHeight; + sideNavHeight = windowHeight; + } + navtree.css({height:navtreeHeight + "px"}); + sidenav.css({height:sideNavHeight + "px"}); + } + else + { + contentHeight = windowHeight - headerHeight; + } + content.css({height:contentHeight + "px"}); + if (location.hash.slice(1)) { + (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView(); + } + } + + function collapseExpand() { + let newWidth; + if (sidenav.width()>0) { + newWidth=0; + } else { + const width = Cookie.readSetting(RESIZE_COOKIE_NAME,250); + newWidth = (width>250 && width<$(window).width()) ? width : 250; + } + restoreWidth(newWidth); + const sidenavWidth = $(sidenav).outerWidth(); + Cookie.writeSetting(RESIZE_COOKIE_NAME,sidenavWidth-barWidth); + } + + header = $("#top"); + content = $("#doc-content"); + footer = $("#nav-path"); + sidenav = $("#side-nav"); + if (!treeview) { +// title = $("#titlearea"); +// titleH = $(title).height(); +// let animating = false; +// content.on("scroll", function() { +// slideOpts = { duration: 200, +// step: function() { +// contentHeight = $(window).height() - header.outerHeight(); +// content.css({ height : contentHeight + "px" }); +// }, +// done: function() { animating=false; } +// }; +// if (content.scrollTop()>titleH && title.css('display')!='none' && !animating) { +// title.slideUp(slideOpts); +// animating=true; +// } else if (content.scrollTop()<=titleH && title.css('display')=='none' && !animating) { +// title.slideDown(slideOpts); +// animating=true; +// } +// }); + } else { + navtree = $("#nav-tree"); + $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); + $(sidenav).resizable({ minWidth: 0 }); + } + $(window).resize(function() { resizeHeight(treeview); }); + if (treeview) + { + const device = navigator.userAgent.toLowerCase(); + const touch_device = device.match(/(iphone|ipod|ipad|android)/); + if (touch_device) { /* wider split bar for touch only devices */ + $(sidenav).css({ paddingRight:'20px' }); + $('.ui-resizable-e').css({ width:'20px' }); + $('#nav-sync').css({ right:'34px' }); + barWidth=20; + } + const width = Cookie.readSetting(RESIZE_COOKIE_NAME,250); + if (width) { restoreWidth(width); } else { resizeWidth(); } + } + resizeHeight(treeview); + const url = location.href; + const i=url.indexOf("#"); + if (i>=0) window.location.hash=url.substr(i); + const _preventDefault = function(evt) { evt.preventDefault(); }; + if (treeview) + { + $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); + $(".ui-resizable-handle").dblclick(collapseExpand); + // workaround for firefox + $("body").css({overflow: "hidden"}); + } + $(window).on('load',function() { resizeHeight(treeview); }); +} +/* @license-end */ diff --git a/docs/search/all_0.js b/docs/search/all_0.js new file mode 100644 index 0000000..ccb2c43 --- /dev/null +++ b/docs/search/all_0.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['aux_5fpercent_0',['aux_percent',['../structour__candata.html#a2f27833c993b361dae86811cf2dc8cc1',1,'our_candata']]], + ['aux_5fvoltage_1',['aux_voltage',['../structour__candata.html#ac6a49df6ef92171d255081f4193ecaba',1,'our_candata']]], + ['auxpercent_2',['auxPercent',['../class_backend.html#a2b9deb50de11a2fde07ef6589a31b7a0',1,'Backend']]], + ['auxvoltage_3',['auxVoltage',['../class_backend.html#a41e2e287304215732af6f9d6273792bb',1,'Backend']]] +]; diff --git a/docs/search/all_1.js b/docs/search/all_1.js new file mode 100644 index 0000000..5a5e80d --- /dev/null +++ b/docs/search/all_1.js @@ -0,0 +1,19 @@ +var searchData= +[ + ['backend_0',['Backend',['../class_backend.html',1,'Backend'],['../class_backend.html#a5bc0e9ea135112c07e021ebde56ec44f',1,'Backend::Backend()']]], + ['bike_5fspeed_1',['bike_speed',['../structour__candata.html#a91da22817613daa581a1caefe1009d61',1,'our_candata']]], + ['bike_5fstatus_2',['bike_status',['../structour__candata.html#aebfe1c507bccf95524c071e9a100917f',1,'our_candata']]], + ['bikespeed_3',['bikeSpeed',['../class_backend.html#adf1e224769b6c96c359475583e5dc159',1,'Backend']]], + ['bikestatus_4',['bikeStatus',['../class_backend.html#ad7c06e20ccfa73a5bd52187f39b97054',1,'Backend']]], + ['bms_5ferror_5',['bms_error',['../structour__candata.html#a64ea5fe3164ab59c15c3c9c72700486c',1,'our_candata']]], + ['bms_5ferror_5fcodes_6',['bms_error_codes',['../structour__candata.html#ab7715b7e4d16aee41a2919163a396ecd',1,'our_candata']]], + ['bms_5ffault_7',['bms_fault',['../structour__candata.html#aaae561b9ae7cc78f5279288aa49c4d82',1,'our_candata']]], + ['bms_5ftemperature_8',['bms_temperature',['../structour__candata.html#ad6d7fd57efd9400b510993c40b2c7f34',1,'our_candata']]], + ['bms_5fwarning_9',['bms_warning',['../structour__candata.html#a5e1f2c6c156021f7679cee5e2033e96c',1,'our_candata']]], + ['bmserror_10',['bmsError',['../class_backend.html#a3875076145e97af7fde2a1c37f543293',1,'Backend']]], + ['bmserrorcodes_11',['bmsErrorCodes',['../class_backend.html#a15330410228d1397f3bd0fb01a97f412',1,'Backend']]], + ['bmserrorcodesstring_12',['bmsErrorCodesString',['../class_backend.html#a177b020eecbfbec86fa331f146420021',1,'Backend']]], + ['bmsfault_13',['bmsFault',['../class_backend.html#a0bc7373b61657730a31b121851d26f99',1,'Backend']]], + ['bmstemp_14',['bmsTemp',['../class_backend.html#a6d30b487c228843a22da6fe82bc96003',1,'Backend']]], + ['bmswarning_15',['bmsWarning',['../class_backend.html#a7150ddb151a1f8c62ef3f2ac762b5fbe',1,'Backend']]] +]; diff --git a/docs/search/all_2.js b/docs/search/all_2.js new file mode 100644 index 0000000..f28b8bb --- /dev/null +++ b/docs/search/all_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['gpsdata_0',['GPSData',['../struct_g_p_s_data.html',1,'']]] +]; diff --git a/docs/search/all_3.js b/docs/search/all_3.js new file mode 100644 index 0000000..7dc4755 --- /dev/null +++ b/docs/search/all_3.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['high_5fcell_5ftemp_0',['high_cell_temp',['../structour__candata.html#af0bfcceda380408a9c3e54926389316e',1,'our_candata']]], + ['highcelltemp_1',['highCellTemp',['../class_backend.html#a338d6ee091433158a4a82ec6c60cbde9',1,'Backend']]], + ['highest_5fcell_5fvoltage_2',['highest_cell_voltage',['../structour__candata.html#abaf96e8325fdab008b6a6e4079c1a299',1,'our_candata']]] +]; diff --git a/docs/search/all_4.js b/docs/search/all_4.js new file mode 100644 index 0000000..eefc9c7 --- /dev/null +++ b/docs/search/all_4.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['lat_0',['lat',['../class_backend.html#a8f93242ca98779058d3947e318b8944a',1,'Backend']]], + ['lon_1',['lon',['../class_backend.html#a21bc64c24fe21d47fde74754d4772c08',1,'Backend']]], + ['low_5fcell_5ftemp_2',['low_cell_temp',['../structour__candata.html#ab09abb61d44b018a5bf2df4272e3c6ee',1,'our_candata']]], + ['lowcelltemp_3',['lowCellTemp',['../class_backend.html#a2551568902d423cd2d6e7456fb68f218',1,'Backend']]], + ['lowest_5fcell_5fvoltage_4',['lowest_cell_voltage',['../structour__candata.html#a37097ff238e8e2be3ac37666f987954c',1,'our_candata']]] +]; diff --git a/docs/search/all_5.js b/docs/search/all_5.js new file mode 100644 index 0000000..633d8e2 --- /dev/null +++ b/docs/search/all_5.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['mc_5ffault_0',['mc_fault',['../structour__candata.html#a43502a87bb2da1ac2d475d625acf555d',1,'our_candata']]], + ['mc_5ftemperature_1',['mc_temperature',['../structour__candata.html#a1fc64bcb813314dce32b25a7df8664ce',1,'our_candata']]], + ['mcfault_2',['mcFault',['../class_backend.html#a1cd3fc891b7d02f4abd62fc117bdca83',1,'Backend']]], + ['mctemp_3',['mcTemp',['../class_backend.html#a06ee9247c3f51b6e56ae40564100f73a',1,'Backend']]], + ['motor_5fon_4',['motor_on',['../structour__candata.html#a72b801f88be3552f7bfa59c2c971c775',1,'our_candata']]], + ['motor_5fspeed_5',['motor_speed',['../structour__candata.html#a1bcf43881237f8eea2d89486426c15bf',1,'our_candata']]], + ['motor_5ftemperature_6',['motor_temperature',['../structour__candata.html#ae42e90da9e66b88b650ebb77da6a8523',1,'our_candata']]], + ['motoron_7',['motorOn',['../class_backend.html#aff3f0f82e71ca4c549fb8c6a61be2310',1,'Backend']]], + ['motorspeed_8',['motorSpeed',['../class_backend.html#af248999c9a205fab70f7263943337b71',1,'Backend']]], + ['motortemp_9',['motorTemp',['../class_backend.html#a256e55ad5e78b997c6bc217c9decb29d',1,'Backend']]] +]; diff --git a/docs/search/all_6.js b/docs/search/all_6.js new file mode 100644 index 0000000..9126b52 --- /dev/null +++ b/docs/search/all_6.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['our_5fcandata_0',['our_candata',['../structour__candata.html',1,'']]] +]; diff --git a/docs/search/all_7.js b/docs/search/all_7.js new file mode 100644 index 0000000..5cf5887 --- /dev/null +++ b/docs/search/all_7.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['pack_5fcurrent_0',['pack_current',['../structour__candata.html#ad88dd6a1e261f8008923d40ad22f3b7c',1,'our_candata']]], + ['pack_5fstate_5fof_5fcharge_1',['pack_state_of_charge',['../structour__candata.html#acd0602ac4d45088d4dfc5bda9391129d',1,'our_candata']]], + ['pack_5fvoltage_2',['pack_voltage',['../structour__candata.html#a6bf7ed9ae2fd95eee7dfad1ba677fd52',1,'our_candata']]], + ['packcurrent_3',['packCurrent',['../class_backend.html#a96cce8014d840e2e9e565849fd4d6f1c',1,'Backend']]], + ['packsoc_4',['packSOC',['../class_backend.html#a4c923e3177a05d7a235eef43c64dc3f4',1,'Backend']]], + ['packvoltage_5',['packVoltage',['../class_backend.html#aa114119bb0c61c19789114e85d0f9aec',1,'Backend']]] +]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js new file mode 100644 index 0000000..751e4a2 --- /dev/null +++ b/docs/search/all_8.js @@ -0,0 +1,25 @@ +var searchData= +[ + ['setauxpercent_0',['setAuxPercent',['../class_backend.html#a181d4ef7a800a59f30970aff81935ff9',1,'Backend']]], + ['setauxvoltage_1',['setAuxVoltage',['../class_backend.html#aea1988760e23d3a71c8e59d3fbd629a3',1,'Backend']]], + ['setbikespeed_2',['setBikeSpeed',['../class_backend.html#a41f530c3353b3090ecb5e5be8cc285b6',1,'Backend']]], + ['setbikestatus_3',['setBikeStatus',['../class_backend.html#aa4dd42516324c53f45594ebfde561937',1,'Backend']]], + ['setbmserror_4',['setBmsError',['../class_backend.html#a5fb55f0d084b1526cd7722e9536367f3',1,'Backend']]], + ['setbmserrorcodes_5',['setBmsErrorCodes',['../class_backend.html#aa9a795644028d3c7e77563034dcbc20a',1,'Backend']]], + ['setbmserrorcodesstring_6',['setBmsErrorCodesString',['../class_backend.html#af2fcdd85b15e60d1ddbc2bc48391a6f9',1,'Backend']]], + ['setbmsfault_7',['setBmsFault',['../class_backend.html#abc484080dc62f7f36a96c72586b25799',1,'Backend']]], + ['setbmstemp_8',['setBmsTemp',['../class_backend.html#a4d63556bfd846e2f327a766620e8b8df',1,'Backend']]], + ['setbmswarning_9',['setBmsWarning',['../class_backend.html#a1ed8e3394afa439f9f16710f7896649c',1,'Backend']]], + ['sethighcelltemp_10',['setHighCellTemp',['../class_backend.html#a1e83e3ce8504f024857446e12b8845b7',1,'Backend']]], + ['setlat_11',['setLat',['../class_backend.html#ac6479865cb1424e3db4420da0877e215',1,'Backend']]], + ['setlon_12',['setLon',['../class_backend.html#a23d341fe68297b82782e786210022585',1,'Backend']]], + ['setlowcelltemp_13',['setLowCellTemp',['../class_backend.html#aba6f3cfe6aa6137dc7351bb44dfa45a7',1,'Backend']]], + ['setmcfault_14',['setMcFault',['../class_backend.html#abaf8de6f691d2259eb872b72537f7058',1,'Backend']]], + ['setmctemp_15',['setMcTemp',['../class_backend.html#a157a36598b32143e812533cf87dd272f',1,'Backend']]], + ['setmotoron_16',['setMotorOn',['../class_backend.html#ab4699e9d0f3fd20c7bf325e412d02031',1,'Backend']]], + ['setmotorspeed_17',['setMotorSpeed',['../class_backend.html#a3ae0f65b4936686f6e41154c2ea9b7f8',1,'Backend']]], + ['setmotortemp_18',['setMotorTemp',['../class_backend.html#aa2bf5fa75e4d89a37ff1310fb1d88aa2',1,'Backend']]], + ['setpackcurrent_19',['setPackCurrent',['../class_backend.html#a5ef79b5db160853a21fc658c662f99ce',1,'Backend']]], + ['setpacksoc_20',['setPackSOC',['../class_backend.html#af059700e1da309edb7e8e50d76141077',1,'Backend']]], + ['setpackvoltage_21',['setPackVoltage',['../class_backend.html#adb6236eaa2d963d07cf80154e84f0f59',1,'Backend']]] +]; diff --git a/docs/search/classes_0.js b/docs/search/classes_0.js new file mode 100644 index 0000000..be6f2f2 --- /dev/null +++ b/docs/search/classes_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['backend_0',['Backend',['../class_backend.html',1,'']]] +]; diff --git a/docs/search/classes_1.js b/docs/search/classes_1.js new file mode 100644 index 0000000..f28b8bb --- /dev/null +++ b/docs/search/classes_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['gpsdata_0',['GPSData',['../struct_g_p_s_data.html',1,'']]] +]; diff --git a/docs/search/classes_2.js b/docs/search/classes_2.js new file mode 100644 index 0000000..9126b52 --- /dev/null +++ b/docs/search/classes_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['our_5fcandata_0',['our_candata',['../structour__candata.html',1,'']]] +]; diff --git a/docs/search/close.svg b/docs/search/close.svg new file mode 100644 index 0000000..337d6cc --- /dev/null +++ b/docs/search/close.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/docs/search/functions_0.js b/docs/search/functions_0.js new file mode 100644 index 0000000..e6317ea --- /dev/null +++ b/docs/search/functions_0.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['auxpercent_0',['auxPercent',['../class_backend.html#a2b9deb50de11a2fde07ef6589a31b7a0',1,'Backend']]], + ['auxvoltage_1',['auxVoltage',['../class_backend.html#a41e2e287304215732af6f9d6273792bb',1,'Backend']]] +]; diff --git a/docs/search/functions_1.js b/docs/search/functions_1.js new file mode 100644 index 0000000..94d23da --- /dev/null +++ b/docs/search/functions_1.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['backend_0',['Backend',['../class_backend.html#a5bc0e9ea135112c07e021ebde56ec44f',1,'Backend']]], + ['bikespeed_1',['bikeSpeed',['../class_backend.html#adf1e224769b6c96c359475583e5dc159',1,'Backend']]], + ['bikestatus_2',['bikeStatus',['../class_backend.html#ad7c06e20ccfa73a5bd52187f39b97054',1,'Backend']]], + ['bmserror_3',['bmsError',['../class_backend.html#a3875076145e97af7fde2a1c37f543293',1,'Backend']]], + ['bmserrorcodes_4',['bmsErrorCodes',['../class_backend.html#a15330410228d1397f3bd0fb01a97f412',1,'Backend']]], + ['bmserrorcodesstring_5',['bmsErrorCodesString',['../class_backend.html#a177b020eecbfbec86fa331f146420021',1,'Backend']]], + ['bmsfault_6',['bmsFault',['../class_backend.html#a0bc7373b61657730a31b121851d26f99',1,'Backend']]], + ['bmstemp_7',['bmsTemp',['../class_backend.html#a6d30b487c228843a22da6fe82bc96003',1,'Backend']]], + ['bmswarning_8',['bmsWarning',['../class_backend.html#a7150ddb151a1f8c62ef3f2ac762b5fbe',1,'Backend']]] +]; diff --git a/docs/search/functions_2.js b/docs/search/functions_2.js new file mode 100644 index 0000000..af6c06b --- /dev/null +++ b/docs/search/functions_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['highcelltemp_0',['highCellTemp',['../class_backend.html#a338d6ee091433158a4a82ec6c60cbde9',1,'Backend']]] +]; diff --git a/docs/search/functions_3.js b/docs/search/functions_3.js new file mode 100644 index 0000000..21e8b18 --- /dev/null +++ b/docs/search/functions_3.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['lat_0',['lat',['../class_backend.html#a8f93242ca98779058d3947e318b8944a',1,'Backend']]], + ['lon_1',['lon',['../class_backend.html#a21bc64c24fe21d47fde74754d4772c08',1,'Backend']]], + ['lowcelltemp_2',['lowCellTemp',['../class_backend.html#a2551568902d423cd2d6e7456fb68f218',1,'Backend']]] +]; diff --git a/docs/search/functions_4.js b/docs/search/functions_4.js new file mode 100644 index 0000000..cf2a3bf --- /dev/null +++ b/docs/search/functions_4.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['mcfault_0',['mcFault',['../class_backend.html#a1cd3fc891b7d02f4abd62fc117bdca83',1,'Backend']]], + ['mctemp_1',['mcTemp',['../class_backend.html#a06ee9247c3f51b6e56ae40564100f73a',1,'Backend']]], + ['motoron_2',['motorOn',['../class_backend.html#aff3f0f82e71ca4c549fb8c6a61be2310',1,'Backend']]], + ['motorspeed_3',['motorSpeed',['../class_backend.html#af248999c9a205fab70f7263943337b71',1,'Backend']]], + ['motortemp_4',['motorTemp',['../class_backend.html#a256e55ad5e78b997c6bc217c9decb29d',1,'Backend']]] +]; diff --git a/docs/search/functions_5.js b/docs/search/functions_5.js new file mode 100644 index 0000000..8f7efb3 --- /dev/null +++ b/docs/search/functions_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['packcurrent_0',['packCurrent',['../class_backend.html#a96cce8014d840e2e9e565849fd4d6f1c',1,'Backend']]], + ['packsoc_1',['packSOC',['../class_backend.html#a4c923e3177a05d7a235eef43c64dc3f4',1,'Backend']]], + ['packvoltage_2',['packVoltage',['../class_backend.html#aa114119bb0c61c19789114e85d0f9aec',1,'Backend']]] +]; diff --git a/docs/search/functions_6.js b/docs/search/functions_6.js new file mode 100644 index 0000000..751e4a2 --- /dev/null +++ b/docs/search/functions_6.js @@ -0,0 +1,25 @@ +var searchData= +[ + ['setauxpercent_0',['setAuxPercent',['../class_backend.html#a181d4ef7a800a59f30970aff81935ff9',1,'Backend']]], + ['setauxvoltage_1',['setAuxVoltage',['../class_backend.html#aea1988760e23d3a71c8e59d3fbd629a3',1,'Backend']]], + ['setbikespeed_2',['setBikeSpeed',['../class_backend.html#a41f530c3353b3090ecb5e5be8cc285b6',1,'Backend']]], + ['setbikestatus_3',['setBikeStatus',['../class_backend.html#aa4dd42516324c53f45594ebfde561937',1,'Backend']]], + ['setbmserror_4',['setBmsError',['../class_backend.html#a5fb55f0d084b1526cd7722e9536367f3',1,'Backend']]], + ['setbmserrorcodes_5',['setBmsErrorCodes',['../class_backend.html#aa9a795644028d3c7e77563034dcbc20a',1,'Backend']]], + ['setbmserrorcodesstring_6',['setBmsErrorCodesString',['../class_backend.html#af2fcdd85b15e60d1ddbc2bc48391a6f9',1,'Backend']]], + ['setbmsfault_7',['setBmsFault',['../class_backend.html#abc484080dc62f7f36a96c72586b25799',1,'Backend']]], + ['setbmstemp_8',['setBmsTemp',['../class_backend.html#a4d63556bfd846e2f327a766620e8b8df',1,'Backend']]], + ['setbmswarning_9',['setBmsWarning',['../class_backend.html#a1ed8e3394afa439f9f16710f7896649c',1,'Backend']]], + ['sethighcelltemp_10',['setHighCellTemp',['../class_backend.html#a1e83e3ce8504f024857446e12b8845b7',1,'Backend']]], + ['setlat_11',['setLat',['../class_backend.html#ac6479865cb1424e3db4420da0877e215',1,'Backend']]], + ['setlon_12',['setLon',['../class_backend.html#a23d341fe68297b82782e786210022585',1,'Backend']]], + ['setlowcelltemp_13',['setLowCellTemp',['../class_backend.html#aba6f3cfe6aa6137dc7351bb44dfa45a7',1,'Backend']]], + ['setmcfault_14',['setMcFault',['../class_backend.html#abaf8de6f691d2259eb872b72537f7058',1,'Backend']]], + ['setmctemp_15',['setMcTemp',['../class_backend.html#a157a36598b32143e812533cf87dd272f',1,'Backend']]], + ['setmotoron_16',['setMotorOn',['../class_backend.html#ab4699e9d0f3fd20c7bf325e412d02031',1,'Backend']]], + ['setmotorspeed_17',['setMotorSpeed',['../class_backend.html#a3ae0f65b4936686f6e41154c2ea9b7f8',1,'Backend']]], + ['setmotortemp_18',['setMotorTemp',['../class_backend.html#aa2bf5fa75e4d89a37ff1310fb1d88aa2',1,'Backend']]], + ['setpackcurrent_19',['setPackCurrent',['../class_backend.html#a5ef79b5db160853a21fc658c662f99ce',1,'Backend']]], + ['setpacksoc_20',['setPackSOC',['../class_backend.html#af059700e1da309edb7e8e50d76141077',1,'Backend']]], + ['setpackvoltage_21',['setPackVoltage',['../class_backend.html#adb6236eaa2d963d07cf80154e84f0f59',1,'Backend']]] +]; diff --git a/docs/search/mag.svg b/docs/search/mag.svg new file mode 100644 index 0000000..ffb6cf0 --- /dev/null +++ b/docs/search/mag.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/docs/search/mag_d.svg b/docs/search/mag_d.svg new file mode 100644 index 0000000..4122773 --- /dev/null +++ b/docs/search/mag_d.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/docs/search/mag_sel.svg b/docs/search/mag_sel.svg new file mode 100644 index 0000000..553dba8 --- /dev/null +++ b/docs/search/mag_sel.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/docs/search/mag_seld.svg b/docs/search/mag_seld.svg new file mode 100644 index 0000000..c906f84 --- /dev/null +++ b/docs/search/mag_seld.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/docs/search/search.css b/docs/search/search.css new file mode 100644 index 0000000..d7b0f90 --- /dev/null +++ b/docs/search/search.css @@ -0,0 +1,291 @@ +/*---------------- Search Box positioning */ + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search box styling */ + +.SRPage * { + font-weight: normal; + line-height: normal; +} + +dark-mode-toggle { + margin-left: 5px; + display: flex; + float: right; +} + +#MSearchBox { + display: inline-block; + white-space : nowrap; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; + z-index: 102; +} + +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; +} + +#MSearchSelect { + display: inline-block; + vertical-align: middle; + width: 20px; + height: 19px; + background-image: url('mag_sel.svg'); + margin: 0 0 0 0.3em; + padding: 0; +} + +#MSearchSelectExt { + display: inline-block; + vertical-align: middle; + width: 10px; + height: 19px; + background-image: url('mag.svg'); + margin: 0 0 0 0.5em; + padding: 0; +} + + +#MSearchField { + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 19px; + margin: 0 0.15em; + padding: 0; + line-height: 1em; + border:none; + color: #909090; + outline: none; + font-family: Arial,Verdana,sans-serif; + -webkit-border-radius: 0px; + border-radius: 0px; + background: none; +} + +@media(hover: none) { + /* to avoid zooming on iOS */ + #MSearchField { + font-size: 16px; + } +} + +#MSearchBox .right { + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; +} + +#MSearchClose { + display: none; + font-size: inherit; + background : none; + border: none; + margin: 0; + padding: 0; + outline: none; + +} + +#MSearchCloseImg { + padding: 0.3em; + margin: 0; +} + +.MSearchBoxActive #MSearchField { + color: black; +} + + + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial,Verdana,sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: black; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: black; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: white; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + /*width: 60ex;*/ + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid black; + background-color: #EEF1F7; + z-index:10000; + width: 300px; + height: 400px; + overflow: auto; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +div.SRPage { + margin: 5px 2px; + background-color: #EEF1F7; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial,Verdana,sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial,Verdana,sans-serif; + font-size: 8pt; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; + font-family: Arial,Verdana,sans-serif; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; + font-family: Arial,Verdana,sans-serif; +} + +.SRResult { + display: none; +} + +div.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/docs/search/search.js b/docs/search/search.js new file mode 100644 index 0000000..666af01 --- /dev/null +++ b/docs/search/search.js @@ -0,0 +1,694 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +const SEARCH_COOKIE_NAME = ''+'search_grp'; + +const searchResults = new SearchResults(); + +/* A class handling everything associated with the search panel. + + Parameters: + name - The name of the global variable that will be + storing this instance. Is needed to be able to set timeouts. + resultPath - path to use for external files +*/ +function SearchBox(name, resultsPath, extension) { + if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } + + function getXPos(item) { + let x = 0; + if (item.offsetWidth) { + while (item && item!=document.body) { + x += item.offsetLeft; + item = item.offsetParent; + } + } + return x; + } + + function getYPos(item) { + let y = 0; + if (item.offsetWidth) { + while (item && item!=document.body) { + y += item.offsetTop; + item = item.offsetParent; + } + } + return y; + } + + // ---------- Instance variables + this.name = name; + this.resultsPath = resultsPath; + this.keyTimeout = 0; + this.keyTimeoutLength = 500; + this.closeSelectionTimeout = 300; + this.lastSearchValue = ""; + this.lastResultsPage = ""; + this.hideTimeout = 0; + this.searchIndex = 0; + this.searchActive = false; + this.extension = extension; + + // ----------- DOM Elements + + this.DOMSearchField = () => document.getElementById("MSearchField"); + this.DOMSearchSelect = () => document.getElementById("MSearchSelect"); + this.DOMSearchSelectWindow = () => document.getElementById("MSearchSelectWindow"); + this.DOMPopupSearchResults = () => document.getElementById("MSearchResults"); + this.DOMPopupSearchResultsWindow = () => document.getElementById("MSearchResultsWindow"); + this.DOMSearchClose = () => document.getElementById("MSearchClose"); + this.DOMSearchBox = () => document.getElementById("MSearchBox"); + + // ------------ Event Handlers + + // Called when focus is added or removed from the search field. + this.OnSearchFieldFocus = function(isActive) { + this.Activate(isActive); + } + + this.OnSearchSelectShow = function() { + const searchSelectWindow = this.DOMSearchSelectWindow(); + const searchField = this.DOMSearchSelect(); + + const left = getXPos(searchField); + const top = getYPos(searchField) + searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + + // stop selection hide timer + if (this.hideTimeout) { + clearTimeout(this.hideTimeout); + this.hideTimeout=0; + } + return false; // to avoid "image drag" default event + } + + this.OnSearchSelectHide = function() { + this.hideTimeout = setTimeout(this.CloseSelectionWindow.bind(this), + this.closeSelectionTimeout); + } + + // Called when the content of the search field is changed. + this.OnSearchFieldChange = function(evt) { + if (this.keyTimeout) { // kill running timer + clearTimeout(this.keyTimeout); + this.keyTimeout = 0; + } + + const e = evt ? evt : window.event; // for IE + if (e.keyCode==40 || e.keyCode==13) { + if (e.shiftKey==1) { + this.OnSearchSelectShow(); + const win=this.DOMSearchSelectWindow(); + for (let i=0;i do a search + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) { // Up + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } else if (e.keyCode==13 || e.keyCode==27) { + e.stopPropagation(); + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() { + this.keyTimeout = 0; + + // strip leading whitespace + const searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + const code = searchValue.toLowerCase().charCodeAt(0); + let idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) { // surrogate pair + idxChar = searchValue.substr(0, 2); + } + + let jsFile; + let idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) { + const hexCode=idx.toString(16); + jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js'; + } + + const loadJS = function(url, impl, loc) { + const scriptTag = document.createElement('script'); + scriptTag.src = url; + scriptTag.onload = impl; + scriptTag.onreadystatechange = impl; + loc.appendChild(scriptTag); + } + + const domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + const domSearchBox = this.DOMSearchBox(); + const domPopupSearchResults = this.DOMPopupSearchResults(); + const domSearchClose = this.DOMSearchClose(); + const resultsPath = this.resultsPath; + + const handleResults = function() { + document.getElementById("Loading").style.display="none"; + if (typeof searchData !== 'undefined') { + createResults(resultsPath); + document.getElementById("NoMatches").style.display="none"; + } + + if (idx!=-1) { + searchResults.Search(searchValue); + } else { // no file with search results => force empty search results + searchResults.Search('===='); + } + + if (domPopupSearchResultsWindow.style.display!='block') { + domSearchClose.style.display = 'inline-block'; + let left = getXPos(domSearchBox) + 150; + let top = getYPos(domSearchBox) + 20; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + const maxWidth = document.body.clientWidth; + const maxHeight = document.body.clientHeight; + let width = 300; + if (left<10) left=10; + if (width+left+8>maxWidth) width=maxWidth-left-8; + let height = 400; + if (height+top+8>maxHeight) height=maxHeight-top-8; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResultsWindow.style.height = height + 'px'; + } + } + + if (jsFile) { + loadJS(jsFile, handleResults, this.DOMPopupSearchResultsWindow()); + } else { + handleResults(); + } + + this.lastSearchValue = searchValue; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) { + this.DOMSearchBox().className = 'MSearchBoxActive'; + this.searchActive = true; + } else if (!isActive) { // directly remove the panel + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + this.DOMSearchField().value = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults() { + + function convertToId(search) { + let result = ''; + for (let i=0;i. + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) { + const parentElement = document.getElementById(id); + let element = parentElement.firstChild; + + while (element && element!=parentElement) { + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { + return element; + } + + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { + element = element.firstChild; + } else if (element.nextSibling) { + element = element.nextSibling; + } else { + do { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) { + const element = this.FindChildElement(id); + if (element) { + if (element.style.display == 'block') { + element.style.display = 'none'; + } else { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) { + if (!search) { // get search word from URL + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + const resultRows = document.getElementsByTagName("div"); + let matches = 0; + + let i = 0; + while (i < resultRows.length) { + const row = resultRows.item(i); + if (row.className == "SRResult") { + let rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) { + row.style.display = 'block'; + matches++; + } else { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) { // no results + document.getElementById("NoMatches").style.display='block'; + } else { // at least one result + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) { + let focusItem; + for (;;) { + const focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') { + break; + } else if (!focusItem) { // last element + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) { + let focusItem; + for (;;) { + const focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') { + break; + } else if (!focusItem) { // last element + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) { + if (e.type == "keydown") { + this.repeatOn = false; + this.lastKey = e.keyCode; + } else if (e.type == "keypress") { + if (!this.repeatOn) { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } else if (e.type == "keyup") { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) { // Up + const newIndex = itemIndex-1; + let focusItem = this.NavPrev(newIndex); + if (focusItem) { + let child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') { // children visible + let n=0; + let tmpElem; + for (;;) { // search for last child + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) { + focusItem = tmpElem; + } else { // found it! + break; + } + n++; + } + } + } + if (focusItem) { + focusItem.focus(); + } else { // return focus to search field + document.getElementById("MSearchField").focus(); + } + } else if (this.lastKey==40) { // Down + const newIndex = itemIndex+1; + let focusItem; + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') { // children visible + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } else if (this.lastKey==39) { // Right + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } else if (this.lastKey==37) { // Left + const item = document.getElementById('Item'+itemIndex); + const elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } else if (this.lastKey==27) { // Escape + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } else if (this.lastKey==13) { // Enter + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) { + const e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) { // Up + if (childIndex>0) { + const newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } else { // already at first child, jump to parent + document.getElementById('Item'+itemIndex).focus(); + } + } else if (this.lastKey==40) { // Down + const newIndex = childIndex+1; + let elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) { // last child, jump to parent next parent + elem = this.NavNext(itemIndex+1); + } + if (elem) { + elem.focus(); + } + } else if (this.lastKey==27) { // Escape + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } else if (this.lastKey==13) { // Enter + return true; + } + return false; + } +} + +function createResults(resultsPath) { + + function setKeyActions(elem,action) { + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); + } + + function setClassAttr(elem,attr) { + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); + } + + const results = document.getElementById("SRResults"); + results.innerHTML = ''; + searchData.forEach((elem,index) => { + const id = elem[0]; + const srResult = document.createElement('div'); + srResult.setAttribute('id','SR_'+id); + setClassAttr(srResult,'SRResult'); + const srEntry = document.createElement('div'); + setClassAttr(srEntry,'SREntry'); + const srLink = document.createElement('a'); + srLink.setAttribute('id','Item'+index); + setKeyActions(srLink,'return searchResults.Nav(event,'+index+')'); + setClassAttr(srLink,'SRSymbol'); + srLink.innerHTML = elem[1][0]; + srEntry.appendChild(srLink); + if (elem[1].length==2) { // single result + srLink.setAttribute('href',resultsPath+elem[1][1][0]); + srLink.setAttribute('onclick','searchBox.CloseResultsWindow()'); + if (elem[1][1][1]) { + srLink.setAttribute('target','_parent'); + } else { + srLink.setAttribute('target','_blank'); + } + const srScope = document.createElement('span'); + setClassAttr(srScope,'SRScope'); + srScope.innerHTML = elem[1][1][2]; + srEntry.appendChild(srScope); + } else { // multiple results + srLink.setAttribute('href','javascript:searchResults.Toggle("SR_'+id+'")'); + const srChildren = document.createElement('div'); + setClassAttr(srChildren,'SRChildren'); + for (let c=0; c-{AmhX=Jf(#6djGiuzAr*{o?=JLmPLyc> z_*`QK&+BH@jWrYJ7>r6%keRM@)Qyv8R=enp0jiI>aWlGyB58O zFVR20d+y`K7vDw(hJF3;>dD*3-?v=<8M)@x|EEGLnJsniYK!2U1 Y!`|5biEc?d1`HDhPgg&ebxsLQ02F6;9RL6T literal 0 HcmV?d00001 diff --git a/docs/splitbard.png b/docs/splitbard.png new file mode 100644 index 0000000000000000000000000000000000000000..8367416d757fd7b6dc4272b6432dc75a75abd068 GIT binary patch literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^Yzz!63>-{AmhX=Jf@VhhFKy35^fiT zT~&lUj3=cDh^%3HDY9k5CEku}PHXNoNC(_$U3XPb&Q*ME25pT;2(*BOgAf<+R$lzakPG`kF31()Fx{L5Wrac|GQzjeE= zueY1`Ze{#x<8=S|`~MgGetGce)#vN&|J{Cd^tS%;tBYTo?+^d68<#n_Y_xx`J||4O V@QB{^CqU0Kc)I$ztaD0e0svEzbJzd? literal 0 HcmV?d00001 diff --git a/docs/struct_g_p_s_data-members.html b/docs/struct_g_p_s_data-members.html new file mode 100644 index 0000000..5c80b62 --- /dev/null +++ b/docs/struct_g_p_s_data-members.html @@ -0,0 +1,122 @@ + + + + + + + +BOLT Dash (C++): Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    GPSData Member List
    +
    +
    + +

    This is the complete list of members for GPSData, including all inherited members.

    + + + + + + + + +
    altitude (defined in GPSData)GPSData
    date (defined in GPSData)GPSData
    fix (defined in GPSData)GPSData
    latitude (defined in GPSData)GPSData
    longitude (defined in GPSData)GPSData
    satellites (defined in GPSData)GPSData
    time (defined in GPSData)GPSData
    +
    + + + + diff --git a/docs/struct_g_p_s_data.html b/docs/struct_g_p_s_data.html new file mode 100644 index 0000000..386dfd7 --- /dev/null +++ b/docs/struct_g_p_s_data.html @@ -0,0 +1,144 @@ + + + + + + + +BOLT Dash (C++): GPSData Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    GPSData Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + +

    +Public Attributes

    +double latitude = 0.0
     
    +double longitude = 0.0
     
    +std::string time = ""
     
    +std::string date = ""
     
    +double altitude = 0.0
     
    +int satellites = 0
     
    +std::string fix = "Invalid"
     
    +
    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/docs/structour__candata-members.html b/docs/structour__candata-members.html new file mode 100644 index 0000000..37d55c9 --- /dev/null +++ b/docs/structour__candata-members.html @@ -0,0 +1,136 @@ + + + + + + + +BOLT Dash (C++): Member List + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + + + + + + diff --git a/docs/structour__candata.html b/docs/structour__candata.html new file mode 100644 index 0000000..eea5e5f --- /dev/null +++ b/docs/structour__candata.html @@ -0,0 +1,214 @@ + + + + + + + +BOLT Dash (C++): our_candata Struct Reference + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +
    our_candata Struct Reference
    +
    +
    + +

    This is a struct that contains all the data that we get from the CAN bus and is used in the dash project. + More...

    + +

    #include <can.h>

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Public Attributes

    +uint8_t aux_voltage {}
     The voltage of the aux pack.
     
    +uint8_t aux_percent {}
     The battery percentage of the aux pack.
     
    +uint8_t pack_state_of_charge {}
     The state of charge of the main pack as a percentage.
     
    +uint16_t pack_voltage {}
     The voltage of the main pack.
     
    +int16_t pack_current {}
     The current of the main pack.
     
    +uint16_t high_cell_temp {}
     The temperature of the hottest cell group in the main pack.
     
    +uint16_t low_cell_temp {}
     The temperature of the coldest cell group in the main pack.
     
    +int16_t motor_temperature {}
     The temperature of the motor.
     
    +uint16_t bms_temperature {}
     The temperature of the BMS.
     
    +uint16_t mc_temperature {}
     The temperature of the motor controller.
     
    +int16_t motor_speed {}
     The RPM of the motor.
     
    +int16_t bike_speed {}
     The speed of the bike in mph.
     
    +uint8_t bms_fault {}
     The fault status of the BMS.
     
    +uint8_t bms_error {}
     Whether the BMS has any errors.
     
    +uint8_t bms_warning {}
     Whether the BMS has any warnings.
     
    +uint32_t bms_error_codes {}
     The actual error codes of the BMS concatenated together.
     
    +uint8_t mc_fault {}
     Whether or no the MC has a fault.
     
    +uint8_t motor_on {}
     Whether or not the motor is active.
     
    +uint8_t bike_status {}
     The internal state of the bike, not used rn.
     
    +uint16_t highest_cell_voltage {}
     The highest cell voltage in the main pack.
     
    +uint16_t lowest_cell_voltage {}
     The lowest cell voltage in the main pack.
     
    +

    Detailed Description

    +

    This is a struct that contains all the data that we get from the CAN bus and is used in the dash project.

    +

    The documentation for this struct was generated from the following file: +
    +
    + + + + diff --git a/docs/structour__candata.js b/docs/structour__candata.js new file mode 100644 index 0000000..3055a68 --- /dev/null +++ b/docs/structour__candata.js @@ -0,0 +1,24 @@ +var structour__candata = +[ + [ "aux_percent", "structour__candata.html#a2f27833c993b361dae86811cf2dc8cc1", null ], + [ "aux_voltage", "structour__candata.html#ac6a49df6ef92171d255081f4193ecaba", null ], + [ "bike_speed", "structour__candata.html#a91da22817613daa581a1caefe1009d61", null ], + [ "bike_status", "structour__candata.html#aebfe1c507bccf95524c071e9a100917f", null ], + [ "bms_error", "structour__candata.html#a64ea5fe3164ab59c15c3c9c72700486c", null ], + [ "bms_error_codes", "structour__candata.html#ab7715b7e4d16aee41a2919163a396ecd", null ], + [ "bms_fault", "structour__candata.html#aaae561b9ae7cc78f5279288aa49c4d82", null ], + [ "bms_temperature", "structour__candata.html#ad6d7fd57efd9400b510993c40b2c7f34", null ], + [ "bms_warning", "structour__candata.html#a5e1f2c6c156021f7679cee5e2033e96c", null ], + [ "high_cell_temp", "structour__candata.html#af0bfcceda380408a9c3e54926389316e", null ], + [ "highest_cell_voltage", "structour__candata.html#abaf96e8325fdab008b6a6e4079c1a299", null ], + [ "low_cell_temp", "structour__candata.html#ab09abb61d44b018a5bf2df4272e3c6ee", null ], + [ "lowest_cell_voltage", "structour__candata.html#a37097ff238e8e2be3ac37666f987954c", null ], + [ "mc_fault", "structour__candata.html#a43502a87bb2da1ac2d475d625acf555d", null ], + [ "mc_temperature", "structour__candata.html#a1fc64bcb813314dce32b25a7df8664ce", null ], + [ "motor_on", "structour__candata.html#a72b801f88be3552f7bfa59c2c971c775", null ], + [ "motor_speed", "structour__candata.html#a1bcf43881237f8eea2d89486426c15bf", null ], + [ "motor_temperature", "structour__candata.html#ae42e90da9e66b88b650ebb77da6a8523", null ], + [ "pack_current", "structour__candata.html#ad88dd6a1e261f8008923d40ad22f3b7c", null ], + [ "pack_state_of_charge", "structour__candata.html#acd0602ac4d45088d4dfc5bda9391129d", null ], + [ "pack_voltage", "structour__candata.html#a6bf7ed9ae2fd95eee7dfad1ba677fd52", null ] +]; \ No newline at end of file diff --git a/docs/sync_off.png b/docs/sync_off.png new file mode 100644 index 0000000000000000000000000000000000000000..3b443fc62892114406e3d399421b2a881b897acc GIT binary patch literal 853 zcmV-b1FHOqP)oT|#XixUYy%lpuf3i8{fX!o zUyDD0jOrAiT^tq>fLSOOABs-#u{dV^F$b{L9&!2=9&RmV;;8s^x&UqB$PCj4FdKbh zoB1WTskPUPu05XzFbA}=KZ-GP1fPpAfSs>6AHb12UlR%-i&uOlTpFNS7{jm@mkU1V zh`nrXr~+^lsV-s1dkZOaI|kYyVj3WBpPCY{n~yd%u%e+d=f%`N0FItMPtdgBb@py; zq@v6NVArhyTC7)ULw-Jy8y42S1~4n(3LkrW8mW(F-4oXUP3E`e#g**YyqI7h-J2zK zK{m9##m4ri!7N>CqQqCcnI3hqo1I;Yh&QLNY4T`*ptiQGozK>FF$!$+84Z`xwmeMh zJ0WT+OH$WYFALEaGj2_l+#DC3t7_S`vHpSivNeFbP6+r50cO8iu)`7i%Z4BTPh@_m3Tk!nAm^)5Bqnr%Ov|Baunj#&RPtRuK& z4RGz|D5HNrW83-#ydk}tVKJrNmyYt-sTxLGlJY5nc&Re zU4SgHNPx8~Yxwr$bsju?4q&%T1874xxzq+_%?h8_ofw~(bld=o3iC)LUNR*BY%c0y zWd_jX{Y8`l%z+ol1$@Qa?Cy!(0CVIEeYpKZ`(9{z>3$CIe;pJDQk$m3p}$>xBm4lb zKo{4S)`wdU9Ba9jJbVJ0C=SOefZe%d$8=2r={nu<_^a3~>c#t_U6dye5)JrR(_a^E f@}b6j1K9lwFJq@>o)+Ry00000NkvXXu0mjfWa5j* literal 0 HcmV?d00001 diff --git a/docs/sync_on.png b/docs/sync_on.png new file mode 100644 index 0000000000000000000000000000000000000000..e08320fb64e6fa33b573005ed6d8fe294e19db76 GIT binary patch literal 845 zcmV-T1G4;yP)Y;xxyHF2B5Wzm| zOOGupOTn@c(JmBOl)e;XMNnZuiTJP>rM8<|Q`7I_))aP?*T)ow&n59{}X4$3Goat zgjs?*aasfbrokzG5cT4K=uG`E14xZl@z)F={P0Y^?$4t z>v!teRnNZym<6h{7sLyF1V0HsfEl+l6TrZpsfr1}luH~F7L}ktXu|*uVX^RG$L0`K zWs3j|0tIvVe(N%_?2{(iCPFGf#B6Hjy6o&}D$A%W%jfO8_W%ZO#-mh}EM$LMn7joJ z05dHr!5Y92g+31l<%i1(=L1a1pXX+OYnalY>31V4K}BjyRe3)9n#;-cCVRD_IG1fT zOKGeNY8q;TL@K{dj@D^scf&VCs*-Jb>8b>|`b*osv52-!A?BpbYtTQBns5EAU**$m zSnVSm(teh>tQi*S*A>#ySc=n;`BHz`DuG4&g4Kf8lLhca+zvZ7t7RflD6-i-mcK=M z!=^P$*u2)bkY5asG4gsss!Hn%u~>}kIW`vMs%lJLH+u*9<4PaV_c6U`KqWXQH%+Nu zTv41O(^ZVi@qhjQdG!fbZw&y+2o!iYymO^?ud3{P*HdoX83YV*Uu_HB=?U&W9%AU# z80}k1SS-CXTU7dcQlsm<^oYLxVSseqY6NO}dc`Nj?8vrhNuCdm@^{a3AQ_>6myOj+ z`1RsLUXF|dm|3k7s2jD(B{rzE>WI2scH8i1;=O5Cc9xB3^aJk%fQjqsu+kH#0=_5a z0nCE8@dbQa-|YIuUVvG0L_IwHMEhOj$Mj4Uq05 X8=0q~qBNan00000NkvXXu0mjfptF>5 literal 0 HcmV?d00001 diff --git a/docs/tab_a.png b/docs/tab_a.png new file mode 100644 index 0000000000000000000000000000000000000000..3b725c41c5a527a3a3e40097077d0e206a681247 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!QlXwMjv*C{Z|8b*H5dputLHD# z=<0|*y7z(Vor?d;H&?EG&cXR}?!j-Lm&u1OOI7AIF5&c)RFE;&p0MYK>*Kl@eiymD r@|NpwKX@^z+;{u_Z~trSBfrMKa%3`zocFjEXaR$#tDnm{r-UW|TZ1%4 literal 0 HcmV?d00001 diff --git a/docs/tab_ad.png b/docs/tab_ad.png new file mode 100644 index 0000000000000000000000000000000000000000..e34850acfc24be58da6d2fd1ccc6b29cc84fe34d GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!QhuH;jv*C{Z|5d*H3V=pKi{In zd2jxLclDRPylmD}^l7{QOtL{vUjO{-WqItb5sQp2h-99b8^^Scr-=2mblCdZuUm?4 jzOJvgvt3{(cjKLW5(A@0qPS@<&}0TrS3j3^P6y&q2{!U5bk+Tso_B!YCpDh>v z{CM*1U8YvQRyBUHt^Ju0W_sq-?;9@_4equ-bavTs=gk796zopr0EBT&m;e9( literal 0 HcmV?d00001 diff --git a/docs/tab_s.png b/docs/tab_s.png new file mode 100644 index 0000000000000000000000000000000000000000..ab478c95b67371d700a20869f7de1ddd73522d50 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!QuUrLjv*C{Z|^p8HaRdjTwH7) zC?wLlL}}I{)n%R&r+1}IGmDnq;&J#%V6)9VsYhS`O^BVBQlxOUep0c$RENLq#g8A$ z)z7%K_bI&n@J+X_=x}fJoEKed-$<>=ZI-;YrdjIl`U`uzuDWSP?o#Dmo{%SgM#oan kX~E1%D-|#H#QbHoIja2U-MgvsK&LQxy85}Sb4q9e0Efg%P5=M^ literal 0 HcmV?d00001 diff --git a/docs/tab_sd.png b/docs/tab_sd.png new file mode 100644 index 0000000000000000000000000000000000000000..757a565ced4730f85c833fb2547d8e199ae68f19 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!Qq7(&jv*C{Z|_!fH5o7*c=%9% zcILh!EA=pAQKdx-Cdiev=v{eg{8Ht<{e8_NAN~b=)%W>-WDCE0PyDHGemi$BoXwcK z{>e9^za6*c1ilttWw&V+U;WCPlV9{LdC~Ey%_H(qj`xgfES(4Yz5jSTZfCt`4E$0YRsR*S^mTCR^;V&sxC8{l_Cp7w8-YPgg&ebxsLQ00$vXK>z>% literal 0 HcmV?d00001 diff --git a/docs/tabs.css b/docs/tabs.css new file mode 100644 index 0000000..edbb424 --- /dev/null +++ b/docs/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:#364D7C;-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:url('tab_b.png')}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255, 255, 255, 0.9);color:#283A5D;outline:0}.sm-dox a:hover{background-image:url('tab_a.png');background-repeat:repeat-x;color:white;text-shadow:0px 1px 1px rgba(0, 0, 0, 1.0)}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255, 255, 255, 0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:white}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url('tab_a.png');background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url('tab_b.png');line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url('tab_s.png');background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:url('tab_a.png');background-repeat:repeat-x;color:white;text-shadow:0px 1px 1px rgba(0, 0, 0, 1.0)}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent white transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:white;-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555555;background-image:none;border:0 !important}.sm-dox ul a:hover{background-image:url('tab_a.png');background-repeat:repeat-x;color:white;text-shadow:0px 1px 1px rgba(0, 0, 0, 1.0)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:white;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url('tab_b.png')}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:white}} diff --git a/docs/web_8h_source.html b/docs/web_8h_source.html new file mode 100644 index 0000000..1accb4d --- /dev/null +++ b/docs/web_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +BOLT Dash (C++): Bolt_Dash/web.h Source File + + + + + + + + + + + + + + + + +
    +
    + + + + + + +
    +
    BOLT Dash (C++) +
    +
    +
    + + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    web.h
    +
    +
    +
    1#ifndef WEB_H
    +
    2#define WEB_H
    +
    3
    +
    4#define RPM_TO_SPEED (19.0 / 45.0 * 27.63 * M_PI / 1056)
    +
    5
    +
    6namespace web {
    +
    7 void runApp();
    +
    8}
    +
    9
    +
    10#endif // !WEB)H
    +
    +
    + + + + diff --git a/doxy-config b/doxy-config index b6325cb..727b049 100644 --- a/doxy-config +++ b/doxy-config @@ -1314,7 +1314,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = docs # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). From a1c74279f979f45436dfdd5ae9c311c3803cbddc Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 26 Mar 2025 14:41:44 -0400 Subject: [PATCH 160/165] Don't use pigpio if not on a pi --- .gitignore | 4 +++- Bolt_Dash/CMakeLists.txt | 13 ++++++++++-- Bolt_Dash/content/CMakeLists.txt | 1 + Bolt_Dash/content/Debug1.qml | 8 +++++++ Bolt_Dash/content/DebugMain.qml | 7 +++++-- Bolt_Dash/content/DebugOther.qml | 36 ++++++++++++++++++++++++++++++++ Bolt_Dash/imports/IO/io.cpp | 29 +++++++++++++++++++++++++ 7 files changed, 93 insertions(+), 5 deletions(-) create mode 100644 Bolt_Dash/content/DebugOther.qml diff --git a/.gitignore b/.gitignore index 8def0e7..a4ab908 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ .clangd build/ html/ -latex/ \ No newline at end of file +latex/ +.idea/** +.DS_STORE \ No newline at end of file diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 4244469..1f99245 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -37,15 +37,24 @@ qt_add_resources(Bolt_DashApp "configuration" target_include_directories(Bolt_DashApp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/includes/headers) +find_package(pigpio COMPONENTS filesystem system QUIET) + target_link_libraries(Bolt_DashApp PRIVATE Qt6::Core Qt6::Gui Qt6::Qml Qt6::Quick - pigpio - gps ) +if (TARGET pigpio) + target_link_libraries(Bolt_DashApp PRIVATE pigpio) +endif() + +find_library(GPS_LIBRARY gps) +if (GPS_LIBRARY) + target_link_libraries(Bolt_DashApp PRIVATE ${GPS_LIBRARY}) +endif() + # if (BUILD_QDS_COMPONENTS) # include(${CMAKE_CURRENT_SOURCE_DIR}/qmlcomponents) # endif() diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 16e45b1..38e237b 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -39,4 +39,5 @@ qt6_add_qml_module(content QML_FILES DebugOverview.qml QML_FILES DebugBMS.qml QML_FILES DebugPDU.qml + QML_FILES DebugOther.qml ) diff --git a/Bolt_Dash/content/Debug1.qml b/Bolt_Dash/content/Debug1.qml index 750ad8c..b5ab6e9 100644 --- a/Bolt_Dash/content/Debug1.qml +++ b/Bolt_Dash/content/Debug1.qml @@ -58,6 +58,14 @@ Item { bikeStatus: backend.bikeStatus } + DebugOther { + visible: menu.selected == DebugMain.Selected.OTHER + width: 650 + id: debugOther + gpsLat: backend.lat + gpsLong: backend.lon + } + DebugMain { id: menu x: 650 diff --git a/Bolt_Dash/content/DebugMain.qml b/Bolt_Dash/content/DebugMain.qml index 6821ae4..8c0fa03 100644 --- a/Bolt_Dash/content/DebugMain.qml +++ b/Bolt_Dash/content/DebugMain.qml @@ -10,12 +10,13 @@ Item { OVERVIEW, MOTOR, BMS, - PDU + PDU, + OTHER } Column { id: column - property int numButtons: 4 + property int numButtons: 5 y: spacing spacing: 3 width: parent.width @@ -41,6 +42,8 @@ Item { return "BMS" case DebugMain.Selected.PDU: return "PDU" + case DebugMain.Selected.OTHER: + return "Other" default: return "Unknown" } diff --git a/Bolt_Dash/content/DebugOther.qml b/Bolt_Dash/content/DebugOther.qml new file mode 100644 index 0000000..70c3bfc --- /dev/null +++ b/Bolt_Dash/content/DebugOther.qml @@ -0,0 +1,36 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Bolt_Dash + +Item { + width: Constants.width + height: Constants.height + + // Properties, all defined as doubles + property double gpsLat: 0.0 + property double gpsLong: 0.0 + + // Using grid layout for organized display + GridLayout { + y: 30 + columns: 2 + columnSpacing: 10 + rowSpacing: 5 + width: parent.width + height: parent.height - y + + // Labels and dynamic text for each data item, converting double to string for display + Text { text: "Latitude:" } + Text { text: qsTr("%1").arg(gpsLat) } + + Text { text: "Longitude:" } + Text { text: qsTr("%1").arg(gpsLong) } + } + + Text { + text: "Other Information" + color: "blue" + font.pixelSize: 24 + } +} diff --git a/Bolt_Dash/imports/IO/io.cpp b/Bolt_Dash/imports/IO/io.cpp index 9afd9b2..aa0369a 100644 --- a/Bolt_Dash/imports/IO/io.cpp +++ b/Bolt_Dash/imports/IO/io.cpp @@ -1,5 +1,10 @@ #include "io.h" +#if __has_include() #include +#define PIGPIO_FOUND 1 +#endif + +#ifdef PIGPIO_FOUND // Create IO class which can be included in QML IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { @@ -39,3 +44,27 @@ void IO::setButtonStatus(const bool status) { } } } + +#else // PIGPIO_FOUND + +IO::IO(QObject *parent) : QObject(parent), m_buttonStatus{} { + setButtonStatus(false); +} + +// Functions to get variable values +bool IO::buttonStatus() const { + return m_buttonStatus; +} + +// Setter Functions +void IO::setButtonStatus(const bool status) { + if (m_buttonStatus != status) { + m_buttonStatus = status; + emit buttonStatusChanged(); + if (m_buttonStatus == PRESSED) { + emit buttonTapped(); + } + } +} + +#endif // PIGPIO_FOUND \ No newline at end of file From 293ef54c41a7eba8985b779d2a674c9e45ccdf73 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 26 Mar 2025 14:47:57 -0400 Subject: [PATCH 161/165] Can now run on my mac, just won't use libs that don't exist --- Bolt_Dash/can.cpp | 8 ++++++++ Bolt_Dash/can.h | 9 +++++++++ Bolt_Dash/content/App.qml | 2 +- Bolt_Dash/gpsprocessing.cpp | 12 +++++++++++- Bolt_Dash/gpsprocessing.h | 3 +++ Bolt_Dash/web.cpp | 23 +++++++++++++++++++++-- 6 files changed, 53 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index 55acdb3..a53862a 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -37,6 +37,7 @@ namespace can { return sum / FRAMES_TO_AVERAGE; } +#ifdef CAN_LIB_FOUND int run() { // Where the data will be stored to be send to the front end int s, i; @@ -217,4 +218,11 @@ namespace can { return 0; } + +#else + int run() { + // If no CAN library is found, just return 0 + return 0; + } +#endif // CAN_LIB_FOUND } diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index d3a8642..3172964 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -8,8 +8,11 @@ #include #include +#if __has_include() && __has_include() #include #include +#define CAN_LIB_FOUND 1 +#endif #define BMS_FAULT_MASK 0b0010000 @@ -106,6 +109,7 @@ struct our_candata { }; // ID's for each CAN thing +#ifdef CAN_LIB_FOUND constexpr struct { canid_t aux_battery{0x700}; canid_t info{0x6B0}; @@ -120,6 +124,11 @@ constexpr struct { canid_t mc_faults{0x0AB}; canid_t internal_states{0x0AA}; } can_ids; +#else +constexpr struct { + +} can_ids; +#endif // CAN_LIB_FOUND constexpr struct { uint32_t discharge_limit_enforcement{1 << 0}; diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index a831738..b1c7381 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -9,7 +9,7 @@ Window { width: mainScreen.width height: mainScreen.height property bool debugMode: false - + visible: true title: "Bolt_Dash" diff --git a/Bolt_Dash/gpsprocessing.cpp b/Bolt_Dash/gpsprocessing.cpp index 3195330..cb7a204 100644 --- a/Bolt_Dash/gpsprocessing.cpp +++ b/Bolt_Dash/gpsprocessing.cpp @@ -4,6 +4,8 @@ std::mutex gps_m; double gps_lat; double gps_lon; +#ifdef GPS_LIB_FOUND + int gpsMain() { gpsmm gps_rec("localhost", DEFAULT_GPSD_PORT); @@ -54,4 +56,12 @@ int gpsMain() { } return 0; -} \ No newline at end of file +} + +#else +int gpsMain() { + gps_lat = 0.0; + gps_lon = 0.0; + return 0; +} +#endif \ No newline at end of file diff --git a/Bolt_Dash/gpsprocessing.h b/Bolt_Dash/gpsprocessing.h index 9953da9..7b2556b 100644 --- a/Bolt_Dash/gpsprocessing.h +++ b/Bolt_Dash/gpsprocessing.h @@ -3,7 +3,10 @@ #include #include #include +#if __has_include() #include +#define GPS_LIB_FOUND 1 +#endif #include #include diff --git a/Bolt_Dash/web.cpp b/Bolt_Dash/web.cpp index 44a0fc8..51e6259 100644 --- a/Bolt_Dash/web.cpp +++ b/Bolt_Dash/web.cpp @@ -1,10 +1,21 @@ +#if __has_include() +#define CROW_FOUND 1 #include "web.h" #include "can.h" #include "constants.h" -#include "crow.h" #include "gpsprocessing.h" +#include +#include +#include #include +// Assuming m, gps_m, data, gps_lat, gps_lon are declared elsewhere +extern std::mutex m; +extern std::mutex gps_m; +extern Data data; +extern double gps_lat; +extern double gps_lon; + namespace web { void runApp() { @@ -12,7 +23,7 @@ namespace web { CROW_ROUTE(app, "/") ([]() { - std::chrono::duration now = std::chrono::system_clock::now().time_since_epoch(); + auto now = std::chrono::system_clock::now().time_since_epoch(); crow::json::wvalue response({{"timestamp", std::chrono::duration_cast(now).count()}}); m.lock(); response["pack_state_of_charge"] = data.pack_state_of_charge * PACK_STATE_OF_CHARGE_SCALE; @@ -39,3 +50,11 @@ namespace web { app.port(18080).multithreaded().run_async(); } } + +#else // crow.h not found; do nothing +namespace web { + void runApp() { + // No web server functionality + } +} +#endif From 5d4c04c16696bcd21d722c119aed0620fc44b032 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 26 Mar 2025 15:02:16 -0400 Subject: [PATCH 162/165] Fix to compile on a pi --- Bolt_Dash/CMakeLists.txt | 7 +++---- Bolt_Dash/web.cpp | 7 ------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/Bolt_Dash/CMakeLists.txt b/Bolt_Dash/CMakeLists.txt index 1f99245..7410801 100644 --- a/Bolt_Dash/CMakeLists.txt +++ b/Bolt_Dash/CMakeLists.txt @@ -37,8 +37,6 @@ qt_add_resources(Bolt_DashApp "configuration" target_include_directories(Bolt_DashApp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/includes/headers) -find_package(pigpio COMPONENTS filesystem system QUIET) - target_link_libraries(Bolt_DashApp PRIVATE Qt6::Core Qt6::Gui @@ -46,8 +44,9 @@ target_link_libraries(Bolt_DashApp PRIVATE Qt6::Quick ) -if (TARGET pigpio) - target_link_libraries(Bolt_DashApp PRIVATE pigpio) +find_library(PIGPIO_LIBRARY pigpio) +if (PIGPIO_LIBRARY) + target_link_libraries(Bolt_DashApp PRIVATE ${PIGPIO_LIBRARY}) endif() find_library(GPS_LIBRARY gps) diff --git a/Bolt_Dash/web.cpp b/Bolt_Dash/web.cpp index 51e6259..ba781ca 100644 --- a/Bolt_Dash/web.cpp +++ b/Bolt_Dash/web.cpp @@ -9,13 +9,6 @@ #include #include -// Assuming m, gps_m, data, gps_lat, gps_lon are declared elsewhere -extern std::mutex m; -extern std::mutex gps_m; -extern Data data; -extern double gps_lat; -extern double gps_lon; - namespace web { void runApp() { From 782ebe42b928c011508947cd66c1fa7d4d4f4cc5 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 26 Mar 2025 15:04:59 -0400 Subject: [PATCH 163/165] Don't constantly print out lat and long --- Bolt_Dash/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/backend.cpp b/Bolt_Dash/backend.cpp index b76d463..f830d80 100644 --- a/Bolt_Dash/backend.cpp +++ b/Bolt_Dash/backend.cpp @@ -59,7 +59,7 @@ void Backend::updateVars() { gps_m.lock(); setLat(gps_lat); setLon(gps_lon); - std::cout << "Lat: " << lat() << " Lon: " << lon() << std::endl; + // std::cout << "Lat: " << lat() << " Lon: " << lon() << std::endl; gps_m.unlock(); // Debug Message // std::cout << "MotorTemp: " << motorTemp() << " AuxVoltage: " << auxVoltage() << " AuxPercent: " << auxPercent() << " PackSOC: " << packSOC() << " HighCellTemp: " << highCellTemp() << " LowCellTemp: " << lowCellTemp() << " BmsTemp: " << bmsTemp() << " MotorSpeed: " << motorSpeed() << " BikeSpeed: " << bikeSpeed() << std::endl; From 142597b70a23643bce05efbd19de68d391f5feb4 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Mon, 31 Mar 2025 15:26:46 -0400 Subject: [PATCH 164/165] Add support for accessories via PDU CAN --- Bolt_Dash/can.cpp | 7 +++++++ Bolt_Dash/can.h | 1 + 2 files changed, 8 insertions(+) diff --git a/Bolt_Dash/can.cpp b/Bolt_Dash/can.cpp index a53862a..6d2d74b 100644 --- a/Bolt_Dash/can.cpp +++ b/Bolt_Dash/can.cpp @@ -178,6 +178,13 @@ namespace can { data.bms_warning &= ~bms_errors.lowest_cell_voltage_too_low; } break; + case can_ids.acc_signal: + if (frame.data[0] == 0) { + data.bike_status = 0; + } else if (data.bike_status == 0) { + data.bike_status = frame.data[0]; + } + break; default: unknown_data = new int8_t[frame.can_dlc]; for (int i{}; i < frame.can_dlc; i++) { diff --git a/Bolt_Dash/can.h b/Bolt_Dash/can.h index 3172964..3cf5b76 100644 --- a/Bolt_Dash/can.h +++ b/Bolt_Dash/can.h @@ -123,6 +123,7 @@ constexpr struct { canid_t speed{0x00}; canid_t mc_faults{0x0AB}; canid_t internal_states{0x0AA}; + canid_t acc_signal{0x706}; } can_ids; #else constexpr struct { From fa0a0faabd2c779fea395bcd526ce792126695da Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Fri, 4 Apr 2025 19:25:41 -0400 Subject: [PATCH 165/165] Update doxygen --- doxygen-awesome-css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doxygen-awesome-css b/doxygen-awesome-css index cc1bee0..98dd024 160000 --- a/doxygen-awesome-css +++ b/doxygen-awesome-css @@ -1 +1 @@ -Subproject commit cc1bee08048035a81eff21e45a8d69e1e7962c3f +Subproject commit 98dd024a650e71d8afd1215c27134aa779bdbbd7
  • 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 Date: Tue, 23 Apr 2024 21:02:19 -0400 Subject: [PATCH 075/165] Changed a lot of GUI kajiggering --- Bolt_Dash/content/BatterySlider.qml | 2 ++ Bolt_Dash/content/BikeStatus.qml | 11 +++++------ Bolt_Dash/content/Screen01.ui.qml | 14 +++++++++----- Bolt_Dash/content/Speedometer.qml | 3 ++- Bolt_Dash/content/TempSlider.qml | 2 ++ 5 files changed, 20 insertions(+), 12 deletions(-) diff --git a/Bolt_Dash/content/BatterySlider.qml b/Bolt_Dash/content/BatterySlider.qml index 4b66f6d..721c820 100644 --- a/Bolt_Dash/content/BatterySlider.qml +++ b/Bolt_Dash/content/BatterySlider.qml @@ -18,6 +18,7 @@ Item { Rectangle { id: enclosing + radius: 15 x: 0 y: 0 width: 60 @@ -28,6 +29,7 @@ Item { Rectangle { id: level + radius: 15 x: 0 y: 0 width: 60 diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index 468d862..96bbeef 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -17,8 +17,8 @@ Item { Rectangle { id: rect anchors.centerIn: parent - width: 250 - height: 75 + width: 375 + height: 90 radius: 15 color: { switch(status) { @@ -44,9 +44,9 @@ Item { case BikeStatus.Status.STANDBY: return "STANDBY" case BikeStatus.Status.ACCESSORY: - return "ACCESSORY" + return "ACC" case BikeStatus.Status.CHECKING: - return "CHECKING" + return "WAITING" case BikeStatus.Status.FAULT: return "FAULT" case BikeStatus.Status.READY: @@ -57,8 +57,7 @@ Item { } color: "white" font.bold: true - bottomPadding: 10 - font.pixelSize: 55 + font.pixelSize: 0.8*parent.height } } } \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 9cbd380..a05d00e 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -22,6 +22,10 @@ Rectangle { readonly property int valueLabelY: textLabelY+25 readonly property int labelTextSize: 25 readonly property int valueLabelTextSize: 20 + readonly property int mphLabelTextSize: 125 + readonly property int mphLabelX: 50 + readonly property int mphLabelY: 80 + readonly property int bikeStatusX: 575 Speedometer { id: speedometer @@ -181,12 +185,12 @@ Rectangle { Text { id: speedoLabel - x: 50 - y: 80 + x: mphLabelX + y: mphLabelY width: 274 height: 160 text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) - font.pixelSize: 125 // For showing speed in mph + font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft font.family: "Nasalization" } @@ -199,8 +203,8 @@ Rectangle { BikeStatus { id: bikeStatus - x: 640 + x: bikeStatusX y: speedoLabel.y + 75 - status: BikeStatus.Status.FAULT + status: BikeStatus.Status.STANDBY } } diff --git a/Bolt_Dash/content/Speedometer.qml b/Bolt_Dash/content/Speedometer.qml index a098b3c..601937c 100644 --- a/Bolt_Dash/content/Speedometer.qml +++ b/Bolt_Dash/content/Speedometer.qml @@ -22,12 +22,13 @@ Item { id: root width: parent.width height: parent.height - radius: 10 + radius: 15 border.color: "#616161" border.width: 10 Rectangle { id: rectangle + radius: 15 x: 10 y: 10 width: 680*fullness diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index bca903b..98fe44b 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -18,6 +18,7 @@ Item { Rectangle { id: enclosing + radius: 10 x: 0 y: 0 width: 60 @@ -27,6 +28,7 @@ Item { } Rectangle { + radius: 10 id: level x: 0 y: 0 From f863a845bc29a946ce62837954ee43ac88516ffa Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 00:30:41 -0400 Subject: [PATCH 076/165] =?UTF-8?q?Shi=C3=9Fe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bolt_Dash/content/BatteryReadout.qml | 54 ++++ Bolt_Dash/content/BatterySlider.qml | 1 + Bolt_Dash/content/BikeStatus.qml | 11 +- Bolt_Dash/content/CMakeLists.txt | 9 + Bolt_Dash/content/FullBatterySlider.qml | 37 +++ Bolt_Dash/content/FullSlider.qml | 51 ++++ .../battery-twotone-0-svgrepo-com.svg | 6 + Bolt_Dash/content/Pictures/battery.svg | 3 + Bolt_Dash/content/Pictures/battery_temp.svg | 1 + .../content/Pictures/controller_temp.svg | 1 + .../Pictures/lightning-bolt-filled-shape.svg | 13 + Bolt_Dash/content/Pictures/motor_temp.svg | 1 + Bolt_Dash/content/Screen01.ui.qml | 276 +++++------------- Bolt_Dash/content/TempSlider.qml | 11 +- Bolt_Dash/content/TemperatureIsland.qml | 65 +++++ Bolt_Dash/imports/Bolt_Dash/Constants.qml | 3 +- Bolt_Dash/qtquickcontrols2.conf | 2 +- 17 files changed, 336 insertions(+), 209 deletions(-) create mode 100644 Bolt_Dash/content/BatteryReadout.qml create mode 100644 Bolt_Dash/content/FullBatterySlider.qml create mode 100644 Bolt_Dash/content/FullSlider.qml create mode 100644 Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg create mode 100644 Bolt_Dash/content/Pictures/battery.svg create mode 100644 Bolt_Dash/content/Pictures/battery_temp.svg create mode 100644 Bolt_Dash/content/Pictures/controller_temp.svg create mode 100644 Bolt_Dash/content/Pictures/lightning-bolt-filled-shape.svg create mode 100644 Bolt_Dash/content/Pictures/motor_temp.svg create mode 100644 Bolt_Dash/content/TemperatureIsland.qml diff --git a/Bolt_Dash/content/BatteryReadout.qml b/Bolt_Dash/content/BatteryReadout.qml new file mode 100644 index 0000000..6584b26 --- /dev/null +++ b/Bolt_Dash/content/BatteryReadout.qml @@ -0,0 +1,54 @@ +import QtQuick +import Bolt_Dash + +Item { + readonly property int batteryBorder: 5 + readonly property string red: "#e80c0c" + readonly property string green: "#09bd0f" + property int soc + + Rectangle { + radius: 15 + width: 175 + height: 125 + + Image { + x: parent.width/2 - width/2 + y: 15 + source: "Pictures/battery.svg" + sourceSize.width: 150 + sourceSize.height: 75 + + Rectangle { + x: batteryBorder + y: batteryBorder + color: "transparent" + width: 150 - batteryBorder * 2 - 16 + height: 75 - batteryBorder * 2 + + Rectangle { + radius: 8 + width: parent.width + height: parent.height + color: "white" + } + + Rectangle { + radius: 8 + width: soc/100 * parent.width + height: parent.height + color: soc < 20 ? red : green + } + } + } + + Text { + x: parent.width/2 - width/2 + y: parent.height - height/2 - 20 + horizontalAlignment: Text.AignHCenter + text: qsTr("%1\%").arg(soc) + font.pixelSize: 25 + } + } + +} \ No newline at end of file diff --git a/Bolt_Dash/content/BatterySlider.qml b/Bolt_Dash/content/BatterySlider.qml index 721c820..458af7e 100644 --- a/Bolt_Dash/content/BatterySlider.qml +++ b/Bolt_Dash/content/BatterySlider.qml @@ -1,5 +1,6 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 +import Bolt_Dash Item { width: 60 diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index 96bbeef..a4da88d 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -3,6 +3,8 @@ import QtQuick.Controls import QtQuick.Shapes Item { + readonly property color staticBG: "#5F5F5F" + readonly property string green: "#09bd0f" property int status: BikeStatus.Status.STANDBY enum Status { @@ -23,17 +25,14 @@ Item { color: { switch(status) { case BikeStatus.Status.STANDBY: - return "#212121" case BikeStatus.Status.ACCESSORY: - return "#212121" case BikeStatus.Status.CHECKING: - return "#212121" + case BikeStatus.Status.READY: + return staticBG case BikeStatus.Status.FAULT: return "red" - case BikeStatus.Status.READY: - return "#212121" case BikeStatus.Status.DRIVE: - return "green" + return green } } diff --git a/Bolt_Dash/content/CMakeLists.txt b/Bolt_Dash/content/CMakeLists.txt index 99d79aa..be4b5b6 100644 --- a/Bolt_Dash/content/CMakeLists.txt +++ b/Bolt_Dash/content/CMakeLists.txt @@ -14,10 +14,19 @@ qt6_add_qml_module(content Debug1.qml BoltLeanAngle.qml BikeStatus.qml + BatteryReadout.qml + FullBatterySlider.qml + TemperatureIsland.qml + FullSlider.qml RESOURCES fonts/fonts.txt fonts/nasalization-rg.otf Pictures/leanAngleBack.png Pictures/motorcycleIcon.png + Pictures/battery-twotone-0-svgrepo-com.svg + Pictures/battery.svg + Pictures/battery_temp.svg + Pictures/controller_temp.svg + Pictures/motor_temp.svg QML_FILES DebugItem1.ui.qml ) diff --git a/Bolt_Dash/content/FullBatterySlider.qml b/Bolt_Dash/content/FullBatterySlider.qml new file mode 100644 index 0000000..ed48d01 --- /dev/null +++ b/Bolt_Dash/content/FullBatterySlider.qml @@ -0,0 +1,37 @@ +import QtQuick +import Bolt_Dash + +Item { + property int soc + readonly property int textLabelY: 260 + readonly property int valueLabelY: textLabelY+25 + + + BatterySlider { + id: packSlider + x: 0 + y: 0 + scale: 0.5 + fullness: soc // Percent to decimal + } + + // Max battery percentages + Text { + x: packSlider.x + packSlider.width/2 - width/2 + y: valueLabelY + horizontalAlignment: Text.AignHCenter + text: qsTr("%1\%").arg(soc) + color: Constants.textColor + font.pixelSize: valueLabelTextSize + } + + Text { + id: packLabel + horizontalAlignment: Text.AlignHCenter + x: packSlider.x + packSlider.width/2 - width/2 + y: textLabelY + text: qsTr("PACK") + color: Constants.textColor + font.pixelSize: labelTextSize + } +} \ No newline at end of file diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml new file mode 100644 index 0000000..d3d243a --- /dev/null +++ b/Bolt_Dash/content/FullSlider.qml @@ -0,0 +1,51 @@ +import QtQuick + +Item { + property string label: "" + property string imageUrl: "" + property double fullness: 0.5 + property int value: 0 + property int imageWidth: 50 + property int imageHeight: 50 + + height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height + padding*2 + width: packTempSlider.width*packTempSlider.scale + padding*2 + + + TempSlider { + id: packTempSlider + x: 0 + y: -(height*scale)/2 + padding + scale: 0.5 + fullness: parent.fullness // Abosulte max of 100C and divide by 2 for avg + } + + // Text { + // id: packTempLabel + // x: packTempSlider.x - width/2 + packTempSlider.width/2 + // y: packTempSlider.height*packTempSlider.scale + height/4 + // text: label + // font.pixelSize: labelTextSize + // font.bold: true + // horizontalAlignment: Text.AlignHCenter + // } + + // Pack max temp label + Text { + id: valueLabel + x: packTempSlider.x - width/2 + packTempSlider.width/2 + y: packTempSlider.height*packTempSlider.scale + height/4 + text: qsTr("%1°C").arg(value) + font.bold: true + font.pixelSize: valueLabelTextSize + } + + Image { + id: packTempLabel + x: packTempSlider.x - width/2 + packTempSlider.width/2 + y: (250 - (valueLabel.y + valueLabel.height)) / 2 + (valueLabel.y + valueLabel.height) - height/2 + source: imageUrl + width: imageWidth + height: imageHeight + } +} \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg b/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg new file mode 100644 index 0000000..71a49e1 --- /dev/null +++ b/Bolt_Dash/content/Pictures/battery-twotone-0-svgrepo-com.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/Bolt_Dash/content/Pictures/battery.svg b/Bolt_Dash/content/Pictures/battery.svg new file mode 100644 index 0000000..0352a7d --- /dev/null +++ b/Bolt_Dash/content/Pictures/battery.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/battery_temp.svg b/Bolt_Dash/content/Pictures/battery_temp.svg new file mode 100644 index 0000000..818873f --- /dev/null +++ b/Bolt_Dash/content/Pictures/battery_temp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/controller_temp.svg b/Bolt_Dash/content/Pictures/controller_temp.svg new file mode 100644 index 0000000..cacca10 --- /dev/null +++ b/Bolt_Dash/content/Pictures/controller_temp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/lightning-bolt-filled-shape.svg b/Bolt_Dash/content/Pictures/lightning-bolt-filled-shape.svg new file mode 100644 index 0000000..f8e1ce3 --- /dev/null +++ b/Bolt_Dash/content/Pictures/lightning-bolt-filled-shape.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/motor_temp.svg b/Bolt_Dash/content/Pictures/motor_temp.svg new file mode 100644 index 0000000..66fdec7 --- /dev/null +++ b/Bolt_Dash/content/Pictures/motor_temp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index a05d00e..41f135d 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -11,200 +11,84 @@ import Bolt_Dash import Backend Rectangle { - id: rectangle - width: Constants.width - height: Constants.height - - color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor - - readonly property int sliderY: 160 - readonly property int textLabelY: sliderY + 260 - readonly property int valueLabelY: textLabelY+25 - readonly property int labelTextSize: 25 - readonly property int valueLabelTextSize: 20 - readonly property int mphLabelTextSize: 125 - readonly property int mphLabelX: 50 - readonly property int mphLabelY: 80 - readonly property int bikeStatusX: 575 - - Speedometer { - id: speedometer - fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM - x: 50 - y: 24 - } - - Backend { - id: backend - motorTemp: 0 - auxVoltage: 0 - auxPercent: 0 - packSOC: 0 - highCellTemp: 0 - lowCellTemp: 0 - bmsTemp: 0 - motorSpeed: 0 - bikeSpeed: 0 - } - - BatterySlider { - id: packSlider - x: 28 - y: sliderY - scale: 0.5 - fullness: backend.packSOC // Percent to decimal - } - - BatterySlider { - id: auxSlider - x: 98 - y: sliderY - scale: 0.5 - fullness: backend.auxPercent // Percent to decimal - } - - // Max battery percentages - Text { - x: packSlider.x + (packSlider.width/4) - y: valueLabelY - text: qsTr("%1\%").arg(backend.packSOC) - horizontalAlignment: Text.AlignHCenter - font.pixelSize: valueLabelTextSize - } - Text { - x: auxSlider.x + (auxSlider.width/4) - y: valueLabelY - text: qsTr("%1\%").arg(backend.auxPercent) - horizontalAlignment: Text.AlignHCenter - font.pixelSize: valueLabelTextSize - } - - Text { - id: packLabel - x: 36 - y: textLabelY - width: 48 - height: 29 - text: qsTr("PACK") - font.pixelSize: labelTextSize - horizontalAlignment: Text.AlignHCenter - } - - Text { - id: auxLabel - x: 104 - y: textLabelY - width: 48 - height: 29 - text: qsTr("AUX") - font.pixelSize: labelTextSize - horizontalAlignment: Text.AlignHCenter - } - - - TempSlider { - id: packTempSlider - x: 715 - y: sliderY - scale: 0.5 - fullness: backend.highCellTemp / 100 // Abosulte max of 100C and divide by 2 for avg - } - - Text { - id: packTempLabel - x: 723 - y: textLabelY - width: 48 - height: 29 - text: qsTr("PACK") - font.pixelSize: labelTextSize - horizontalAlignment: Text.AlignHCenter - } - - // Pack max temp label - Text { - x: packTempSlider.x + (packTempSlider.width/4) - y: valueLabelY - text: qsTr("%1°C").arg(backend.highCellTemp) - font.pixelSize: valueLabelTextSize - } - - TempSlider { - id: mCTempSlider - x: 644 - y: sliderY - scale: 0.5 - fullness: backend.mcTemp / 100 // Abosulte max of 100C - } - - Text { - id: mcTempLabel - x: 652 - y: textLabelY - width: 48 - height: 29 - text: qsTr("MC") - font.pixelSize: labelTextSize - horizontalAlignment: Text.AlignHCenter - } - - // MC max temp label - Text { - x: mCTempSlider.x + (mCTempSlider.width/4) - y: valueLabelY - text: qsTr("%1°C").arg(backend.mcTemp) - font.pixelSize: valueLabelTextSize - } - - TempSlider { - id: motorTempSlider - x: 568 - y: sliderY - scale: 0.5 - fullness: backend.motorTemp / 115 // Abosulte max of 115C - } - - Text { - id: motorTempLabel - x: 572 - y: textLabelY - width: 48 - height: 29 - text: qsTr("MOTOR") - font.pixelSize: labelTextSize - horizontalAlignment: Text.AlignHCenter - } - - // Motor max temp label - Text { - x: motorTempSlider.x + (motorTempSlider.width/4) - y: valueLabelY - text: qsTr("%1°C").arg(backend.motorTemp) - font.pixelSize: valueLabelTextSize - } - - Text { - id: speedoLabel - x: mphLabelX - y: mphLabelY - width: 274 - height: 160 - text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) - font.pixelSize: mphLabelTextSize // For showing speed in mph - horizontalAlignment: Text.AlignHLeft - font.family: "Nasalization" - } - - BoltLeanAngle { - id: leanAngle - x: Constants.width / 2 - y: Constants.height / 2 - } - - BikeStatus { - id: bikeStatus - x: bikeStatusX - y: speedoLabel.y + 75 - status: BikeStatus.Status.STANDBY - } + id: rectangle + width: Constants.width + height: Constants.height + + color: backend.bmsFault ? Constants.errColor : Constants.backgroundColor + + readonly property int sliderY: 160 + readonly property int textLabelY: sliderY + 260 + readonly property int valueLabelY: textLabelY+25 + readonly property int labelTextSize: 25 + readonly property int valueLabelTextSize: 20 + readonly property int mphLabelTextSize: 125 + readonly property int mphLabelX: 50 + readonly property int mphLabelY: 80 + readonly property int bikeStatusX: 575 + + Speedometer { + id: speedometer + fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM + x: 50 + y: 24 + } + + Backend { + id: backend + motorTemp: 0 + auxVoltage: 0 + auxPercent: 0 + packSOC: 0 + highCellTemp: 0 + lowCellTemp: 0 + bmsTemp: 0 + motorSpeed: 0 + bikeSpeed: 0 + } + + BatteryReadout { + id: batteryReadout + x: 50 + y: 300 + soc: 50 + // soc: backend.packSOC + } + + TemperatureIsland { + id: temps + x: 550 + y: 225 + // packTemp: backend.highCellTemp + // mcTemp: backend.mcTemp + // motorTemp: backend.motorTemp + packTemp: 100 + mcTemp: 85 + motorTemp: 0.9*115 + } + Text { + id: speedoLabel + x: mphLabelX + y: mphLabelY + width: 274 + height: 160 + text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) + color: Constants.textColor + font.pixelSize: mphLabelTextSize // For showing speed in mph + horizontalAlignment: Text.AlignHLeft + font.family: "Nasalization" + } + + BoltLeanAngle { + id: leanAngle + x: Constants.width / 2 + y: Constants.height / 2 + } + + BikeStatus { + id: bikeStatus + x: bikeStatusX + y: speedoLabel.y + 75 + status: BikeStatus.Status.DRIVE + } } diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index 98fe44b..dfd37fc 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -24,17 +24,18 @@ Item { width: 60 height: 350 border.width: 3 - color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; + color: "white"; } Rectangle { - radius: 10 id: level + radius: 10 x: 0 - y: 0 + y: 350-(350*fullness) > 0 ? 350-(350*fullness) : 0 width: 60 - height: 350-(350*fullness) - color: "white" + height: (350*fullness) + // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; + color: fullness > 0.9 ? red : green; border.width: 3 } } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml new file mode 100644 index 0000000..ee15950 --- /dev/null +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -0,0 +1,65 @@ +import QtQuick + +Item { + width: 240 + height: 250 + + property int packTemp: 0 + property int mcTemp: 0 + property int motorTemp: 0 + readonly property int padding: 10 + readonly property int horizSpacing: 40 + readonly property int sliderWidth: 30 + + + Rectangle { + x: 0 + y: 0 + radius: 15 + width: parent.width + height: parent.height + color: "white" + + FullSlider { + id: packSlider + x: 20 + label: "PACK" + fullness: packTemp / 70 + value: packTemp + imageUrl: "Pictures/battery_temp.svg" + imageWidth: 25 + imageHeight: 40 + } + + FullSlider { + id: mcSlider + x: packSlider.x + horizSpacing + sliderWidth + label: "MC" + fullness: mcTemp / 100.0 + value: mcTemp + imageUrl: "Pictures/controller_temp.svg" + imageWidth: 45 + imageHeight: 30 + } + + FullSlider { + id: motorSlider + x: mcSlider.x + horizSpacing + sliderWidth + label: "MOTOR" + fullness: motorTemp / 115.0 + value: motorTemp + imageUrl: "Pictures/motor_temp.svg" + imageWidth: 40 + imageHeight: 50 + } + + // Redline + Rectangle { + x: 15 + y: 0.1*(packSlider.height*packSlider.scale) + height/2 + width: parent.width - 30 + height: 5 + color: "red" + } + } +} \ No newline at end of file diff --git a/Bolt_Dash/imports/Bolt_Dash/Constants.qml b/Bolt_Dash/imports/Bolt_Dash/Constants.qml index 779cc70..ac3e78a 100644 --- a/Bolt_Dash/imports/Bolt_Dash/Constants.qml +++ b/Bolt_Dash/imports/Bolt_Dash/Constants.qml @@ -18,7 +18,8 @@ QtObject { pixelSize: Qt.application.font.pixelSize * 1.6 }) - readonly property color backgroundColor: "#c2c2c2" + readonly property color backgroundColor: "#000000" + readonly property color textColor: "#ffffff" readonly property color errColor: "#ff0000" diff --git a/Bolt_Dash/qtquickcontrols2.conf b/Bolt_Dash/qtquickcontrols2.conf index 6f0d6fe..99e7698 100644 --- a/Bolt_Dash/qtquickcontrols2.conf +++ b/Bolt_Dash/qtquickcontrols2.conf @@ -6,7 +6,7 @@ Style=Material [Material] -Theme=Light +Theme=Dark ;Accent=BlueGrey ;Primary=BlueGray ;Foreground=Brown From 429d3c800d58d7cfed3c8ffc41e23256c6257fc5 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 17:00:17 -0400 Subject: [PATCH 077/165] Fix over/underfilled bars --- Bolt_Dash/content/FullSlider.qml | 2 +- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/content/TemperatureIsland.qml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml index d3d243a..88e8ff3 100644 --- a/Bolt_Dash/content/FullSlider.qml +++ b/Bolt_Dash/content/FullSlider.qml @@ -17,7 +17,7 @@ Item { x: 0 y: -(height*scale)/2 + padding scale: 0.5 - fullness: parent.fullness // Abosulte max of 100C and divide by 2 for avg + fullness: parent.fullness > 1 ? 1 : parent.fullness < 0 ? 0 : parent.fullness // Abosulte max of 100C and divide by 2 for avg } // Text { diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 41f135d..44e528c 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -62,7 +62,7 @@ Rectangle { // packTemp: backend.highCellTemp // mcTemp: backend.mcTemp // motorTemp: backend.motorTemp - packTemp: 100 + packTemp: -10 mcTemp: 85 motorTemp: 0.9*115 } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index ee15950..01ced9c 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -35,7 +35,7 @@ Item { id: mcSlider x: packSlider.x + horizSpacing + sliderWidth label: "MC" - fullness: mcTemp / 100.0 + fullness: mcTemp / 100 value: mcTemp imageUrl: "Pictures/controller_temp.svg" imageWidth: 45 @@ -46,7 +46,7 @@ Item { id: motorSlider x: mcSlider.x + horizSpacing + sliderWidth label: "MOTOR" - fullness: motorTemp / 115.0 + fullness: motorTemp / 115 value: motorTemp imageUrl: "Pictures/motor_temp.svg" imageWidth: 40 From d3b94bcc5375ddd8a071ad60affb808d25dda0f2 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 17:19:35 -0400 Subject: [PATCH 078/165] Lined everything on the right side up --- Bolt_Dash/content/BikeStatus.qml | 7 +++++-- Bolt_Dash/content/Screen01.ui.qml | 15 +++++++-------- Bolt_Dash/content/TemperatureIsland.qml | 6 +++--- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index a4da88d..2f0e7a8 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -7,6 +7,9 @@ Item { readonly property string green: "#09bd0f" property int status: BikeStatus.Status.STANDBY + width: 350 + height: 90 + enum Status { STANDBY, ACCESSORY, @@ -19,8 +22,8 @@ Item { Rectangle { id: rect anchors.centerIn: parent - width: 375 - height: 90 + width: parent.width + height: parent.height radius: 15 color: { switch(status) { diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 44e528c..1ad8e56 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -25,13 +25,14 @@ Rectangle { readonly property int mphLabelTextSize: 125 readonly property int mphLabelX: 50 readonly property int mphLabelY: 80 - readonly property int bikeStatusX: 575 + readonly property int bikeStatusX: 400 + readonly property int verticalSpacing: 10 Speedometer { id: speedometer fullness: backend.motorSpeed / 5500 // Expected max speed of 5500 RPM x: 50 - y: 24 + y: 25 } Backend { @@ -58,7 +59,7 @@ Rectangle { TemperatureIsland { id: temps x: 550 - y: 225 + y: bikeStatus.y + bikeStatus.height + verticalSpacing // packTemp: backend.highCellTemp // mcTemp: backend.mcTemp // motorTemp: backend.motorTemp @@ -69,9 +70,7 @@ Rectangle { Text { id: speedoLabel x: mphLabelX - y: mphLabelY - width: 274 - height: 160 + y: speedometer.y + speedometer.height/2 + 7 +verticalSpacing text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph @@ -88,7 +87,7 @@ Rectangle { BikeStatus { id: bikeStatus x: bikeStatusX - y: speedoLabel.y + 75 - status: BikeStatus.Status.DRIVE + y: speedometer.y + speedometer.height + verticalSpacing + status: BikeStatus.Status.CHECKING } } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 01ced9c..4be42f2 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -1,14 +1,14 @@ import QtQuick Item { - width: 240 + width: 200 height: 250 property int packTemp: 0 property int mcTemp: 0 property int motorTemp: 0 readonly property int padding: 10 - readonly property int horizSpacing: 40 + readonly property int horizSpacing: 35 readonly property int sliderWidth: 30 @@ -22,7 +22,7 @@ Item { FullSlider { id: packSlider - x: 20 + x: 5 label: "PACK" fullness: packTemp / 70 value: packTemp From 87d223ae11859cfcc0978354c8f17616ed7d2bf1 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 17:52:40 -0400 Subject: [PATCH 079/165] Change background rectangles to black with white text --- Bolt_Dash/content/BatteryReadout.qml | 4 +++- Bolt_Dash/content/FullSlider.qml | 16 ++++------------ Bolt_Dash/content/Pictures/battery.svg | 2 +- Bolt_Dash/content/Pictures/battery_temp.svg | 12 +++++++++++- Bolt_Dash/content/Pictures/controller_temp.svg | 4 +++- Bolt_Dash/content/Pictures/motor_temp.svg | 15 ++++++++++++++- Bolt_Dash/content/TemperatureIsland.qml | 12 ++++++------ 7 files changed, 42 insertions(+), 23 deletions(-) diff --git a/Bolt_Dash/content/BatteryReadout.qml b/Bolt_Dash/content/BatteryReadout.qml index 6584b26..72fce4f 100644 --- a/Bolt_Dash/content/BatteryReadout.qml +++ b/Bolt_Dash/content/BatteryReadout.qml @@ -11,6 +11,7 @@ Item { radius: 15 width: 175 height: 125 + color: "black" Image { x: parent.width/2 - width/2 @@ -30,7 +31,7 @@ Item { radius: 8 width: parent.width height: parent.height - color: "white" + color: "black" } Rectangle { @@ -46,6 +47,7 @@ Item { x: parent.width/2 - width/2 y: parent.height - height/2 - 20 horizontalAlignment: Text.AignHCenter + color: "white" text: qsTr("%1\%").arg(soc) font.pixelSize: 25 } diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml index 88e8ff3..910213c 100644 --- a/Bolt_Dash/content/FullSlider.qml +++ b/Bolt_Dash/content/FullSlider.qml @@ -7,6 +7,7 @@ Item { property int value: 0 property int imageWidth: 50 property int imageHeight: 50 + property color textColor: "white" height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height + padding*2 width: packTempSlider.width*packTempSlider.scale + padding*2 @@ -20,24 +21,15 @@ Item { fullness: parent.fullness > 1 ? 1 : parent.fullness < 0 ? 0 : parent.fullness // Abosulte max of 100C and divide by 2 for avg } - // Text { - // id: packTempLabel - // x: packTempSlider.x - width/2 + packTempSlider.width/2 - // y: packTempSlider.height*packTempSlider.scale + height/4 - // text: label - // font.pixelSize: labelTextSize - // font.bold: true - // horizontalAlignment: Text.AlignHCenter - // } - - // Pack max temp label + // current temp label Text { id: valueLabel x: packTempSlider.x - width/2 + packTempSlider.width/2 - y: packTempSlider.height*packTempSlider.scale + height/4 + y: packTempSlider.height*packTempSlider.scale + height/2 text: qsTr("%1°C").arg(value) font.bold: true font.pixelSize: valueLabelTextSize + color: textColor } Image { diff --git a/Bolt_Dash/content/Pictures/battery.svg b/Bolt_Dash/content/Pictures/battery.svg index 0352a7d..c498026 100644 --- a/Bolt_Dash/content/Pictures/battery.svg +++ b/Bolt_Dash/content/Pictures/battery.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/battery_temp.svg b/Bolt_Dash/content/Pictures/battery_temp.svg index 818873f..166d60a 100644 --- a/Bolt_Dash/content/Pictures/battery_temp.svg +++ b/Bolt_Dash/content/Pictures/battery_temp.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/controller_temp.svg b/Bolt_Dash/content/Pictures/controller_temp.svg index cacca10..0d56519 100644 --- a/Bolt_Dash/content/Pictures/controller_temp.svg +++ b/Bolt_Dash/content/Pictures/controller_temp.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/motor_temp.svg b/Bolt_Dash/content/Pictures/motor_temp.svg index 66fdec7..c2ba3aa 100644 --- a/Bolt_Dash/content/Pictures/motor_temp.svg +++ b/Bolt_Dash/content/Pictures/motor_temp.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 4be42f2..4f9722c 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -18,7 +18,7 @@ Item { radius: 15 width: parent.width height: parent.height - color: "white" + color: "black" FullSlider { id: packSlider @@ -27,7 +27,7 @@ Item { fullness: packTemp / 70 value: packTemp imageUrl: "Pictures/battery_temp.svg" - imageWidth: 25 + imageWidth: 45 imageHeight: 40 } @@ -38,8 +38,8 @@ Item { fullness: mcTemp / 100 value: mcTemp imageUrl: "Pictures/controller_temp.svg" - imageWidth: 45 - imageHeight: 30 + imageWidth: 35 + imageHeight: 35 } FullSlider { @@ -49,8 +49,8 @@ Item { fullness: motorTemp / 115 value: motorTemp imageUrl: "Pictures/motor_temp.svg" - imageWidth: 40 - imageHeight: 50 + imageWidth: 50 + imageHeight: 60 } // Redline From d2529a3725edfd8ebca7df8ff2a3bf0fe2b7844b Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 24 Apr 2024 18:40:48 -0400 Subject: [PATCH 080/165] leannnnnnnn --- Bolt_Dash/content/BoltLeanAngle.qml | 13 ++++++++++ Bolt_Dash/content/BoltLeanAngle.qml.autosave | 26 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index ba65f3b..ac6ce82 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -2,6 +2,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Studio.Components import QtCharts +import QtQuick.Shapes Item { Image { @@ -13,4 +14,16 @@ Item { source: "Pictures/leanAngleBack.png" fillMode: Image.PreserveAspectFit } + Path{ + startX:100;startY:150 + PathLine:{ + x:100 + y:100 + } + PathSvg{ path: "L 150 50 L 100 150 z" } + } + Path { + startX: 50; startY: 50 + PathSvg { path: "L 150 50 L 100 150 z" } + } } diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave new file mode 100644 index 0000000..ba35122 --- /dev/null +++ b/Bolt_Dash/content/BoltLeanAngle.qml.autosave @@ -0,0 +1,26 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Studio.Components +import QtCharts +import QtQuick.Shapes + +Item { + Image { + id: image + x: -(295/2) + y: 20 + width: 295 + height: 164 + source: "Pictures/leanAngleBack.png" + fillMode: Image.PreserveAspectFit + } + Rectangle{ + width: 5 + height: 150 + x: width/2 -5 + y: 60 + rotation: -45 + transformOrigin:Item.Bottom + + } +} From 5e8625a1a14184b9da6274ced6c144c10d6a92cb Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 24 Apr 2024 18:47:05 -0400 Subject: [PATCH 081/165] leannnnnnnnnnnnnn --- Bolt_Dash/content/BoltLeanAngle.qml | 20 +++++++-------- Bolt_Dash/content/BoltLeanAngle.qml.autosave | 26 -------------------- 2 files changed, 9 insertions(+), 37 deletions(-) delete mode 100644 Bolt_Dash/content/BoltLeanAngle.qml.autosave diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index ac6ce82..3846b5f 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -5,6 +5,7 @@ import QtCharts import QtQuick.Shapes Item { + property int ang: 30 Image { id: image x: -(295/2) @@ -14,16 +15,13 @@ Item { source: "Pictures/leanAngleBack.png" fillMode: Image.PreserveAspectFit } - Path{ - startX:100;startY:150 - PathLine:{ - x:100 - y:100 - } - PathSvg{ path: "L 150 50 L 100 150 z" } - } - Path { - startX: 50; startY: 50 - PathSvg { path: "L 150 50 L 100 150 z" } + + Rectangle{ + width: 5 + height: 150 + x: -width/2 + y: 60 + transformOrigin: Item.Bottom + rotation: 30 } } diff --git a/Bolt_Dash/content/BoltLeanAngle.qml.autosave b/Bolt_Dash/content/BoltLeanAngle.qml.autosave deleted file mode 100644 index ba35122..0000000 --- a/Bolt_Dash/content/BoltLeanAngle.qml.autosave +++ /dev/null @@ -1,26 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Studio.Components -import QtCharts -import QtQuick.Shapes - -Item { - Image { - id: image - x: -(295/2) - y: 20 - width: 295 - height: 164 - source: "Pictures/leanAngleBack.png" - fillMode: Image.PreserveAspectFit - } - Rectangle{ - width: 5 - height: 150 - x: width/2 -5 - y: 60 - rotation: -45 - transformOrigin:Item.Bottom - - } -} From f8e8608a520f11d6426b8e14a5689c850eb47b70 Mon Sep 17 00:00:00 2001 From: juliagardin3r Date: Wed, 24 Apr 2024 18:57:35 -0400 Subject: [PATCH 082/165] the correct dial was added (for once) --- Bolt_Dash/content/BoltLeanAngle.qml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index 3846b5f..bf73b69 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -5,7 +5,9 @@ import QtCharts import QtQuick.Shapes Item { - property int ang: 30 + property int ang: 60 + width: 500 + height: 500 Image { id: image x: -(295/2) @@ -17,11 +19,16 @@ Item { } Rectangle{ + + } + + Rectangle { + id: correctDial width: 5 height: 150 x: -width/2 y: 60 transformOrigin: Item.Bottom - rotation: 30 + rotation: ang } } From 9d92817ae71519e87352b6b317d857f2f14382c1 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 19:22:33 -0400 Subject: [PATCH 083/165] Make things look good --- Bolt_Dash/content/FullSlider.qml | 10 +++---- Bolt_Dash/content/Pictures/battery_temp.svg | 14 +++++----- .../content/Pictures/controller_temp.svg | 2 +- Bolt_Dash/content/Pictures/motor_temp.svg | 20 +++++++------- Bolt_Dash/content/TempSlider.qml | 26 ++++++++++++------- Bolt_Dash/content/TemperatureIsland.qml | 4 +-- 6 files changed, 42 insertions(+), 34 deletions(-) diff --git a/Bolt_Dash/content/FullSlider.qml b/Bolt_Dash/content/FullSlider.qml index 910213c..b3c5a83 100644 --- a/Bolt_Dash/content/FullSlider.qml +++ b/Bolt_Dash/content/FullSlider.qml @@ -3,15 +3,15 @@ import QtQuick Item { property string label: "" property string imageUrl: "" + property color textColor: "black" property double fullness: 0.5 property int value: 0 property int imageWidth: 50 property int imageHeight: 50 - property color textColor: "white" - - height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height + padding*2 - width: packTempSlider.width*packTempSlider.scale + padding*2 + readonly property int padding: 5 + height: packTempSlider.height*packTempSlider.scale + packTempLabel.height + valueLabel.height + width: packTempSlider.width*packTempSlider.scale + padding TempSlider { id: packTempSlider @@ -25,7 +25,7 @@ Item { Text { id: valueLabel x: packTempSlider.x - width/2 + packTempSlider.width/2 - y: packTempSlider.height*packTempSlider.scale + height/2 + y: packTempSlider.height*packTempSlider.scale + height/2 + padding text: qsTr("%1°C").arg(value) font.bold: true font.pixelSize: valueLabelTextSize diff --git a/Bolt_Dash/content/Pictures/battery_temp.svg b/Bolt_Dash/content/Pictures/battery_temp.svg index 166d60a..7c63355 100644 --- a/Bolt_Dash/content/Pictures/battery_temp.svg +++ b/Bolt_Dash/content/Pictures/battery_temp.svg @@ -1,11 +1,11 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/controller_temp.svg b/Bolt_Dash/content/Pictures/controller_temp.svg index 0d56519..3efeac5 100644 --- a/Bolt_Dash/content/Pictures/controller_temp.svg +++ b/Bolt_Dash/content/Pictures/controller_temp.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/Bolt_Dash/content/Pictures/motor_temp.svg b/Bolt_Dash/content/Pictures/motor_temp.svg index c2ba3aa..73510f0 100644 --- a/Bolt_Dash/content/Pictures/motor_temp.svg +++ b/Bolt_Dash/content/Pictures/motor_temp.svg @@ -1,14 +1,14 @@ - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index dfd37fc..518d182 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -3,7 +3,7 @@ import QtQuick.Controls 2.15 Item { width: 60 - height: 350 + height: 300 readonly property string red: "#e80c0c" readonly property string green: "#09bd0f" property double fullness: 0.5; @@ -21,21 +21,29 @@ Item { radius: 10 x: 0 y: 0 - width: 60 - height: 350 - border.width: 3 - color: "white"; + width: parent.width + height: parent.height - bubble.height/2 + color: "black"; } Rectangle { id: level radius: 10 x: 0 - y: 350-(350*fullness) > 0 ? 350-(350*fullness) : 0 - width: 60 - height: (350*fullness) + y: parent.height-(parent.height*fullness) > 0 ? parent.height-(parent.height*fullness) : 0 + width: parent.width + height: (parent.height*fullness) // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; color: fullness > 0.9 ? red : green; - border.width: 3 + } + + Rectangle { + id: bubble + x: -(width-enclosing.width)/2 + y: enclosing.height - width/3 + height: 100 + width: 100 + radius: width/2 + color: green } } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 4f9722c..5a625e0 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -18,7 +18,7 @@ Item { radius: 15 width: parent.width height: parent.height - color: "black" + color: "white" FullSlider { id: packSlider @@ -56,7 +56,7 @@ Item { // Redline Rectangle { x: 15 - y: 0.1*(packSlider.height*packSlider.scale) + height/2 + y: 0.1*(packSlider.height*packSlider.scale) + height/3 width: parent.width - 30 height: 5 color: "red" From 08721b8e9f4e158aa568a8dc6c42d4c9648ccf24 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 19:23:50 -0400 Subject: [PATCH 084/165] Remove stoopid rectangle --- Bolt_Dash/content/BoltLeanAngle.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Bolt_Dash/content/BoltLeanAngle.qml b/Bolt_Dash/content/BoltLeanAngle.qml index bf73b69..f36a37a 100644 --- a/Bolt_Dash/content/BoltLeanAngle.qml +++ b/Bolt_Dash/content/BoltLeanAngle.qml @@ -18,10 +18,6 @@ Item { fillMode: Image.PreserveAspectFit } - Rectangle{ - - } - Rectangle { id: correctDial width: 5 From 7622b1e72bb60bdda3439f47a3f8a7ff24696967 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 19:35:29 -0400 Subject: [PATCH 085/165] Added island to battery --- Bolt_Dash/content/BatteryReadout.qml | 6 +++--- Bolt_Dash/content/Pictures/battery.svg | 5 ++++- Bolt_Dash/content/Screen01.ui.qml | 1 + 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Bolt_Dash/content/BatteryReadout.qml b/Bolt_Dash/content/BatteryReadout.qml index 72fce4f..ea7a288 100644 --- a/Bolt_Dash/content/BatteryReadout.qml +++ b/Bolt_Dash/content/BatteryReadout.qml @@ -11,7 +11,7 @@ Item { radius: 15 width: 175 height: 125 - color: "black" + color: "white" Image { x: parent.width/2 - width/2 @@ -31,7 +31,7 @@ Item { radius: 8 width: parent.width height: parent.height - color: "black" + color: "white" } Rectangle { @@ -47,7 +47,7 @@ Item { x: parent.width/2 - width/2 y: parent.height - height/2 - 20 horizontalAlignment: Text.AignHCenter - color: "white" + color: "black" text: qsTr("%1\%").arg(soc) font.pixelSize: 25 } diff --git a/Bolt_Dash/content/Pictures/battery.svg b/Bolt_Dash/content/Pictures/battery.svg index c498026..c733a70 100644 --- a/Bolt_Dash/content/Pictures/battery.svg +++ b/Bolt_Dash/content/Pictures/battery.svg @@ -1,3 +1,6 @@ - \ No newline at end of file + + + + \ No newline at end of file diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 1ad8e56..75793b4 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -80,6 +80,7 @@ Rectangle { BoltLeanAngle { id: leanAngle + ang: 69 x: Constants.width / 2 y: Constants.height / 2 } From 461df39282326405fb4d01cbac52e0fa39c312f4 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:07:33 -0400 Subject: [PATCH 086/165] Reformat temps --- Bolt_Dash/content/Screen01.ui.qml | 13 +++++++------ Bolt_Dash/content/TempSlider.qml | 9 ++++++--- Bolt_Dash/content/TemperatureIsland.qml | 4 ++-- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 75793b4..f091996 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -22,7 +22,7 @@ Rectangle { readonly property int valueLabelY: textLabelY+25 readonly property int labelTextSize: 25 readonly property int valueLabelTextSize: 20 - readonly property int mphLabelTextSize: 125 + readonly property int mphLabelTextSize: 150 readonly property int mphLabelX: 50 readonly property int mphLabelY: 80 readonly property int bikeStatusX: 400 @@ -45,7 +45,7 @@ Rectangle { lowCellTemp: 0 bmsTemp: 0 motorSpeed: 0 - bikeSpeed: 0 + bikeSpeed: 125 } BatteryReadout { @@ -64,14 +64,15 @@ Rectangle { // mcTemp: backend.mcTemp // motorTemp: backend.motorTemp packTemp: -10 - mcTemp: 85 - motorTemp: 0.9*115 + mcTemp: 30 + motorTemp: 115 } Text { id: speedoLabel x: mphLabelX y: speedometer.y + speedometer.height/2 + 7 +verticalSpacing - text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) + text: "125" + // text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft @@ -80,7 +81,7 @@ Rectangle { BoltLeanAngle { id: leanAngle - ang: 69 + ang: 39 x: Constants.width / 2 y: Constants.height / 2 } diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index 518d182..37165c6 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -23,7 +23,8 @@ Item { y: 0 width: parent.width height: parent.height - bubble.height/2 - color: "black"; + color: "white"; + border.width: 3 } Rectangle { @@ -34,7 +35,8 @@ Item { width: parent.width height: (parent.height*fullness) // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; - color: fullness > 0.9 ? red : green; + color: fullness > 0.9 ? red : "black"; + border.width: 3 } Rectangle { @@ -44,6 +46,7 @@ Item { height: 100 width: 100 radius: width/2 - color: green + color: fullness > 0.9 ? red : "black" + border.width: 3 } } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 5a625e0..8744020 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -56,9 +56,9 @@ Item { // Redline Rectangle { x: 15 - y: 0.1*(packSlider.height*packSlider.scale) + height/3 + y: 19 width: parent.width - 30 - height: 5 + height: 6 color: "red" } } From f2f75dfd833d85bc1bc1c4522ccb3da679565d4e Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:27:45 -0400 Subject: [PATCH 087/165] Reformat temps, but a second time --- Bolt_Dash/content/Screen01.ui.qml | 4 ++-- Bolt_Dash/content/TempSlider.qml | 19 +++++++++++++++---- Bolt_Dash/content/TemperatureIsland.qml | 2 +- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index f091996..b5f2a3a 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -64,8 +64,8 @@ Rectangle { // mcTemp: backend.mcTemp // motorTemp: backend.motorTemp packTemp: -10 - mcTemp: 30 - motorTemp: 115 + mcTemp: 69 + motorTemp: 0.9*115 } Text { id: speedoLabel diff --git a/Bolt_Dash/content/TempSlider.qml b/Bolt_Dash/content/TempSlider.qml index 37165c6..bd5901d 100644 --- a/Bolt_Dash/content/TempSlider.qml +++ b/Bolt_Dash/content/TempSlider.qml @@ -22,7 +22,7 @@ Item { x: 0 y: 0 width: parent.width - height: parent.height - bubble.height/2 + height: parent.height - bubble.height color: "white"; border.width: 3 } @@ -31,9 +31,9 @@ Item { id: level radius: 10 x: 0 - y: parent.height-(parent.height*fullness) > 0 ? parent.height-(parent.height*fullness) : 0 + y: enclosing.height-(enclosing.height*fullness) > 0 ? enclosing.height-(enclosing.height*fullness) : 0 width: parent.width - height: (parent.height*fullness) + height: (enclosing.height*fullness) // color: `#${integerToHex(9 + (fullness * 223))}${integerToHex(189-(fullness*177))}${integerToHex(15+(fullness*-3))}`; color: fullness > 0.9 ? red : "black"; border.width: 3 @@ -42,11 +42,22 @@ Item { Rectangle { id: bubble x: -(width-enclosing.width)/2 - y: enclosing.height - width/3 + y: enclosing.height height: 100 width: 100 radius: width/2 color: fullness > 0.9 ? red : "black" border.width: 3 } + + + Rectangle { + id: bubblebg + x: enclosing.x + y: bubble.y - enclosing.radius/2 + // radius: level.radius + height: 50 + width: enclosing.width + color: bubble.color + } } diff --git a/Bolt_Dash/content/TemperatureIsland.qml b/Bolt_Dash/content/TemperatureIsland.qml index 8744020..0325ed0 100644 --- a/Bolt_Dash/content/TemperatureIsland.qml +++ b/Bolt_Dash/content/TemperatureIsland.qml @@ -56,7 +56,7 @@ Item { // Redline Rectangle { x: 15 - y: 19 + y: 13 width: parent.width - 30 height: 6 color: "red" From 05ffa8a3b67eb644fa59a75b7186587dc32fc6b9 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:28:29 -0400 Subject: [PATCH 088/165] Make bike status text a lil smaller --- Bolt_Dash/content/BikeStatus.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/BikeStatus.qml b/Bolt_Dash/content/BikeStatus.qml index 2f0e7a8..e16a80e 100644 --- a/Bolt_Dash/content/BikeStatus.qml +++ b/Bolt_Dash/content/BikeStatus.qml @@ -59,7 +59,7 @@ Item { } color: "white" font.bold: true - font.pixelSize: 0.8*parent.height + font.pixelSize: 0.75*parent.height } } } \ No newline at end of file From 79bfca738a690157276352ca176dbce545c16265 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:37:45 -0400 Subject: [PATCH 089/165] Use real data instead of dummy data --- Bolt_Dash/content/Screen01.ui.qml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index b5f2a3a..fe6064f 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -52,20 +52,20 @@ Rectangle { id: batteryReadout x: 50 y: 300 - soc: 50 - // soc: backend.packSOC + // soc: 50 + soc: backend.packSOC } TemperatureIsland { id: temps x: 550 y: bikeStatus.y + bikeStatus.height + verticalSpacing - // packTemp: backend.highCellTemp - // mcTemp: backend.mcTemp - // motorTemp: backend.motorTemp - packTemp: -10 - mcTemp: 69 - motorTemp: 0.9*115 + packTemp: backend.highCellTemp + mcTemp: backend.mcTemp + motorTemp: backend.motorTemp + // packTemp: -10 + // mcTemp: 69 + // motorTemp: 0.9*115 } Text { id: speedoLabel From ad26559638cd9c38057b53004b1dfb17e4b026be Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:46:52 -0400 Subject: [PATCH 090/165] Scale up the battery percentage --- Bolt_Dash/content/Screen01.ui.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index fe6064f..2374bb4 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -53,7 +53,7 @@ Rectangle { x: 50 y: 300 // soc: 50 - soc: backend.packSOC + soc: backend.packSOC * 100 } TemperatureIsland { From d3764a8a0c371bc882cebffef192d6f7878db19d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 20:57:11 -0400 Subject: [PATCH 091/165] Use real data for speed --- Bolt_Dash/content/Screen01.ui.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 2374bb4..5b983ed 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -71,8 +71,7 @@ Rectangle { id: speedoLabel x: mphLabelX y: speedometer.y + speedometer.height/2 + 7 +verticalSpacing - text: "125" - // text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) + text: qsTr("%1").arg(Math.round(backend.bikeSpeed)) color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft From ba4523f35c29ee3a7d2c28d3ae88005d820da02f Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Wed, 24 Apr 2024 21:33:23 -0400 Subject: [PATCH 092/165] Fixed labels for debug screen --- Bolt_Dash/content/App.qml | 2 +- Bolt_Dash/content/DebugItem1.ui.qml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index 112fa4f..b1d2602 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -9,7 +9,7 @@ import IO Window { width: mainScreen.width height: mainScreen.height - property bool debugMode: false + property bool debugMode: true visible: true diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 521fe7b..707f3f5 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -27,31 +27,31 @@ Item { height: parent.height // Labels and dynamic text for each data item, converting double to string for display - Label { text: "Motor Temperature:" } + Text { text: "Motor Temperature:" } Text { text: qsTr("%1°C").arg(backend.motorTemp) } - Label { text: "Aux Voltage:" } + Text { text: "Aux Voltage:" } Text { text: qsTr("%1V").arg(auxVoltage) } - Label { text: "Aux Percent:" } + Text { text: "Aux Percent:" } Text { text: qsTr("%1\%").arg(auxPercent*100) } - Label { text: "Pack State of Charge (SOC):" } + Text { text: "Pack State of Charge (SOC):" } Text { text: qsTr("%1\%").arg(packSOC*100) } - Label { text: "High Cell Temperature:" } + Text { text: "High Cell Temperature:" } Text { text: qsTr("%1°C").arg(highCellTemp) } - Label { text: "Low Cell Temperature:" } + Text { text: "Low Cell Temperature:" } Text { text: qsTr("%1°C").arg(lowCellTemp) } - Label { text: "BMS Temperature:" } + Text { text: "BMS Temperature:" } Text { text: qsTr("%1°C").arg(bmsTemp) } - Label { text: "Motor Speed:" } + Text { text: "Motor Speed:" } Text { text: qsTr("%1 RPM").arg(motorSpeed) } - Label { text: "Bike Speed:" } + Text { text: "Bike Speed:" } Text { text: qsTr("%1 mph").arg(bikeSpeed) } } } From 507da839db35330dce086b58cc31d2b5efa8e55d Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 13:25:54 -0400 Subject: [PATCH 093/165] Added pack voltage to display --- Bolt_Dash/content/DebugItem1.ui.qml | 4 ++++ Bolt_Dash/imports/Backend/backend.cpp | 20 ++++++++++++++++---- Bolt_Dash/imports/Backend/backend.h | 5 +++++ Bolt_Dash/imports/Backend/can.cpp | 3 ++- Bolt_Dash/imports/Backend/can.h | 3 ++- 5 files changed, 29 insertions(+), 6 deletions(-) diff --git a/Bolt_Dash/content/DebugItem1.ui.qml b/Bolt_Dash/content/DebugItem1.ui.qml index 707f3f5..349be1c 100644 --- a/Bolt_Dash/content/DebugItem1.ui.qml +++ b/Bolt_Dash/content/DebugItem1.ui.qml @@ -17,6 +17,7 @@ Item { property double bmsTemp: 0.0 property double motorSpeed: 0.0 property double bikeSpeed: 0.0 + property double packVoltage: 0.0 // Using grid layout for organized display GridLayout { @@ -39,6 +40,9 @@ Item { Text { text: "Pack State of Charge (SOC):" } Text { text: qsTr("%1\%").arg(packSOC*100) } + Text { text: "PackVoltage:" } + Text { text: qsTr("%1V").arg(packVoltage) } + Text { text: "High Cell Temperature:" } Text { text: qsTr("%1°C").arg(highCellTemp) } diff --git a/Bolt_Dash/imports/Backend/backend.cpp b/Bolt_Dash/imports/Backend/backend.cpp index 89bbdcd..7d0662a 100644 --- a/Bolt_Dash/imports/Backend/backend.cpp +++ b/Bolt_Dash/imports/Backend/backend.cpp @@ -14,10 +14,11 @@ void Backend::updateVars() { while (true) { m.lock(); // The only scaling here is to put the value into the right unit - setMotorTemp(data.motor_temperature / 10.0); // celsius - setAuxVoltage(data.aux_voltage / 10.0); // volts - setAuxPercent(data.aux_percent / 100.0); // percent - setPackSOC(data.pack_state_of_charge / 200.0); // percent + setMotorTemp(data.motor_temperature / 10.0); // celsius + setAuxVoltage(data.aux_voltage / 10.0); // volts + setAuxPercent(data.aux_percent / 100.0); // percent + setPackSOC(data.pack_state_of_charge / 200.0); // percent + setPackVoltage(data.pack_voltage); setHighCellTemp(data.high_cell_temp); // celsius setLowCellTemp(data.low_cell_temp); // celsius setBmsTemp(data.bms_temperature); // celsius @@ -50,6 +51,10 @@ double Backend::packSOC() const { return m_packSOC; } +double Backend::packVoltage() const { + return m_packVoltage; +} + double Backend::highCellTemp() const { return m_highCellTemp; } @@ -109,6 +114,13 @@ void Backend::setPackSOC(const double soc) { } } +void Backend::setPackVoltage(const double voltage) { + if (m_packVoltage != voltage) { + m_packVoltage = voltage; + emit packVoltageChanged(); + } +} + void Backend::setHighCellTemp(const double temp) { if (m_highCellTemp != temp) { m_highCellTemp = temp; diff --git a/Bolt_Dash/imports/Backend/backend.h b/Bolt_Dash/imports/Backend/backend.h index d5e96ed..5722642 100644 --- a/Bolt_Dash/imports/Backend/backend.h +++ b/Bolt_Dash/imports/Backend/backend.h @@ -15,6 +15,7 @@ class Backend : public QObject { Q_PROPERTY(double auxVoltage READ auxVoltage WRITE setAuxVoltage NOTIFY auxVoltageChanged); Q_PROPERTY(double auxPercent READ auxPercent WRITE setAuxPercent NOTIFY auxPercentChanged); Q_PROPERTY(double packSOC READ packSOC WRITE setPackSOC NOTIFY packSOCChanged); + Q_PROPERTY(double packVoltage READ packVoltage WRITE setPackVoltage NOTIFY packVoltageChanged); Q_PROPERTY(double highCellTemp READ highCellTemp WRITE setHighCellTemp NOTIFY highCellTempChanged); Q_PROPERTY(double lowCellTemp READ lowCellTemp WRITE setLowCellTemp NOTIFY lowCellTempChanged); Q_PROPERTY(double bmsTemp READ bmsTemp WRITE setBmsTemp NOTIFY bmsTempChanged); @@ -29,6 +30,7 @@ class Backend : public QObject { double auxVoltage() const; double auxPercent() const; double packSOC() const; + double packVoltage() const; double highCellTemp() const; double lowCellTemp() const; double bmsTemp() const; @@ -41,6 +43,7 @@ class Backend : public QObject { void setAuxVoltage(const double cap); void setAuxPercent(const double cap); void setPackSOC(const double soc); + void setPackVoltage(const double voltage); void setHighCellTemp(const double temp); void setLowCellTemp(const double temp); void setBmsTemp(const double temp); @@ -54,6 +57,7 @@ class Backend : public QObject { void auxVoltageChanged(); void auxPercentChanged(); void packSOCChanged(); + void packVoltageChanged(); void highCellTempChanged(); void lowCellTempChanged(); void bmsTempChanged(); @@ -68,6 +72,7 @@ class Backend : public QObject { double m_auxVoltage; double m_auxPercent; double m_packSOC; + double m_packVoltage; double m_highCellTemp; double m_lowCellTemp; double m_bmsTemp; diff --git a/Bolt_Dash/imports/Backend/can.cpp b/Bolt_Dash/imports/Backend/can.cpp index 86bf4d8..80b14bd 100644 --- a/Bolt_Dash/imports/Backend/can.cpp +++ b/Bolt_Dash/imports/Backend/can.cpp @@ -54,9 +54,10 @@ namespace can { data.aux_voltage = frame.data[0] + (frame.data[1] << 8); data.aux_percent = data.aux_voltage / 2.5; break; - case can_ids.info_1: + case can_ids.info: data.pack_state_of_charge = frame.data[4]; data.bms_error = frame.data[5] & BMS_FAULT_MASK; + data.pack_voltage = frame.data[2] + (frame.data[3] << 8); break; case can_ids.main_pack_temp: data.high_cell_temp = frame.data[0] + (frame.data[1] << 8); diff --git a/Bolt_Dash/imports/Backend/can.h b/Bolt_Dash/imports/Backend/can.h index d03aac1..5403465 100644 --- a/Bolt_Dash/imports/Backend/can.h +++ b/Bolt_Dash/imports/Backend/can.h @@ -23,6 +23,7 @@ struct our_candata { uint8_t aux_voltage{}; uint8_t aux_percent{}; uint8_t pack_state_of_charge{}; + uint8_t pack_voltage{}; uint16_t high_cell_temp{}; uint16_t low_cell_temp{}; int16_t motor_temperature{}; @@ -36,7 +37,7 @@ struct our_candata { // ID's for each CAN thing constexpr struct { canid_t aux_battery{0x700}; - canid_t info_1{0x6B0}; + canid_t info{0x6B0}; canid_t main_pack_temp{0x6B4}; canid_t motor_temp{0xA2}; canid_t bms_temp{0x6B1}; From 41528ef0da5c1962209f94810875f4bd1a0c4564 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 14:22:16 -0400 Subject: [PATCH 094/165] Changed font --- Bolt_Dash/content/App.qml | 2 +- Bolt_Dash/content/Screen01.ui.qml | 2 +- Bolt_Dash/src/main.cpp | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Bolt_Dash/content/App.qml b/Bolt_Dash/content/App.qml index b1d2602..112fa4f 100644 --- a/Bolt_Dash/content/App.qml +++ b/Bolt_Dash/content/App.qml @@ -9,7 +9,7 @@ import IO Window { width: mainScreen.width height: mainScreen.height - property bool debugMode: true + property bool debugMode: false visible: true diff --git a/Bolt_Dash/content/Screen01.ui.qml b/Bolt_Dash/content/Screen01.ui.qml index 5b983ed..3054f0f 100644 --- a/Bolt_Dash/content/Screen01.ui.qml +++ b/Bolt_Dash/content/Screen01.ui.qml @@ -75,7 +75,7 @@ Rectangle { color: Constants.textColor font.pixelSize: mphLabelTextSize // For showing speed in mph horizontalAlignment: Text.AlignHLeft - font.family: "Nasalization" +// font.family: "Nasalization" } BoltLeanAngle { diff --git a/Bolt_Dash/src/main.cpp b/Bolt_Dash/src/main.cpp index f4187a3..3736091 100644 --- a/Bolt_Dash/src/main.cpp +++ b/Bolt_Dash/src/main.cpp @@ -7,12 +7,15 @@ #include "app_environment.h" #include "import_qml_components_plugins.h" #include "import_qml_plugins.h" +#include "qfont.h" int main(int argc, char *argv[]) { set_qt_environment(); QGuiApplication app(argc, argv); - + QFont font; + font.setFamily("MesloLGSDZ Nerd Font Mono"); + app.setFont(font); QQmlApplicationEngine engine; const QUrl url(u"qrc:Main/main.qml"_qs); QObject::connect( From 02f2adfc87fd3824e20637df103ba2c492cfe554 Mon Sep 17 00:00:00 2001 From: Mason DiGiorgio Date: Thu, 25 Apr 2024 14:27:43 -0400 Subject: [PATCH 095/165] Added new font to dash --- .../fonts/MesloLGSDZNerdFontMono-Regular.ttf | Bin 0 -> 2308356 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100755 Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf diff --git a/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf b/Bolt_Dash/content/fonts/MesloLGSDZNerdFontMono-Regular.ttf new file mode 100755 index 0000000000000000000000000000000000000000..a26a052bd8056f90ad900fca7018b0479bd42dab GIT binary patch literal 2308356 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 R(w7qQGV0P<^fU@Nh=Vb9x;dwU^plGr+= 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